Forum .LRN Q&A: Change the portal templates

Collapse
Posted by jorge freitas on
I have a question. If we change the name of the pages "My Space", "Calendar", etc. in the portal templates should the names in the navegation bar change too? Because in my case i change this names in all the portal templates, but the nav bar is still unchange.
Thanks.
Collapse
Posted by jorge freitas on
I noted that this changes only take effect for the users added after the changes are made. Is any way of solve this, and make the changes avaible to all the users.
Thanks.
Collapse
Posted by xx xx on
Each user can change his own page name on his private portal. A community portal should be the same for all members.

You could do this:

update portal_pages set pretty_name = 'Custom' where pretty_name = 'My Space';

To change all portal pages called 'My Space' to 'Custom'

Collapse
Posted by xx xx on
Defaults for new portals can be set with:
/dotlrn [set parameters] in the sitemap

Change the .._pages_csv parameters to your likings.

Collapse
Posted by jorge freitas on
Thanks, Aldert.