Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #986530

    When adding the price slider to the sidebar of my shop I dont get the slider part of it. Its in the code but just not displaying?

    https://hosting.acscreativedev.com/~boombasscabinets/shop/

    #986974

    Hey acscreativenew,

    Best regards,
    Victoria

    #987029

    Where are you located? Could you send me your IP address?

    #987799

    Hi acscreativenew,

    I’m in Ukraine.

    Best regards,
    Victoria

    #990290

    ok, sorry im not sure what the issue is. My host says nothing is blocked.

    Anyway someone else can take a look at this. Most of the support team I have worked with before can see all my sites.

    Thanks
    -Dan

    #990308

    Hi,
    The culprit was your custom code in the child theme functions.php file. I had to modify the register_sidebar function for the shop page a bit:

    
    	register_sidebar( array(
    		'name'          => 'Sidebar Shop',
    		'id'            => 'sidebar-shop',
    		'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 
    		'after_widget' => '<span class="seperator extralight-border"></span></section>', 
    		'before_title' => '
    <h3 class="widgettitle">', 
    		'after_title' => '</h3>
    '
    	) );
    

    I’d suggest to modify the other register_sidebar functions too – some sample code can be found in enfold\includes\admin\register-widget-area.php

    Best regards,
    Dude

    #990321

    Perfect thanks Dude!

    #990324

    Hi,

    Glad I could help you :)

    Best regards,
    Dude

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Price Slider Widget’ is closed to new replies.