Viewing 30 posts - 1 through 30 (of 39 total)
  • Author
    Posts
  • #1344067

    Post Slider elements no longer displaying after upgrading WordPress to 5.9.1 and Enfold to 4.9

    #1344069

    The Magazine element no longer displays either

    #1344070

    Blog Posts Element, Grid Layout doesn’t work either

    #1344071

    It appears that the fonts in the LayerSlider have also stopped working.

    #1344072

    Reverted to WP 5.8.3 and elements work again. Fonts in LayerSlider still do not work.

    #1344174

    Anyone?

    #1344220

    Hi,

    Please send us a temporary WordPress admin login and login URL so that we can have a closer look. You can post the details in the Private Content section of your reply.

    Best regards,
    Rikard

    #1344986
    This reply has been marked as private.
    #1345023

    Hi,

    Thanks for that. Could you send the WordPress login URL as well please? Also please let us know on which page we can see the elements shown in your screenshot.

    Best regards,
    Rikard

    #1345027
    This reply has been marked as private.
    #1345058

    Hi,

    Thanks for that. I see that the Post Slider is not displaying on your site, but I can’t reproduce the problem on a test installation. Are you overriding anything in your child theme which might affect that element maybe? You can check if the problem is coming from your child if you activate the parent theme. If it starts working after that, then the problem is coming from the child. If you need further help, then please include FTP login details in private as well.

    Best regards,
    Rikard

    #1345764

    The problem occurred when I updated both Enfold and WordPress to their latest versions, on the production site (WP5.8.3, Enfold 4.9), it is working properly.

    I have exhausted the troubleshooting steps that I know how to do. With WordPress and Enfold upgraded to the latest versions, about half of the AVIA design elements I’ve tried are non-functional.

    #1345787

    Hi,

    Thank you for the update.

    Did you modify the postslider.php file or any other shortcode files in your child theme? Please make sure that those files are up to date and are using the latest code from the parent theme.

    Best regards,
    Ismael

    #1345790

    No, none.

    #1345792

    I sent FTP credentials, you can see the child theme and the very minimal modifications there – two lines in functions.php and a style.css override.

    #1345863

    Hi,

    The SFTP account above is invalid. We tried the correct spelling of the username but it still didn’t work. Please check the info carefully so that we can check the files. You should also update to version 4.9.1 as soon as possible.

    Best regards,
    Ismael

    #1345928

    Sorry about the misspelling. I can’t even get ei or ie in the right order in English.

    The correct username is attached. The hosting system prepended the environment name onto the SFTP account.

    I’ve updated the core, all the plugins I could, and Enfold. Those elements are still not working, and the titles in the layerslider are also displaying in the wrong font.

    #1346152

    Hi,
    Thank you for your patience and the link to your staging site, I tested disabling all of your plugins and then your posts showed, please try this and then enable your plugins one at a time until the error occurs again and then you will know which plugin is causing the conflict.
    Please see the screenshot in the Private Content area.

    Best regards,
    Mike

    #1346478

    OK, the blog posts disappeared when I activated Events Calendar and Events Calendar Pro.
    Obviously these are critical.

    #1346479

    Whether there are any events displayed on the page or not, if Events Calendar is activated, the post sliders disappear.

    #1346737

    Hi,
    Thanks for your feedback, but I have checked with the Events Calendar activated and Events Calendar Pro along with your woocommerce plugins and your six AIOSEO plugins and the post slider does show, so this points to one of the 12 “Give” plugins causing the conflict, please check your site and try enabling each of the 12 “Give” plugins individually to determine the conflict.

    Best regards,
    Mike

    #1347804

    It’s more complicated than that, even:

    All plugins deactivated: works
    All plugins deactivated PLUS:
    GiveWP Core only: works
    Events Calendar Pro only: works
    WooCommerce only: works
    Give Core + Events Calendar Pro: works
    Events Calendar Pro + WooCommerce Core: works
    WooCommerce Core + GiveWP Core: works
    Give Core + Events Calendar Pro + WooCommerce core: doesn’t work

    I have left the staging site in the last state. No other plugins aside from GiveWP Core, Events Calendar and Events Calendar Pro, and WooCommerce core are active. At least the post slider on the home page doesn’t work.

    This appears in the console:
    GET https://staging.foodisfreewashington.org/wp-content/uploads/avia_posts_css/unset [HTTP/2 404 Not Found 463ms]

    Promised response from onMessage listener went out of scope bundle.js:1:5263
    r moz-extension://c27e665e-97f4-4eca-9a10-de254cc5b722/vendors/bundle.js:1
    (Async: Async)
    r moz-extension://c27e665e-97f4-4eca-9a10-de254cc5b722/vendors/bundle.js:1
    r moz-extension://c27e665e-97f4-4eca-9a10-de254cc5b722/vendors/bundle.js:1
    p moz-extension://c27e665e-97f4-4eca-9a10-de254cc5b722/content/bundle.js:1
    <anonymous> moz-extension://c27e665e-97f4-4eca-9a10-de254cc5b722/content/bundle.js:1
    93 moz-extension://c27e665e-97f4-4eca-9a10-de254cc5b722/content/bundle.js:1
    s moz-extension://c27e665e-97f4-4eca-9a10-de254cc5b722/content/bundle.js:1
    n moz-extension://c27e665e-97f4-4eca-9a10-de254cc5b722/content/bundle.js:1
    <anonymous> moz-extension://c27e665e-97f4-4eca-9a10-de254cc5b722/content/bundle.js:1
    <anonymous> moz-extension://c27e665e-97f4-4eca-9a10-de254cc5b722/content/bundle.js:1

    #1347805

    hm – no woocommerce no Events on that – but i got this too ! on Enfold 4.9.2.1 the shortcode is seen on debug mode – but on DOM there is no postslider.

    i checke what could have influenced the issue – because on another installation – it is correct.
    For a memenber here i checked the snippet to show first sticky posts then the rest. this snippet:

    function sticky_posts_first($query, $params) {
    
      $include = array();
      $sticky = get_option( 'sticky_posts' );
    
      $args = array(
      'post__not_in' => $sticky,
      'orderby' => 'modified',   // here you can influence the orderby option of the non sticky post to your needs 
      'order'	=> 'desc',    //  the order of the non sticky posts
      'numberposts' => -1  	 // -1 for all - that number is for the non sticky posts  
      );
      $posts = get_posts( $args );
    
      foreach($posts as $post) {
      $include[] = $post->ID;
      }
      if ( !is_sticky() ) {
        $include = array_merge($sticky, $include);
      };
    
      $query['post__in'] = $include;
      $query['orderby'] = 'post__in';
    
    return $query;
    }
    add_filter('avia_post_slide_query','sticky_posts_first', 10, 2);

    seems to hamper the postslider shortcode. Because when i delete it from my child-theme functions.php – everything is there again.

    #1347808

    Thank you Guenni, but I do not understand if you are making a suggestion or only observations.

    #1347810

    both – on my webers-testseite.de there is too : postsliders ( of portfolios ) are gone – the are even not in the DOM.
    On another 4.9.2.1 installation – the postsliders are there. so i started to look where is the difference. As mentioned above this testpage is for looking if something could be managed or not. One participant here likes to have first on a blog posts alb to have on top the sticky posts – and then the other posts.
    If i erase the code above – the postsliders are there again. So my guess was that the snippet above is not only working within the blog post albs in the query, but also in the postslider.

    #1347812

    Hi,
    Thanks for the feedback, the console errors you are getting for moz-extension:// are for a Firefox extension in your browser, I don’t have any extensions in FireFox so I don’t see these errors.
    Please note that Events Calendar Pro + WooCommerce core does work, so the conflict comes when GiveWP + Events Calendar + WooCommerce are all used at the same time.
    Unfortunately, there are no useful errors to point to the conflict and we don’t have any experience with the plugin GiveWP to know why it would have a conflict even when the GiveWP is not used on the page, I would suggest asking GiveWP if they know of any conflicts with Events Calendar and WooCommerce.

    Best regards,
    Mike

    #1347820

    then offtopic Mike : why does the snippet above hamper building a postslider – it works great on blog post alb with grid style. But adding that snippet all postsliders ( even the portfolio sliders are gone )

    #1347822

    Mike, it is not only GiveWP.
    GiveWP Core + Events Calendar Pro: works
    Events Calendar Pro + WooCommerce Core: works
    WooCommerce Core + GiveWP Core: works

    Only when all three are activated is there a problem, and the problem only affects Enfold. All the plugins work fine with each other on multiple sites we operate every day.

    #1347823

    Hi,
    Sorry Guenni007, I don’t know why your snippet doesn’t work with the postslider, there is an open Github issue report about sticky posts that the Dev Team is looking at, I’m not sure if you can see it, but it’s above what I know.
    I added your report about this to them, if they comment I will add it here for you.

    Best regards,
    Mike

    #1347824

    Here is the other event that is clearly not a Firefox extension: GET https://staging.foodisfreewashington.org/wp-content/uploads/avia_posts_css/unset [HTTP/2 404 Not Found 463ms]

Viewing 30 posts - 1 through 30 (of 39 total)
  • The topic ‘Blog posts disappeared’ is closed to new replies.