Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #337687

    Hey!

    1. I am beginning to create a portfolio grid. Basic and simple with light box only to go straight to the point.
    I’m very disappointed though as far as “sort options” are concerned. I mean ok, you can choose to show videos only. But then once you’ve launch the first one which opens in a lightbox, and that you click on the right arrow to see the second one, anything can follow (a photo or whatever is next to this video on the “general grid” -> not the “sorted one” unfortunately… See what I mean ? Is there a css or php magic trick to fix this? I don’t see the point to “sort options” if then after anything comes in the light box without any consistency when you switch to the following image/video… I REALLY do hope you can give me a magic solution for this!

    2. When I launch a video and want to go the next slide, the same video slide appears again, as if I had put it twice in the grid… ??

    See private link below.

    Thanks for your help!
    Kind regards,
    Marie

    #340411

    Hi Marie!

    1. I’m afraid that’s currently a limitation of the theme, feel free to request an improvement here.

    2. Add this to your theme / child theme functions.php:

    function change_portfolio_title_link($title_link, $entry) {
        $title_link = $entry->permalink;
        return $title_link;
    }
    add_filter('avf_portfolio_title_link', 'change_portfolio_title_link', 10, 2);

    Best regards,
    Josue

    #340481

    Hi Josue!
    Thank you!

    1. Done… the best way I could with my english… hope the request is “understandable”… :)

    2. Your code fixed it!

    Thanks again.
    Best regards,

    Marie

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Portfolio grid & light box’ is closed to new replies.