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

    Hi Enfold Team,

    I would like to create a masonry gallery like the one shown here… http://kriesi.at/themes/enfold-minimal-portfolio/portfolio/

    When I open the gallery to modify it on my site, 1) not only will it not allow me to add media, but 2) I can’t figure out how to sort the photos manually and 3) I can’t figure out how to use different size images like shown, which I want to choose (not done randomly).

    Possible?

    Please help.

    • This topic was modified 7 years, 4 months ago by allyson3. Reason: Forgot to add link
    #732854

    Hey allyson3!

    That is a portfolio based grid, that generates with the custom post type portfolio.

    Will that work for you?

    Cheers!
    Basilis

    #732861

    Hi Basilis,

    1) Some of the photos in my example take up 2 columns (your example only uses a single column). How do you do that and can I select which ones show up that way?

    2) I’d also like to select the images and put them in a specific order. Is that possible?

    3) And if I have to use columns instead (I’m assuming your example uses a column or grid layout), how can I reduce the spacing between the images/columns/grids?

    Thanks so much!

    #734401

    Hi,

    1.) There’s no option for that, it will be based on the size of your image and Columns must be set to Automatic, based on screen width. And Size Settings to Perfect Automatic Masonry

    2.) Yes, that is possible, edit Masonry Gallery and click on Add/Edit Gallery button then drag and drop images in the order that you want.

    3.) It doesn’t matter if you are using column or grid layout to wrap it, you just edit the Masonry Gallery and find Gap between elements just change the large gap to 1px gap.

    Hope this helps :)

    Best regards,
    Nikko

    #739799

    Hi Nikko,

    When I open the Masonry Gallery cell, click on the Add/Edit Gallery button and then click on the Edit Gallery link on the left, it comes up blank with no photos in the gallery.

    And yes, I have already added my desired photos to the gallery, and then saved my work.

    What am I doing wrong?

    #740030

    Two more questions…

    1) How do I remove the last part of this tagline after my name?
    © Copyright – Allyson Williams Design – Enfold WordPress Theme by Kriesi

    2) How can I remove “portfolio-item” from this link (and all other portfolio items)?

    #741588

    Hi!

    Thank you for using Enfold.

    1.) Please add the [nolink] tag in the copyright field.

    2.) Add the following filter in the functions.php file then go to the Settings > Permalinks panel then click the “Save” button.

    add_filter( 'post_type_link', 'ava_remove_custom_slug', 9999, 3 );
    function ava_remove_custom_slug( $post_link, $post, $leavename ) {
        if ( 'portfolio' != $post->post_type || 'publish' != $post->post_status ) {
            return $post_link;
        }
    
        $post_link = str_replace( '/' . $post->post_type . '/', '/', $post_link );
    
        return $post_link;
    }

    Cheers!
    Ismael

    #741979

    Thanks Ismael.

    Can you also help me with the other questions about the masonry gallery?

    Or is there a way to add space between elements in a gallery? Because I didn’t get an answer, I ended up figuring out how to make the gallery work, but I want space between. (see below)

    #743608

    Hi!

    The space between the masonry element can be set from the element options “Gap between elements”.

    Regards,
    Vinay

    #743650

    Thanks Vinay,

    I gave up using the Masonry Gallery due to the issue listed above. I’ve got you on another thread regarding the Portfolio Gallery.

    #743712

    Hi,

    You can add the gap between masonry thumbnails in the masonry options. However since you have chosen alternate method we will close this ticket and we will reach out to you on the other ticket.

    Best regards,
    Vinay

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Masonry Gallery Order and Sizing’ is closed to new replies.