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?
Hey acscreativenew,
Best regards,
Victoria
Where are you located? Could you send me your IP address?
Hi acscreativenew,
I’m in Ukraine.
Best regards,
Victoria
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
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
Perfect thanks Dude!
Hi,
Glad I could help you :)
Best regards,
Dude