inherit
133146
0
Nov 16, 2024 15:51:08 GMT -8
Alanna 🥀🖤
3,564
November 2008
alannab
|
Post by Alanna 🥀🖤 on Jun 24, 2018 1:48:12 GMT -8
When I go to edit the profile, nothing shows up. I can click all of the tabbed areas but they are all the same. I haven't touched the coding so I don't know if its something wrong with the theme itself or what. I have been seeing this recurring question around so I want to make an announcement in why this is happening and how to fix it. - Firstly, Proboards has updated their tabbed coding for the Edit User Profile layout template therefore causing it to break on any theme that has had massive customization in that template.
- The easiest way to fix this issue, however it may or may not remove some custom layouts on this specific page, is to reset to the default template by going to Admin > Structure > Layout Templates > Edit User Profile and hitting the "Reset To Default" and save.
- Your other option, which will keep the design of theme you have chosen on this specific page, is to go to Admin > Structure > Layout Templates > Edit User Profile and find the variable $[content] and replace it with the following and save:
<noscript> <div class="content-box">Please enable Javascript for your browser to edit member profiles.</div> <style> .js-enabled {display: none;} </style> </noscript> <div class="clear js-enabled"> <div class="js-edit admin-edit $[edit_area.display_admin]"> $[edit_admin] </div> <div class="js-edit avatar-edit $[edit_area.display_avatar]"> $[edit_avatar] </div> <div class="js-edit badges-edit $[edit_area.display_badges]"> $[edit_badges] </div> <div class="js-edit personal-edit $[edit_area.display_personal]"> $[edit_personal] </div> <div class="js-edit privacy-edit $[edit_area.display_privacy]"> $[edit_privacy] </div> <div class="js-edit edit_notifications-edit $[edit_area.display_edit_notifications]"> $[edit_notifications] </div> <div class="js-edit settings-edit $[edit_area.display_settings]"> $[edit_settings] </div> <div class="js-edit social-edit $[edit_area.display_social]"> $[edit_social] </div> </div>
If you have further questions, ask them within this thread! <3
|
|
#e61919
Support Staff
224482
0
1
Nov 22, 2024 17:59:24 GMT -8
Scott
“Asking for help isn't giving up... it's refusing to give up.”
24,530
August 2015
socalso
|
Post by Scott on Jun 25, 2018 12:02:04 GMT -8
For anyone else that reads this thread if the reset template is not an option, here is what changed:
Two sections of the default template were modified. Using that as a reference point the following sections were the extent of changes to the Edit User Profile template.
== Before ==
<li{if $[menu.active]} class="ui-active"{/if}><a href="$[menu.href]">$[menu.text]</a></li>
== After ==
<li{if $[menu.active]} class="ui-active"{/if}><a class="js-tab" data-page="$[menu.href]">$[menu.text]</a></li>
== Before ==
<div class="clear"> $[content] </div>
== After ==
<noscript> <div class="content-box">Please enable Javascript for your browser to edit member profiles.</div> <style> .js-enabled {display: none;} </style> </noscript> <div class="clear js-enabled"> <div class="js-edit admin-edit $[edit_area.display_admin]"> $[edit_admin] </div> <div class="js-edit avatar-edit $[edit_area.display_avatar]"> $[edit_avatar] </div> <div class="js-edit badges-edit $[edit_area.display_badges]"> $[edit_badges] </div> <div class="js-edit personal-edit $[edit_area.display_personal]"> $[edit_personal] </div> <div class="js-edit privacy-edit $[edit_area.display_privacy]"> $[edit_privacy] </div> <div class="js-edit edit_notifications-edit $[edit_area.display_edit_notifications]"> $[edit_notifications] </div> <div class="js-edit settings-edit $[edit_area.display_settings]"> $[edit_settings] </div> <div class="js-edit social-edit $[edit_area.display_social]"> $[edit_social] </div> </div>
|
|
inherit
221342
0
Nov 23, 2021 2:30:07 GMT -8
RazorX
14
May 2015
razorhaxxor
|
Post by RazorX on Jan 6, 2019 2:32:46 GMT -8
Hello Mam/Sir,
I have the same issue in my running forum, would you mind to help me a bit, i can't find the variable $[cotent] ? in which line it was found?
|
|
inherit
133146
0
Nov 16, 2024 15:51:08 GMT -8
Alanna 🥀🖤
3,564
November 2008
alannab
|
Post by Alanna 🥀🖤 on Jan 9, 2019 18:11:59 GMT -8
Hello Mam/Sir, I have the same issue in my running forum, would you mind to help me a bit, i can't find the variable $[cotent] ? in which line it was found? It's $[content]. Just use control find (ctrl + F) to search for the variable.
|
|