Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #464369

    I have Full Width easy slider installed at the top of my homepage. When i edit the page and preview it the slider is there, but when I update the page and then go to view it the sllider has disappeared!
    What is going wrong? It used to work!
    The page can be seen here http://meetthemanufacturer.co.uk/ and currently I cannot see any slider on that page.

    I might point out that currently I only have one layer on the slider so it doesn’t slide – could that be affecting it?

    Thanks

    #464765

    Hey makeitbritish!

    Could you please provide us with a temporary admin login so that we can take a closer look? You can post the details in the Private Content section of your reply.

    Best regards,
    Rikard

    #465892

    Hi Rikard

    Log in details below.
    Thanks

    #466423

    Hi!

    Can you please try de-activating all active plugins and check if that helps?

    Cheers!
    Yigit

    #466578

    i tried that already and it did not work.
    I’ve installed the other layer slider now and that does work but you still can’t see the full width slider.
    Any more suggestions?

    #467340

    Any more thoughts on this problem or am i going to have to start the whole thing again with a different type of slider?
    This full-width easy slider worked on the site before, all I have done is changed the content in it, so I cannot fathom out what the problem could be and it is really bugging me!

    #468034

    Hi Kate!

    Sorry for the late reply! Can you please duplicate the page with slider and let us know so we can make tests on it?

    Regards,
    Yigit

    #468253

    I have created a duplicate page for you to test on and you can find it here http://meetthemanufacturer.co.uk/test-homepage/

    I have also tried loading a previous homepage template onto the homepage with the problem slider on it, and when i do this the old slider with different images and settings works. When i then try and edit this slider with new images/settings it stops working.

    #468524

    Hey!

    I deactivated the BWP minify plugin and it started working again. http://meetthemanufacturer.co.uk/test-homepage/

    Please deactivate the plugin while you’re working on the site. Activate it once you’re done. Add this in the functions.php file to exclude a few js and css files:

    add_filter('bwp_minify_style_ignore', 'exclude_my_css');
     
    function exclude_my_css($excluded)
    {
        $excluded = array('avia-custom', 'avia-layout', 'avia-js');
        return $excluded;
    }

    Regards,
    Ismael

    #468620

    Hi Ismael

    I still couldn’t get the slider to work as the plug in was already deactivated and it still wasn’t showing.
    I then added this code to the functions.php file and am now getting the following error and have lost the site completely –

    Parse error: syntax error, unexpected ‘function’ (T_FUNCTION) in /home/wwwmeett/public_html/wp-content/themes/enfold/functions.php on line 527

    How do i get it back?

    #469551

    Hey!

    you need to access your functions.php via ftp to delete the lines again. We recommend to use a child theme, instead of the parent functions.php.
    Try this code instead:

    add_filter('bwp_minify_style_ignore', 'exclude_my_css');
     
    function exclude_my_css($excluded)
    {
        $excluded = array('avia-custom, avia-layout');
        return $excluded;
    } 
    

    Best regards,
    Andy

Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.