Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > Premium Archives > ibProArcade Archive
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
SEO: dynamic TITLE-Tag in Arcade Details »»
SEO: dynamic TITLE-Tag in Arcade
Version: , by MrZeropage MrZeropage is offline
Developer Last Online: Mar 2023 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 01-04-2009 Last Update: Never Installs: 0
 
No support by the author.

Hello,

using ibProArcade v2.6.8+ and later you have a new setting in AdminCP -> Arcade -> Main Settings to adapt the TITLE-Tag within the Arcade.

This way it is possible to say "playing Snake" in the TITLE which is good for search-engine-optimization.


I am sorry to forget to adapt the ARCADE-Template in the release of v2.6.8+ so please do the following manual adaption to the ARCADE-Template in your style(s) to make use of the dynamic TITLE:

search for
Code:
<title><phrase 1=$vboptions[bbtitle]>$vbphrase[x_powered_by_vbulletin]</phrase></title>
and replace it with
Code:
<title>$ibprotitle</title>
Please notice that this will only work and have effect if you correctly upgraded to ibProArcade v2.6.8+ meaning all files need to be actual version.


Enjoy

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 04-03-2009, 09:13 PM
wmlvb's Avatar
wmlvb wmlvb is offline
 
Join Date: May 2008
Posts: 200
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MrZeropage View Post
Hello,

using ibProArcade v2.6.8+ and later you have a new setting in AdminCP -> Arcade -> Main Settings to adapt the TITLE-Tag within the Arcade.

This way it is possible to say "playing Snake" in the TITLE which is good for search-engine-optimization.


I am sorry to forget to adapt the ARCADE-Template in the release of v2.6.8+ so please do the following manual adaption to the ARCADE-Template in your style(s) to make use of the dynamic TITLE:

search for
Code:
<title><phrase 1=$vboptions[bbtitle]>$vbphrase[x_powered_by_vbulletin]</phrase></title>
and replace it with
Code:
<title>$ibprotitle</title>
Please notice that this will only work and have effect if you correctly upgraded to ibProArcade v2.6.8+ meaning all files need to be actual version.


Enjoy
I tried this fix but I am still getting this error every time I try to change settings!!

Quote:
mySQL error: Unknown column 'htmltitle' in 'field list'
Can you tell me how to fix?

--------------- Added [DATE]1238814152[/DATE] at [TIME]1238814152[/TIME] ---------------

Quote:
Originally Posted by wmlvb View Post
I tried this fix but I am still getting this error every time I try to change settings!!



Can you tell me how to fix?
can anyone help with this??
Reply With Quote
  #13  
Old 05-22-2009, 03:18 PM
militarytuners militarytuners is offline
 
Join Date: Oct 2007
Posts: 61
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Excellent! I just did this to my arcade.
Reply With Quote
  #14  
Old 06-06-2009, 12:51 AM
Heath Heath is offline
 
Join Date: Jun 2007
Posts: 27
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I can not seem to find this any where in my templates. What files should we be looking in?
Reply With Quote
  #15  
Old 08-11-2009, 11:55 AM
cheat-master30's Avatar
cheat-master30 cheat-master30 is offline
 
Join Date: Mar 2007
Location: Information Classified
Posts: 1,715
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just done this, although I don't know why this can't just be set as default.
Reply With Quote
  #16  
Old 02-02-2010, 01:28 AM
lazydesis lazydesis is offline
 
Join Date: Sep 2006
Posts: 234
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The title doesnt seem to work on VB4

to fix this

open arcade/functions/functions.php

find

Code:
		$templater->register('footer', $footer);
below that paste

Code:
		$templater->register('ibprotitle', $ibprotitle);
save the file and upload it.

The title will now work on vB4
Reply With Quote
  #17  
Old 03-28-2010, 12:33 PM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by lazyindian View Post
The title doesnt seem to work on VB4

to fix this

open arcade/functions/functions.php

find

Code:
		$templater->register('footer', $footer);
below that paste

Code:
		$templater->register('ibprotitle', $ibprotitle);
save the file and upload it.

The title will now work on vB4
thanks for the fix pal:up:
Reply With Quote
  #18  
Old 04-22-2010, 12:07 PM
doraj doraj is offline
 
Join Date: Nov 2005
Location: Italy
Posts: 108
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hello,

I use IbPRO 2.7.0, I setup the title "<title>$ibprotitle</title>" and I used the fix for functions.php.

The title of my page "Arcade" and for each games is:

Name Forum - Arcade (Arcade home's page)

Name Forum - Arcade - Name Game (Arcade game's page)

I would like invert to:

Arcade - Name Forum

Name Game - Arcade on Name Forum


Where Can I modify these settings please?

Thanks
Reply With Quote
  #19  
Old 05-07-2010, 08:13 PM
egyptsons's Avatar
egyptsons egyptsons is offline
 
Join Date: Jan 2004
Location: Egypt
Posts: 250
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by lazyindian View Post
The title doesnt seem to work on VB4

to fix this

open arcade/functions/functions.php

find

Code:
		$templater->register('footer', $footer);
below that paste

Code:
		$templater->register('ibprotitle', $ibprotitle);
save the file and upload it.

The title will now work on vB4
Thank you so much
worked fine with me
Reply With Quote
  #20  
Old 07-27-2010, 08:06 PM
Dragonsys's Avatar
Dragonsys Dragonsys is offline
 
Join Date: Jan 2008
Location: DFW, Texas
Posts: 743
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

editing the functions.php file only works until you have to upgrade VB, then you have to re-edit the functions.php file again. There must be some way to get this working without the file edit.
Reply With Quote
  #21  
Old 08-02-2010, 01:29 AM
Hippy's Avatar
Hippy Hippy is offline
 
Join Date: Dec 2001
Location: USA, New Jersey
Posts: 2,392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Dragonsys View Post
editing the functions.php file only works until you have to upgrade VB, then you have to re-edit the functions.php file again. There must be some way to get this working without the file edit.
what? /arcade/functions/functions.php

the file belongs to the arcade it's not replaced with vb is upgraded
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:57 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05113 seconds
  • Memory Usage 2,315KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (10)bbcode_code
  • (6)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete