Changing SocialEngine "edit my profile" page layout - socialengine

I have been all over many files in the core but can't seen to find or know how to change the "edit my profile", "browse member", "forgot password" layouts to use a default layout or set layout. they all seem to be loading directly in to the content widget..
Any help please.. Thanks in advance.

Forgot Password password page layout is included to the layout editor's pages list beginning from SE 4.3.0 version. Regarding "browse members" page - it can only be edited manually (application/modules/User/views/scripts/_browseUsers.tpl and application/modules/User/views/scripts/index/browse.tpl). Same situation for the "forgot password" (application/modules/User/views/scripts/auth/forgot.tpl and forgot-form).

Related

Customize Hybris Backoffice login Theme

Anyone has an idea about how to change the default Backoffice Login Theme (Color, Background and image or any of these) ?
It could be helpful if you point out the file(s) responsible for this, or a specific way to customize it.
Using Hybris 6.0 or later.
Replacing Styles of Backoffice Application :
It is possible to replace the standard look and feel of the Backoffice Application. In other words, you can change the style sheet used in login page and main application pages including all components.
Files responsible for changing Backoffice main page style are located in the following key properties :
backoffice.cockpitng.mainpage.css=/cng/css/mainpage_whitelabel.css
backoffice.cockpitng.loginpage.css=/cng/css/loginpage_whitelabel.css
backoffice.cockpitng.overridewidgetsandeditors.css=/cng/css/customWidgetsAndEditors.css
For more about this topic, you can visit this link.

How to add an additional label in OpenAM login page

I am new to OpenAM. I need to create a custom styled login page, based on an existing login page:
This is what I've got so far:
I copied the DARK theme
I modified DataStore1.html to add style-classes and some HTML
I modified the CSS files
My questions:
Can I force OpenAM to always show the dutch version, regardless of browser language settings?
Where can I change the text of "Sign in"?
How do I move the "Remember my username" up so it gets between the username and the password?
How can I add the "Log in met je gebruikersnaam en pincode" sub-title?
How can I add the "Forgot pincode" URL?
Thanks!
1) You can remove all other localizations for the auth modules and ensure that all default locale properties files (that are involved in authn) are Dutch.
2) This would be in the callback descriptor XML for the authentication module. The DataStore module's XML by default can be found under config/auth/default/DataStore.xml under the servlet context.
3) Probably you will need to write some JavaScript for that. The callback rendering process cannot be customized.
4) In DataStore1.html just add that text above the callback rendering handlebars template (i.e. before {{#each reqs.callbacks}})
5) That depends on what that feature does, if it's just a custom link, then editing the DataStore1.html template will suffice.

how to hide "reset password" button in dotnetnuke (login module)

I use DotNetNuke 7 and I want to hide login "password reset" button from the form .
How do I achieve this?
You can hide it with this CSS, either embedded into you portal.css file, or into the skin.css
.dnnLoginActions {
display: none;
}
You can also disable the functionality my making an edit in the web.config file. That will apply to the entire DNN installation, not just a single portal.

Code & Variables For New Tumblr Pop-Up Share Box

Has anyone figured out the exact code and styling for the new drop down/pop up share box that comes with the new default tumblr theme? (this one: http://www.tumblr.com/theme/37310 )
It comes with:
"Share to twitter",
"Share to facebook",
"permalink",
and when on safari for iPad or google for android it shows
"Open in app".
The new like and reblog buttons are shown in tumblr theme docs but not the drop down share menu
It looks like this:
http://i.stack.imgur.com/nZ7PE.jpg
I would like to start adding the box to the themes I use. Thanks.

How can I change the login status of my Prestashop navigation bar? (Login/Logout button)

I am currently working with Prestashop right now, I have a modified skin but I found out my Login button does not change from "Login" to "Logout" if I'm not signed in. Now I tried to dig through the hierarchy to look up where the name is defined, but could not find it. To view a live preview of my website you can visit
this link.
If anyone could tell me how I can edit the navigation menu, or better yet the login status of my navigation button, that would really help me along. Thanks for the assistance :).
Greetings J.I.N.
It may depends on the Prestashop version and the module you are using, but with the blockuserinfo module it works like this (in Prestashop 1.5):
{if $logged}
{l s='Log out' mod='blockuserinfo'}
{else}
{l s='Login' mod='blockuserinfo'}
{/if}