• Resolved Aggro82

    (@aggro82)


    hi there i want to use the revolution slider for my website ois it possible?
    or is there a other slider which one i can use?

    Best regards

    aggro

Viewing 15 replies - 1 through 15 (of 28 total)
  • Yes, it’s possible,
    don’t show the customizr slider,
    then add a new widget area after the header (if you want that there)
    and put in this new widget area your revolution slider shortcode.
    Hope this helps.

    Thread Starter Aggro82

    (@aggro82)

    Thank you!

    but it is too complicated for me.

    Thread Starter Aggro82

    (@aggro82)

    ok i do it but it not working?

    how can i do it?
    other ways?

    what is not working?
    the slider or the widget area or what?

    Thread Starter Aggro82

    (@aggro82)

    the slider the widget area works now

    i put the slider shortcode in the widget but it don’t work

    Ok, but can you elaborate a little more “don’t work” ?
    I mean what do you see? the shortcode in plain text?
    If yes add also this to your child-theme functions.php :
    add_filter('widget_text', 'do_shortcode');

    Can you share a link to your site?

    Thread Starter Aggro82

    (@aggro82)

    the wdget is not working not visible

    Thread Starter Aggro82

    (@aggro82)

    there is no text nothing

    Thread Starter Aggro82

    (@aggro82)

    Ok, so you put that code in the child-theme functions.php right?
    If yes.. well
    you’re not using the child-theme, you’re still using Customizr parent theme. To use the child theme you have to activate it as your main theme in Appearance -> Themes.
    Look that you’ll have to set again the Menu as main menu, in Appareance -> Menus.

    Thread Starter Aggro82

    (@aggro82)

    I have do all ehat yoz have tell me , but it don’t work again i go crazy

    Can I see your child-theme functions.php ?
    For some reason that widget area isn’t displayed at all after the header.

    Please paste the whole content of your child-theme functions.php in pastebin.com and put the link here.

    Thread Starter Aggro82

    (@aggro82)

    i have skype i can give you login in skype

    http://pastebin.com/yVsKrDwX

    I have install now the child theme over the parent theme and do the cvhanges which you have recommend me

    @aggro82 – I’ve deleted your skype details – please don’t post that here. And BTW, help is here on the forums only.

    WP SITES

    (@wordpresssites)

    @aggro82 Adding a widget after the header for a slider shortcode isn’t the best solution.

    A better solution is to hook the slider in directly after the header.

    A code example would look something like this:

    add_action ('__after_header', 'yourfunction');
    function yourfunction() {
    if (function_exists('slider_function')) {
    slider_function();
        }
    }

    Swap out slider_function with your sliders function.

    if your theme doesn’t include custom hooks, you could use this code in your header.php, home.php or single.php file

    <?php if ( function_exists( "easingslider" ) ) { easingslider( 1 ); } ?>
Viewing 15 replies - 1 through 15 (of 28 total)

The topic ‘use a different slider possible?’ is closed to new replies.