vBulletin Search Engine Optimization
This is a discussion on two simple template mods for vBulletin SEO within the Template Modifications forums, part of the vBulletin SEO Discussion category; For similar threads, set both to YES : AdminCP -> vBulletin Options -> Message Searching Options -> Automatic Similar Thread ...
| |||||||
Enhancing 80 million pages. | Register | FAQ | Members List | Social Groups | Calendar | Search | Today's Posts | Mark Forums Read |
|
#16
| ||||
| ||||
| Re: two simple template mods for vBulletin SEO
For similar threads, set both to YES: AdminCP -> vBulletin Options -> Message Searching Options -> Automatic Similar Thread Search AdminCP -> vBulletin Options -> Thread Display Options (showthread) -> Show Similar Threads
__________________ Keith Cohen / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. My Personal Sites: My Blog | GPS Discussion Forum |
|
#17
| |||
| |||
| Re: two simple template mods for vBulletin SEO Quote:
Quote:
|
|
#18
| ||||
| ||||
| Re: two simple template mods for vBulletin SEO
Edit template: showthread_similarthreads Look for: Code: $vbphrase[similar_threads] Code: $vbphrase[similar_threads] for: $thread[title]
__________________ Keith Cohen / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. My Personal Sites: My Blog | GPS Discussion Forum |
|
#19
| |||
| |||
| Re: two simple template mods for vBulletin SEO
many thanks. I was in the right area, but I was simply adding $thread. Oh well, thats an improvement on my knowledge of this stuff from a few months ago. Before, I never would have been able to even find the right template. |
|
#20
| ||||
| ||||
| Re: two simple template mods for vBulletin SEO
Related to this. Does anyone have any ideas on a query to update all post titles to be "RE: [thread title]" if they don't already have a title? EDIT: Got it: two simple template mods for vBulletin SEO
__________________ Keith Cohen / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. My Personal Sites: My Blog | GPS Discussion Forum Last edited by Keith Cohen; 12-26-2005 at 11:48 PM. |
|
#21
| |||
| |||
| Re: two simple template mods for vBulletin SEO Quote:
Also have another question. For threads with multiple pages, would it be beneficial to take the code that says "page 2,3,4,etc...."? |
|
#22
| ||||
| ||||
| Re: two simple template mods for vBulletin SEO
Ok, I got it. *** WARNING: USE AT YOUR OWN RISK. MAKE A BACKUP OF YOUR DATABASE FIRST. MAYBE TWO TO BE SAFE. NOT RESPONSIBLE. *** This worked for me to update all the old post titles to "Re: [thread title]" if they were currently blank. If you have a lot of posts this can take a while to execute. I have about 365k posts and it took about 10 minutes. The query: Code: UPDATE post SET post.title = concat("Re: ",(SELECT thread.title FROM thread WHERE thread.threadid = post.threadid)) WHERE post.title = ""
I ONLY use linear mode on my site anyway, so it doesn't affect me.
__________________ Keith Cohen / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. My Personal Sites: My Blog | GPS Discussion Forum Last edited by Keith Cohen; 12-27-2005 at 03:39 PM. |
|
#23
| ||||
| ||||
| Re: two simple template mods for vBulletin SEO Quote:
__________________ Juan Muriente / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. |
|
#24
| ||||
| ||||
| Re: two simple template mods for vBulletin SEO
Perhaps it is better to implement a template mod instead of changing the database content. Edit postbit template FIND: Quote:
Quote:
__________________ Oleg Ignatiuk / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. |
|
#25
| ||||
| ||||
| Re: two simple template mods for vBulletin SEO
Wouldn't that also require additional edits to make it show on the Printable version and the Archive version? Plus, I think the database method needs to be used to make Threaded and Hybrid modes look correct doesn't it? (Otherwise, wouldn't Jelsoft have used the same method, instead of using additional database space to store the post titles?)
__________________ Keith Cohen / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. My Personal Sites: My Blog | GPS Discussion Forum |
|
#26
| ||||
| ||||
| Re: two simple template mods for vBulletin SEO
Yes, sure - further template modifications will be required for this. What I meant is that it will be harder to perforum "undo" or "modify" after the database modification.
__________________ Oleg Ignatiuk / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. |
|
#27
| |||
| |||
| Re: two simple template mods for vBulletin SEO Quote:
|
|
#28
| ||||
| ||||
| Re: two simple template mods for vBulletin SEO
Replace [tableprefix] with your table prefix: Code: UPDATE [tableprefix]post SET [tableprefix]post.title = concat("Re: ",(SELECT [tableprefix]thread.title FROM [tableprefix]thread WHERE [tableprefix]thread.threadid = [tableprefix]post.threadid)) WHERE [tableprefix]post.title = ""
__________________ Keith Cohen / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. My Personal Sites: My Blog | GPS Discussion Forum |
|
#29
| ||||
| ||||
| Re: two simple template mods for vBulletin SEO
Also, see my edit to my original query post regarding Threaded and Hybrid modes.
__________________ Keith Cohen / Crawlability Inc. vBSEO 3.2.0 Launched - Maximum Overdrive for Your Web Traffic! Over 100 Instant SEO Optimizations vBSEO Google Sitemap Generator - Version 2.2 Released Mandatory Upgrade for vBSEO 3.2.0 GOLD 6X Traffic - $1400 in One Day with vBSEO! Imagine What the vBSEO Patent Pending Technology Can Do For You. My Personal Sites: My Blog | GPS Discussion Forum |
|
#30
| |||
| |||
| Re: two simple template mods for vBulletin SEO
As i to only use linear too I will retry |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Who did the template *here*? Are there any other SIMPLE templates available? | tza | Template Modifications | 20 | 05-28-2006 03:51 PM |
| SEO, usability and readability.... The unseperable cousins. | rob | Member Articles | 2 | 11-20-2005 07:40 PM |
| the archives SEO | acers | General Discussion | 11 | 07-29-2005 02:18 AM |