So, check it first and carefully.The second instruction includes/acp / acp-profile.php was not quite right. (Research)
Code: Select all
case 'index':
$location = $user->lang['INDEX'];
$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
break;
Code: Select all
// BEGIN Classifieds Mod
case 'buysell/index':
$location = $user->lang['VIEW_CLASSIFIEDS'];
$location_url = append_sid("{$phpbb_root_path}index.$phpEx");
break;
case 'buysell/single_ad':
$location = $user->lang['VIEW_CLASSIFIEDS'];
$location_url = append_sid("{$phpbb_root_path}single_ad.$phpEx");
break;
// END Classifieds Mod
Code: Select all
// MOD :: CLASSIFIEDS MOD -- START
'CLASSIFIEDS' => 'Classifieds',
Code: Select all
'VIEW_CLASSIFIEDS' => 'Viewing classifieds',
Code: Select all
<!-- IF LOCATION --><li>{L_LOCATION}: <!-- IF S_USER_LOGGED_IN -->{FLAG_IMG} {LOCATION}<!-- ELSE -->{L_CL_LOCATION_GUEST}<!-- ENDIF --></li><!-- ENDIF -->
I implemented this on an Artodia style which is as far removed from prosilver but technically prosilver as styles go and it worked fine. You may run into some issues with imageset images.tyhodge07 wrote:Will this only work for prosilver style or will it work for other styles that are prosilver based?