Go Back   vb.org Archive > vBulletin Article Depository > Read An Article > vBulletin Tips & Tricks
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Fix Fuzzy SEO Booster Style Issues
VBIran
Join Date: Nov 2010
Posts: 91

 

Iran
Show Printable Version Email this Page Subscription
VBIran VBIran is offline 03-20-2011, 10:00 PM

Hi ,
Many of vbulletin users asked me to learn how they can fix fuzzy seo style issues .
YOU HAVE 2 STEP TO FIX :
Go to admincp then open the f_seo_plugin_home template .
Replace it with this code :
Code:
				<style type="text/css">
				 #wgo_events div.inner *{background:none;display:inline;border:none;color:black;padding:0px 0px 0px 0px;-webkit-border-top-right-radius:0px;-webkit-border-top-left-radius:0px;-webkit-box-shadow: none;font-weight:normal;}
				 #wgo_events div.inner h2{font-size: 130%;font-weight: bold;}
				 #wgo_events div.inner h3{font-size: 120%;font-weight: bold;}
				 #wgo_events div.inner h4{font-size: 120%;}
				 #wgo_events div.inner h5{font-size: 110%;}
				 #wgo_events div.inner strong{font-size: 100%;}
				 #wgo_events a.seoq{margin:5px 0px 0px 20px;}
				 </style>
	<div id="wgo_events" class="wgo_subblock section">
			<h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/forum_stats.png" alt="{vb:rawphrase seofq_title}" />{vb:rawphrase seofq_title}</h3>
			<div class="inner">
				<vb:each from="keywords" key="wordid" value="word">
					{vb:var tag_fix}{vb:var word.tag}>{vb:var word.term_value}</{vb:var word.tag}><vb:if condition="$wordid != $tagscount">,&nbsp;</vb:if>
				</vb:each>
			</div>
		</div>
Now open f_seo_plugin_thread template and replace it with :
Code:
				<style type="text/css">
				 #seofq_list_cell *{background:none;display:inline;border:none;color:black;padding:0px 0px 0px 0px;-webkit-border-top-right-radius:0px;-webkit-border-top-left-radius:0px;-webkit-box-shadow: none;font-weight:normal;}
				 #seofq_list_cell h2{font-size: 130%;font-weight: bold;}
				 #seofq_list_cell h3{font-size: 120%;font-weight: bold;}
				 #seofq_list_cell h4{font-size: 120%;}
				 #seofq_list_cell h5{font-size: 110%;}
				 #seofq_list_cell strong{font-size: 110%;}
				 #seof_queries_list a.seoq{margin:0px 0px 0px 0px;font-size: 100%;}
				 </style>
	<h4 class="threadinfohead blockhead"><span class="optiontitle">{vb:rawphrase seofq_title}</span></h4>
	<div id="seof_queries_list" class="thread_info_block blockbody formcontrols">
		<div class="inner_block">
			<div id='seofq_list_cell'>
			<vb:each from="keywords" key="wordid" value="word">
				{vb:var tag_fix}{vb:var word.tag}>{vb:var word.term_value}</{vb:var word.tag}><vb:if condition="$wordid != $tagscount">,&nbsp;</vb:if>
			</vb:each>
			</div>
		</div>
	</div>
You are done !
Enjoy !
Reply With Quote
  #2  
Old 03-25-2011, 05:37 PM
final kaoss final kaoss is offline
 
Join Date: Apr 2006
Posts: 1,314
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Interesting. Here's a "fix" that I posted a while back so that the box is now collapsable.
open f_seo_plugin_thread template and replace it with :

PHP Code:
<style type="text/css">
                 
#seofq_list_cell *{background:none;display:inline;border:none;color:black;padding:0px 0px 0px 0px;-webkit-border-top-right-radius:0px;-webkit-border-top-left-radius:0px;-webkit-box-shadow: none;font-weight:normal;}
                 #seofq_list_cell h2{font-size: 130%;font-weight: bold;}
                 #seofq_list_cell h3{font-size: 120%;font-weight: bold;}
                 #seofq_list_cell h4{font-size: 120%;}
                 #seofq_list_cell h5{font-size: 110%;}
                 #seofq_list_cell strong{font-size: 110%;}
                 #seof_queries_list a.seoq{margin:0px 0px 0px 0px;font-size: 100%;}
                 
</style>
<
div class="collapse"> <class="collapse" id="collapse_seof_queries_list" href="{vb:raw relpath}#top" ><img src="{vb:stylevar imgdir_button}/collapse{vb:raw vbcollapse.collapseimg_info_options}_40b.png" alt="Collapse this box." /></a>

    <
h4 class="threadinfohead"><span class="optiontitle">{vb:rawphrase seofq_title}</span></h4></div>
    <
div id="seof_queries_list" class="thread_info_block">
        <
div class="inner_block">
            <
div id='seofq_list_cell'>
            <
vb:each from="keywords" key="wordid" value="word">
                {
vb:var tag_fix}{vb:var word.tag}>{vb:var word.term_value}</{vb:var word.tag}><vb:if condition="$wordid != $tagscount">,&nbsp;</vb:if>
            </
vb:each>
            </
div>
        </
div>
    </
div
What would I have to do to my "fix" to fix the style issue?
Reply With Quote
  #3  
Old 03-25-2011, 06:06 PM
Brandon Sheley's Avatar
Brandon Sheley Brandon Sheley is offline
 
Join Date: Mar 2005
Location: Google Kansas
Posts: 4,678
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

why didn't you post this in the release thread?
Reply With Quote
  #4  
Old 03-25-2011, 06:16 PM
final kaoss final kaoss is offline
 
Join Date: Apr 2006
Posts: 1,314
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I did post it there

https://vborg.vbsupport.ru/showthrea...07#post2141907
Reply With Quote
  #5  
Old 03-27-2011, 02:05 PM
VBIran VBIran is offline
 
Join Date: Nov 2010
Location: Iran
Posts: 91
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I publish this tricks first in original thread :
https://vborg.vbsupport.ru/showpost....&postcount=608
Reply With Quote
  #6  
Old 04-01-2011, 05:18 PM
final kaoss final kaoss is offline
 
Join Date: Apr 2006
Posts: 1,314
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

The difference though, is yours fixes the style issues, while mine adds a collapsible box. And it doesn't matter who posted what first. But if you really want to debate about it, I posted my fix on 31 Dec 2010, vs you posting yours in march 2011.

Quote:
Originally Posted by VBIran View Post
I publish this tricks first in original thread :
https://vborg.vbsupport.ru/showpost....&postcount=608
Reply With Quote
  #7  
Old 07-19-2011, 03:39 PM
LBGSHI LBGSHI is offline
 
Join Date: Jun 2009
Posts: 9
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

extreme-gaming: That's a great fix, but you made a small mistake in seo_plugin_home:

Code:
<h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/forum_stats.png" alt="{vb:rawphrase seofq_title}" />{vb:rawphrase seofq_title}</h3></div>
...should be

Code:
<h3 class="blocksubhead"><img src="{vb:stylevar imgdir_misc}/forum_stats.png" alt="{vb:rawphrase seofq_title}" />{vb:rawphrase seofq_title}</h3>
The extra </div> causes the current <div> to break too early, and slightly messes up the layout of the collapsible box.

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

While we're on the subject, does anyone know where the 'ban filter' is in Fuzzy SEO Booster? I've seen it referenced several times, but never where it actually is, and I can't seem to find it. It would be nice to filter useless results like "powered by vbulletin 3.x"...

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

Ah, I found the ban filter...

Apparently, I was missing the entire AdminCP section for Fuzzy SEO Booster, hence I had very minimal configuration capability. Heh.
Reply With Quote
  #8  
Old 02-22-2012, 08:48 AM
insidegames insidegames is offline
 
Join Date: Jun 2010
Posts: 91
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I've got a questions..

In my forum show it so (it's a underforum)
http://forum.insidegames.ch/alan-wak...nightmare-f162

there is no blue frame and does not look nice. How should the code, so everything is uniform and the same?

f_seo_plugin_forumdisplay shows now:

Code:
<style type="text/css">
			#seof_queries_inner.seof_queries_fd_subblock{padding:10px;}
			#seof_queries_inner.seof_queries_fd_subblock *{background:none;display:inline;border:none;color:black;padding:0px 0px 0px 0px;-webkit-border-top-right-radius:0px;-webkit-border-top-left-radius:0px;-webkit-box-shadow: none;font-weight:normal;}
			#seof_queries_inner.seof_queries_fd_subblock h2{font-size: 130%;font-weight: bold;}
			#seof_queries_inner.seof_queries_fd_subblock h3{font-size: 120%;font-weight: bold;}
			#seof_queries_inner.seof_queries_fd_subblock h4{font-size: 120%;}
			#seof_queries_inner.seof_queries_fd_subblock h5{font-size: 110%;}
			#seof_queries_inner.seof_queries_fd_subblock strong{font-size: 100%;}
			#seof_queries_inner.seof_queries_fd_subblock a.seoq{color: rgb(65, 115, 148);font-size: 100%;}
		</style>
		<div class="collapse">
			<a class="collapse" id="collapse_seof_queries_fd" href="{vb:raw relpath}#top"><img src="{vb:stylevar imgdir_button}/collapse{vb:raw vbcollapse.collapseimg_info_options}_40b.png" alt="" /></a>
			<h4 class="forumoptiontitle"><span class="optiontitle">{vb:rawphrase seofq_title}</span></h4>
		</div>
		<div id="seof_queries_fd" class="forum_info_block">
			<div id="seof_queries_inner" class="seof_queries_fd_subblock">
					<vb:each from="keywords" key="wordid" value="word">
						{vb:var tag_fix}{vb:var word.tag}>{vb:var word.term_value}</{vb:var word.tag}><vb:if condition="$wordid != $tagscount">,&nbsp;</vb:if>
					</vb:each>
					<br />
			</div>
		</div>
Reply With Quote
  #9  
Old 04-04-2013, 03:40 PM
matrex722's Avatar
matrex722 matrex722 is offline
 
Join Date: Jan 2007
Posts: 161
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

can you please make it work for 3.8.x
i saw it works in 3.8
and when i asked the site owner he didnt tell me how
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 01:27 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.05675 seconds
  • Memory Usage 2,304KB
  • Queries Executed 24 (?)
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
  • (5)bbcode_code
  • (1)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_article
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (9)post_thanks_box
  • (9)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (9)post_thanks_postbit_info
  • (8)postbit
  • (9)postbit_onlinestatus
  • (9)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
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete