Hi Crip,
Downloaded and installed without much problems except for the below issues.
For the Baker's Dozen mod, I added the button but some how the menu title is "Pages" although I have name it as "Goodies"
// Show the [pages] button.
global $user_info, $modSettings;
if ($user_info['is_guest'] ? !empty($modSettings['dozen_pages_enable_guest_access']) : !empty($modSettings['dozen_pages_enable_member_access']))
echo ($current_action == 'pages' || $context['browser']['is_ie4']) ? '<td class="maintab_active_' . $first . '"> </td>' : '' , '
<td valign="top" class="maintab_' , $current_action == 'pages' ? 'active_back' : 'back' , '">
<a href="', $scripturl, '?action=pages">', !empty($modSettings['dozen_pages_tab_label']) ? $modSettings['dozen_pages_tab_label'] : $txt['dozen_pages_tab_default'], '</a>
</td>' , $current_action == 'pages' ? '<td class="maintab_active_' . $last . '"> </td>' : '';
The code I inserted is
// Show the [pages] button.
global $user_info, $modSettings;
if ($user_info['is_guest'] ? !empty($modSettings['dozen_pages_enable_guest_access']) : !empty($modSettings['dozen_pages_enable_member_access']))
echo '<li', $current_action == 'pages' ? ' class="chosen"' : '', '><a href="', $scripturl, '?action=pages">' , $txt['dozen_pages_tab_default'] , '</a></li>';
In the Admin>Current Theme, I've specified a logo image url but the logo does not show! (/forum/Themes/logo.jpg). I tried the full path and still my own logo doesn't show up.
Under Admin>News And Newsletters I can't seem to enable the news. I click "Preview" which automatically ticks all the other 3 txt boxes and click save but nothing happens?
Any suggestions?
Thanks.