-
AuthorPosts
-
April 2, 2024 at 1:26 am #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,
SimoneApril 2, 2024 at 11:17 pm #1439027Hey 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,
MikeApril 4, 2024 at 1:46 pm #1439198Thank 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
SimoneApril 4, 2024 at 9:18 pm #1439232Hi,
When I checked it was collapsed, but it’s there and there is no image added:
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:
or try using the login you posted for us.Best regards,
MikeApril 9, 2024 at 9:20 pm #1439613I 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
SimoneApril 10, 2024 at 7:52 am #1439624Hi,
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 -
AuthorPosts
- You must be logged in to reply to this topic.