Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Curtiss Grymala

    (@cgrymala)

    I’ll take a look and see if I can see anything in the code that might be causing this issue.

    Do you have a link to your site, so I can see what might be happening there? Thanks.

    Thread Starter ronrrico

    (@ronrrico)

    Thanks for the reply Curtiss.
    I found the problem and fixed it. I was a shopperpress theme bug.
    I was a closing </div> issue as i first suggested.

    Here is the fix for anybody using shopperpress 7.0.9.5

    In /system_customdesign.php ===PREMIUM PRESS REGISTER WIDGETS===
    Line 2551, we have a double closing </div>
    Like this: 'after_widget' => '</div></div>',

    We remove one of the </div> from this line and add it to line 2553
    Like this: 'after_title' => '</h2><div class="itemboxinner greybg widget"></div>',

    So now our code should look like this:

    if ( function_exists('register_sidebar') ){
    register_sidebar(array('name'=>'Home Page Widget Box',
    'before_widget' => '<div class="itembox">',
    'after_widget' => '</div>',
    'before_title' => '<h2 id="widget-box-id">',
    'after_title' => '</h2><div class="itemboxinner greybg widget"></div>',
    'description' => 'This is an empty widget box, its used only with the theme options found under "Display Settings" -> "Home Page" ',
    'id' => 'sidebar-0',

    Is anybody else is experiencing this issue, just apply this fix to all your sidebars in system_customdesign.php
    Starting from line:2548 to 2619
    So far this works for me and have not encountered any other issues do to the changes.
    Please! be safe and back up your file before making changes.

    Plugin Author Curtiss Grymala

    (@cgrymala)

    Fantastic. I’m glad you found the issue. Thanks for the update.

    Thread Starter ronrrico

    (@ronrrico)

    Yeah!, just glad I could figure it out and share the info.

    Curtiss, I installed a plugin from Wp called (Tabs Shortcode).
    This is a simple 1 file plugin based on the same jQuery as yours.
    The great thing about it is that your plugin automatically adds the theme css display to it,,, Nice! Thank you!

    I’m trying to get unlimited tab options on a single page with the Tabs Shortcode. I think the key is to rename the tabs name (e.g. tabs2).

    I’ve played with the code for a few hours and have not come up with the right mod.
    I was wondering if you could point out where I should rename the tabs to tabs2 if this is the correct method to make it work.

    Here is all the code involved with (Tabs Shortcode).

    [ Code moderated. For more than 10 lines of code please pastebin.com instead. ]

    Regards,
    Ronnie

    Thread Starter ronrrico

    (@ronrrico)

    This is my site: youreshopping dot com
    Just started development on it.

    Plugin Author Curtiss Grymala

    (@cgrymala)

    Can you re-post the code you had above, but paste it into a pastebin so I can see what you were working on? That will give me a better idea of where to point you.

    Thread Starter ronrrico

    (@ronrrico)

    I hope this is what you meant, http://pastebin.com/fQhvn5a8
    Bear with me, I was a oscommerce guy for a few years.
    It’s taking me some time to get use to wordpress, and shopperspess is just making it twice as hard.

    Thank you Curtiss

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘[Plugin: Collapsible Widget Area] Best Plug in ever! My Feedback & bug.’ is closed to new replies.