• Resolved auth1299

    (@auth1299)


    How do I add a slider to my theme header? I do not see any widgets. Do I have to hard code something in my theme files?

Viewing 1 replies (of 1 total)
  • Plugin Author Aleksandar

    (@siemens82)

    Hi,

    Sorry for so much late response. I did’t get notification about this topic.

    You can add shortcode in text widget and place it in any sidebar area.

    To enable shortcodes in text widget add this to your theme functions.php file:
    // Enable shortcodes in text widgets
    add_filter(‘widget_text’,’do_shortcode’);

    You can also put this code in your PHP file:
    <?php echo do_shortcode( ‘[shindiri-woo-slider id=”YOUR-SLIDER-ID”]’ ); ?>

    Best regards,
    Aleksandar

Viewing 1 replies (of 1 total)
  • The topic ‘How do you add a slider to a Widget?’ is closed to new replies.