• Resolved zienwijzer

    (@zienwijzer)


    How can I just show 3 blogs on the homepage so the blog carrousel does not change anymore.

    The page I need help with: [log in to see the link]

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hii zienwijzer,

    Go to enigma theme directory -> js folder -> carouFredSel-6.2.1 folder -> open caroufredsel-element.js file -> see line no. 13 –

    circular: true,

    replace it with below code –

    circular: false,

    now see line no. 26 –

    play: true

    replace it with below code and save the file –

    play: false

    Thanks.

    Hello user,

    Did above solution worked for you.?

    Thanks

    Thread Starter zienwijzer

    (@zienwijzer)

    Yes it works. Thanks. Only since I changed those codes I have another problem now. On a normal computer and samsung telephone my website doesn’t show anymore. Only on an iPad I can visit my website? 502 proxy error it says?

    @zienwijzer : Proxy error 502 is not coming due the the code given by my team mates. Its server error contact to you web-host.

    Hi I can’t find caroufredsel-element.js there is onlyjquery.carouFredSel-6.2.1.js

    Hii Piotrek,

    Go to theme directory and open the home-blog.php file here you can find js after line no. 105 –

    <script>
                     
    // jQuery CarouFredSel  For blog               
                    
    jQuery('#enigma_blog_section').wl_caroufredsel({
       width: '100%',
        responsive: true,
         scroll : {
        items : 1,
        duration : <?php echo $wl_theme_options['blog_speed'] ?>,
             timeoutDuration : 2000
        },
        circular: <?php if($wl_theme_options['autoplay']=='1') { ?> true <?php } else { ?> false <?php } ?>,
         direction: 'left',
          items: {
          height: 'variable',
          visible: {
               min: 1,
                max: 3
         },
                            
    },
           prev: '#port-prev',
           next: '#port-next',
           auto: {
               play: <?php if($wl_theme_options['autoplay']=='1') { ?> true <?php } else { ?> false <?php } ?>
             } 
     });
    </script>

    Thanks.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Stop blog carrousel on home page’ is closed to new replies.