Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #41325
    Morganti
    Participant

    Hello, all is in the title.
    I don’t find a widget area for that !
    Can you help me please

    #41343
    Sakin
    Keymaster

    @Morganti: Sorry I don’t get it what do you mean. For slider you can see the theme instructions at http://catchthemes.com/theme-instructions/adventurous-pro/.

    #41373
    Morganti
    Participant

    In the “Theme Option” you have “Featured Slider” menu.
    But I have another extension “Meta slider”.
    I haven’t found an option to put “Meta slider” instead of “Featured Slider”.

    Is it a little more understandable?
    If Yes, can you help me please ?

    Sorry for my english not great 🙂

    #41406
    Sakin
    Keymaster

    @Morganti: Sorry we are not sure how Meta Slider works. Can you ask in the support forum of Meta Slider, they should be able to help you. Or you can hire a customizer to work for you.

    #41702
    Morganti
    Participant

    The problem is that in “widgets” it lacks a location (widget area) so I can put my Widgets “Meta slider” (or any other widget). This is to replace the “slider” (Featured Slider) of the “theme” (adventurous-pro). Or have an option to disable the slider “slider” (Featured Slider) of the “theme” (adventurous-pro).

    Thank you for your help 🙂

    #41709
    Sakin
    Keymaster

    @Morganti: There is option to disable slider. Go to “Appearance => Theme Options => Featured Slider => Slider Options” and in “Enable Slider”, you can select “Disable” and save changes.

    To add Meta Slider in place of current slider. First disable the slider as instructed above. Then you can build child theme. You can download sample child theme from here http://catchthemes.com/blog/create-child-theme-wordpress/. There in this child theme, you cad add the following code in the child them functions.php file. In the following code I have added sample meta slider shortcode. So, you need to replace [metaslider id=123]

    /**
     * Add Meta Slider in place of default slider
     */
    function adventurous_child_meta_slider() {
    	//Add your meta slider code
    	echo '<div id="main-slider">';
    		echo do_shortcode("[metaslider id=123]");
    	echo '</div><!-- #main-slider -->';
    }
    add_action( 'adventurous_before_main', 'adventurous_child_meta_slider', 40 );
    #41712
    Morganti
    Participant

    Very nice. Excellent !!!!

    Thank you very much it’s all ok now… 🙂

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘How to replace integrate slider with an other extension ?’ is closed to new replies.