vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin Tips & Tricks (https://vborg.vbsupport.ru/forumdisplay.php?f=239)
-   -   Fix Fuzzy SEO Booster Style Issues (https://vborg.vbsupport.ru/showthread.php?t=260741)

VBIran 03-20-2011 10:00 PM

Fix Fuzzy SEO Booster Style Issues
 
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 !

final kaoss 03-25-2011 05:37 PM

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?

Brandon Sheley 03-25-2011 06:06 PM

why didn't you post this in the release thread?

final kaoss 03-25-2011 06:16 PM

I did post it there

https://vborg.vbsupport.ru/showthrea...07#post2141907

VBIran 03-27-2011 02:05 PM

I publish this tricks first in original thread :
https://vborg.vbsupport.ru/showpost....&postcount=608

final kaoss 04-01-2011 05:18 PM

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 (Post 2177958)
I publish this tricks first in original thread :
https://vborg.vbsupport.ru/showpost....&postcount=608


LBGSHI 07-19-2011 03:39 PM

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.

insidegames 02-22-2012 08:48 AM

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>


matrex722 04-04-2013 03:40 PM

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


All times are GMT. The time now is 10:06 AM.

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.01155 seconds
  • Memory Usage 1,771KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (1)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (9)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete