Where does my template go?

phpBB3 SEO Advanced mod Rewrite support forum.
This mods performs URL rewriting for phpBB, injecting forums and topic titles in their URLs.

Moderator: Moderators


Where does my template go?

Postby ForgotenDynasty » Fri Jun 27, 2008 3:18 pm

Ok so my premod forum is installed in to /forums

i have the fallowing settings enabled

Activate URL rewriting: yes
URL rewriting type: Advanced
Virtual folder Profiles: yes
Profiles ID removing: yes
Common Search and User messages pages rewriting:yes
SID Removing: yes
Highlights Removing: yes
Remove small words:no
Virtual Folder: yes
Virtual Root: yes
Forum URL caching:yes
Forum ID Removing: yes
Link image: yes <--- the only image on the entire page that loads
Activate The No duplictate: No
Activate the Zero duplictate: NO
Strict mode: NO
Posts Redirections: Off
____________________

my template should look like this
Image


Instead it looks like this
Image

the pre mod prosilver and subsilver work but my default one doesnt

Its subsilver based so i applied the fallowing mod to it but still i get nothing

Code: Select all
#-----[ OPEN ]------------------------------------------
#

styles/subsilver2/template/overall_header.html

#
#-----[ FIND ]------------------------------------------
#

<head>

#
#-----[ AFTER, ADD ]------------------------------------------
#

{SEO_BASE_HREF}

#
#-----[ FIND ]------------------------------------------
#

function jumpto()
{
   var page = prompt('{LA_JUMP_PAGE}:', '{ON_PAGE}');
   var perpage = '{PER_PAGE}';
   var base_url = '{A_BASE_URL}';

   if (page !== null && !isNaN(page) && page > 0)
   {
      document.location.href = base_url.replace(/&amp;/g, '&') + '&start=' + ((page - 1) * perpage);
   }
}

#
#-----[ REPLACE WITH ]------------------------------------------
#

// www.phpBB-SEO.com SEO TOOLKIT BEGIN
function jumpto()
{
   var page = prompt('{LA_JUMP_PAGE}:', '{ON_PAGE}');
   var perpage = '{PER_PAGE}';
   var base_url = '{A_BASE_URL}';
   var seo_delim_start = '{SEO_START_DELIM}';
   var seo_static_pagination = '{SEO_SATIC_PAGE}';
   var seo_ext_pagination = '{SEO_EXT_PAGE}';

   if (page !== null && !isNaN(page) && page > 0) {
      var seo_page = (page - 1) * per_page;
      if ( base_url.indexOf('?') >= 0 ) {
         document.location.href = base_url.replace(/&amp;/g, '&') + '&start=' + seo_page;
      } else if ( seo_page > 0 ) {
         var seo_type1 = base_url.match(/\.[a-z0-9]+$/i);
         if (seo_type1 !== null) {
            document.location.href = base_url.replace(/\.[a-z0-9]+$/i, '') + seo_delim_start + seo_page + seo_type1;
         }
         var seo_type2 = base_url.match(/\/$/);
         if (seo_type2 !== null) {
            document.location.href = base_url + seo_static_pagination + seo_page + seo_ext_pagination;
         }
      } else {
         document.location.href = base_url;
      }
   }
}
// www.phpBB-SEO.com SEO TOOLKIT END

#
#-----[ OPEN ]------------------------------------------
#

styles/subsilver2/template/viewtopic_body.html

#
#-----[ FIND ]------------------------------------------
#

<a href="#wrapheader">

#
#-----[ REPLACE WITH ]------------------------------------------
#

<a href="{U_VIEW_TOPIC}#wrapheader">
ForgotenDynasty
 
Posts: 12
Joined: Thu Jun 26, 2008 6:55 pm

Advertisement

Postby Professional » Sat Jun 28, 2008 5:13 am

take a look at forum list body and index_body.html :wink:
User avatar
Professional
PR5
PR5
 
Posts: 540
Joined: Mon Apr 07, 2008 5:41 am
Location: 1/2 of the World

Postby dcz » Sat Jun 28, 2008 8:37 am

If you applied the overall_header.html code change for this theme, and it's still not working, you should just go ACP and clear both theme and template's cache, should do it ;)
Useful links :
SEO Forum || SEO Directory || SEO phpBB || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Recherche
dcz
Admin
Admin
 
Posts: 19930
Joined: Fri Apr 28, 2006 9:03 pm


Return to Advanced SEO URL

 


  • Related topics
    Replies
    Views
    Last post

Who is online

Users browsing this forum: No registered users and 32 guests


 
cron