• Hi, Is there a way to keep only one slide in the slider area ? I dont want any animation. I just want one slide there.
    Also, I’d like to Publish a Facebook page widget on the right hand side of my posts. Is there a way to do that ?

    Thanks.

    • This topic was modified 8 years, 2 months ago by trippindian.
Viewing 15 replies - 1 through 15 (of 17 total)
  • Hii,

    Please go to Dashboard -> Appearance -> Customize -> Theme Option -> Theme Slider Option.
    Here You will show Slider image one, Slider image two, Slider image three options. For Removing slider image clicks on Remove and save the changes.

    For removing animation –

    Open Your theme folder then open home-slideshow.php and replace it with the below link code.

    Link

    and save the file.

    You want to Publish a Facebook page widget on the right-hand side of posts. Yes, it is possible but this facebook widget will show in all other sidebar pages.

    Thanks.

    Thread Starter trippindian

    (@trippindian)

    Hi, I pasted this code in the theme folder and I cannot see anything on my homepage.

    Please help me out ASAP trippindian.com

    Hello,
    May I have your front-page.php and home-slideshow.php here ?

    Thanks

    Thread Starter trippindian

    (@trippindian)

    FRONT PAGE:

    <?php get_header();
    if ( get_option( ‘show_on_front’ ) == ‘page’ ) {
    get_template_part(‘breadcrums’); ?>
    <div class=”container”>
    <div class=”row enigma_blog_wrapper”>
    <div class=”col-md-8″>
    <?php get_template_part(‘post’,’page’); ?>
    </div>
    <?php get_sidebar(); ?>
    </div>
    </div>	<?php
    } else {
    $wl_theme_options = enigma_parallax_get_options();
    if($wl_theme_options[‘slider_home’] == “1”) {
    get_template_part(‘home’,’slideshow’);
    }
    if($wl_theme_options[‘service_home’] == “1”) {
    get_template_part(‘home’,’services’);
    }
    if($wl_theme_options[‘portfolio_home’] == “1”) {
    get_template_part(‘home’,’portfolio’);
    }
    if($wl_theme_options[‘show_blog’] == “1”) {
    get_template_part(‘home’,’blog’);
    }
    if($wl_theme_options[‘show_team’] == “1”) {
    get_template_part(‘home’,’team’);
    }
    if($wl_theme_options[‘fc_home’] == “1”) {
    get_template_part(‘footer’,’callout’);
    }
    }
    get_footer();
    ?>
    
    home-slideshow :
    
    <!– Carousel
    ================================================== –>
    <div id=”myCarousel” class=”carousel slide” data-ride=”carousel”>
    <div class=”carousel-inner”>
    <?php $wl_theme_options = weblizar_get_options(); $j=1;
    for($i=1; $i<=3; $i++){ ?>
    <?php if($wl_theme_options[‘slide_image_’.$i]!=”) {
    ?>
    <div class=”item <?php if($j==1) echo “active”; ?>”>
    
    ” class=”img-responsive” alt=”<?php echo esc_attr($wl_theme_options[‘slide_title_’.$i]); ?>”>
    <div class=”container”>
    <div class=”carousel-caption”>
    <?php if($wl_theme_options[‘slide_title_’.$i]!=”) { ?>
    <div class=”carousel-text”>
    <h1><?php echo esc_attr($wl_theme_options[‘slide_title_’.$i]); ?></h1>
    <?php
    if($wl_theme_options[‘slide_desc_’.$i]!=”) { ?>
    <ul class=”list-unstyled carousel-list”>
    
    <?php echo esc_attr($wl_theme_options[‘slide_desc_’.$i]); ?>
    <?php }
    if($wl_theme_options[‘slide_btn_text_’.$i]!=”) { ?>
    ” role=”button”><?php echo esc_attr($wl_theme_options[‘slide_btn_text_’.$i]); ?>
    <?php } ?>
    </div>
    <?php } ?>
    </div>
    </div>
    </div>
    <?php $j++; } } ?>
    </div>
    
    <?php for($i=0; $i<$j-1; $i++) { ?>
    <li data-target=”#myCarousel” data-slide-to=”<?php echo $i; ?>” <?php if($i==0) { echo ‘class=”active”‘; } ?> >
    <?php } ?>
    <span class=”glyphicon glyphicon-chevron-left”></span>
    <span class=”glyphicon glyphicon-chevron-right”></span>
    <div class=”enigma_slider_shadow”></div>
    </div><!– /.carousel –>

    [Moderator note: code fixed. Please wrap code in the backtick character or use the code button.]

    • This reply was modified 8 years, 2 months ago by bdbrown.

    Have you changed front-page.php code ?

    Thread Starter trippindian

    (@trippindian)

    No I didn’t change front-page.php.

    Hello,

    I can see your site is back ?

    Is there anything ?

    Thread Starter trippindian

    (@trippindian)

    Hi, I restored my site from a backup point. I am still looking for a solution. I want to stop the slider’s animation

    Hello,

    How many images in your slider?

    Thread Starter trippindian

    (@trippindian)

    Currently I have 3 images. I just want one image in my slider and there shouldnt be any animation.

    Go to Dashboard -> Appearance -> Customize -> Theme Option -> Theme Slider Option.
    Here You will show Slider image one, Slider image two, Slider image three options. For Removing slider image clicks on Remove and save the changes.

    After above changes tell me that you got one image in your slider or not?

    Thread Starter trippindian

    (@trippindian)

    Yes i have removed 2 images now my slider has only one image but the animation is on so it keeps on moving. I want it to stay at one image.

    Open your enigma theme folder then open home-slideshow.php. In this file on line no 3 see the code below-

    <div id="myCarousel" class="carousel slide" data-ride="carousel">

    Replace this line by below line code –

    <div id="myCarousel" class="carousel slide" data-ride="carousel" data-interval="false">

    and save your file.

    Thanks.

    Thread Starter trippindian

    (@trippindian)

    Hi thanks a lot this worked. Is there anyway so that the slider shifts between to images only?

    Also can i remove the slider arrows on mobile/tablet as well as Laptop ?

    Thanks a lot guys ??

    • This reply was modified 8 years, 2 months ago by trippindian.
    • This reply was modified 8 years, 2 months ago by trippindian.

    We don’t understand what you mean by slider shifts between to images only. Please give a screenshot if any for this.

    and for your second issue –

    use this CSS –

    @media(max-width:1050px){
    .carousel-control.left,
    .carousel-control.right{
        display: none !important;
    }
    }
Viewing 15 replies - 1 through 15 (of 17 total)
  • The topic ‘Slider Issues and side bar Widgets’ is closed to new replies.