Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #1438942

    Hi there,

    Masonry item is not displaying the covers correctly, the items are just plain white.

    I would like to show a different cover for every item of the masonry (8 in total).

    Could you please take a look at it?

    Website below.

    Thanks a lot,
    Simone

    #1439027

    Hey SimonePols,
    Did you add featured images to each portfolio item? If you did perhaps a plugin is preventing them from being included, try disabling all of your plugins and then reload the page. If that resolves the issue, reactivate each one individually and reload the page until you find the conflict. Otherwise include a admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    #1439198

    Thank you Mike,

    Mmmm I am not sure where to add the featured images, as it is usually on the right side in the bottom but it is not there this time.

    I created a temporary login, please see below.

    Thanks a lot
    Simone

    #1439232

    Hi,
    When I checked it was collapsed, but it’s there and there is no image added:
    Enfold_Support_5262.jpeg
    So try adding an images and I imagine that they will show on the frontend.
    If you don’t see in with your login try ensuring that it is enabledin the WordPress Block Editor options:
    Enfold_Support_5264.jpeg
    or try using the login you posted for us.

    Best regards,
    Mike

    #1439613

    I made it, thank you!

    How to change the order now? I want them to be week 1, week2, week 3 in order, but they are displaying randomly.

    Thanks a lot
    Simone

    #1439624

    Hi,

    Thank you for the update.

    To adjust the order of the portfolio items, please follow the steps below:

    1.) Edit the Masonry element and set Content > Sorting > Order settings to Page Order.

    2.) Add this code to the functions.php file to enable the Order field for the portfolio items.

    /* Change portfolio post type settings */
    function avf_portfolio_cpt_args_mod($args) {
    	$args['supports'][] = 'page-attributes';
    	return $args;
    }
    add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');
    

    3.) You can then manually adjust the order of the items in the grid by modifying the Order field of each portfolio items:

    // https://wordpress.com/support/pages/page-attributes/#access-page-attributes

    Best regards,
    Ismael

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