Viewing 18 posts - 1 through 18 (of 18 total)
  • Author
    Posts
  • #779678

    Hello, on my main website and domain, I updated to Enfold Version 4.0.5 (running WordPress 4.7.3) and since then, I have been experiencing different problems.

    1) Masonry Gallery doesn’t show most of the times, sometimes you can see only half of the picture and you’re not able to click on them.

    2) Animated Numbers doesn’t work.

    3) Social Network icons doesn’t show.

    I have other subdomains that I haven’t updated the Enfold version, and they are working fine.

    I have cleaned my cache and it shows the images but with different orders, or half the image, and after refreshing a couple of times the web page, the above elements are gone again.

    Please advise.

    Thank you.

    #779783

    Hey josecamejo,

    Both your animated numbers and social icons are showing on my end, not sure about the masonry gallery though, we would need access to the backend to have a look at that. Could you post admin login details in private please?

    Best regards,
    Rikard

    #779935

    I’ve had trouble too with the Masonry Gallery after updatin to the latest version. Both on desktop and mobile it only shows one image if not none. I’ve tried deactivating the plugins, but none of them is causing the trouble. Nor is my custom code.

    If I’m logged in it works fine (on desktop at least).

    • This reply was modified 7 years, 7 months ago by m9491.
    #780268

    Hi Rikard,
    Thank you for your response.
    Some how, everything is working fine again.
    Regards.

    #780300

    Hi @josecamejo,

    Great, you were probably getting cached results. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #780408

    Hi,
    Should I create a new topic with my problem? It’s still there.

    Best regards,
    M

    #780972

    Hi m9491,

    There is a problem with the Masonry Gallery in the current version of the theme, we are working on a fix for it and it should be available in the next release. We’re sorry for the problems, please bare with us until we have a new release available.

    Best regards,
    Rikard

    #781088

    Hi Rikard,

    Thank you for the information. I will wait for the next update.

    /M

    #784890

    Hello,

    I have the same issue with Masonry Gallery. My enfold version is 4.0.5 and wordpress version is 4.7.3.

    The issue is like this: I added both Blog Posts and Masonry Gallery on my menu page Products as you will see following the link of https://www.bbmhandle.com/products. But when I click the page index at the bottom of the Blog Posts and go to the new page, like this https://www.bbmhandle.com/products/page/2, the Masonry Gallery does not showing as expected.

    Could anybody help me how to fix this? I have tried to deactived all of my plugins and it still did not work.

    Thank you in advance.

    #785331

    Hi alex799,

    Can you give us temporary admin access to your website in the private content box below, so that we can have a closer look.

    Best regards,
    Victoria

    #785366

    Thanks Victoria, please check the temporary admin access to my website in the private content box.

    Please note that the server is SHUTDOWN for maintenance at the moment, may be it will take a few hours to rerunning again.

    Best Regards,

    Alex

    #786137

    Hi,

    Thank you for the info.

    Please add this filter in the functions.php file.

    // masonry element query
    add_filter( 'avia_masonry_entries_query', 'avia_masonry_entries_query_mod', 10, 2);
    function avia_masonry_entries_query_mod( $query, $params ) {;
    	if ( !is_front_page() && is_page(3665) ) {
    		$query['paged'] = 1;
    	}
    	return $query;
    }

    Best regards,
    Ismael

    #786262

    Thanks Ismael, I added that filter, and now the main menu page of “Products” is OK with page index.

    But the sub menu of “Products”, like “Natural wooden handles”, sitll have the same issue, how can I fix that?

    Regards

    Alex

    #786834

    Hi,

    Get the id of the pages with the masonry element and put it as an array in the is_page function.

    is_page(array(3665, 3667))
    

    Best regards,
    Ismael

    #786872

    Hi Ismael,

    I put all the ID of the pages in the is_page function, and it seems still do not work,

    add_filter( 'avia_masonry_entries_query', 'avia_masonry_entries_query_mod', 10, 2);
    function avia_masonry_entries_query_mod( $query, $params ) {;
    	if ( !is_front_page() && is_page(3665,3667,3671,3669,4198) ) {
    		$query['paged'] = 1;
    	}
    	return $query;
    }

    Is there any think I was wrong?

    Thanks.

    #787521

    Hi,

    You have to put the id inside an array.

    if ( !is_front_page() && is_page( array(3665,3667,3671,3669,4198)) ) {
    

    Best regards,
    Ismael

    #787552

    Hi Ismael, sorry I missed the detail.

    All is alright now. Thank you so much for your help.

    Best Regards
    Alex

    #787641

    Hi Alex,

    Great, glad you got it working. Please let us know if you should need any further help on the topic.

    Best regards,
    Rikard

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