GeoDirectory v2 design customization video inserted in places images

This topic contains 10 replies, has 3 voices, and was last updated by  Naveen Giri 4 years, 1 month ago.

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket
  • Author
    Posts
  • #536855

    P O
    Expired Member
    Post count: 501

    1- I go to a place, click in photos under tabs, click an image.
    2- Lightbox opens full screen. (NOT CORRECT)
    3- I click X and the centered Lightbox is there. (Correct)
    4- Click arrows to navigate all images.
    5- A video shows up. (GeoDirectory v2 design customization with Gutenberg, Elementor, Beaver Builder, Divi and more)

    So everything is incorrect. I tried in different sites and the problem is in all of them.

    1- How to fix Lightbox to have just 1 of them.
    2- How to remove your video from the place photos.

    Thanks.

    #536856

    P O
    Expired Member
    Post count: 501
    This reply has been marked as private.
    #536863

    Guust
    Moderator
    Post count: 29970

    And are you using Enfold on all those sites?
    There seems to be a conflict with the way Enfold does its CSS.
    Please provide WP admin and FTP access please and we will investigate.
    Thanks

    #536864

    P O
    Expired Member
    Post count: 501
    This reply has been marked as private.
    #536884

    Naveen Giri
    Moderator
    Post count: 1559
    This reply has been marked as private.
    #536900

    P O
    Expired Member
    Post count: 501

    How can I disable your Lightbox?

    Yours have no style, full screen and not equal to design in the site.
    Enfold is adapted to design, structure and usability.

    Thank you.

    #537050

    Naveen Giri
    Moderator
    Post count: 1559

    Hi PO,

    You can use the following code to disable the GD lightbox.

    
    
    
    add_action( 'wp_footer', function () { ?>
    <script>
    	jQuery('.geodir-gallery,.geodir-images li').each(function(){
    		jQuery(this).find('a').removeAttr('data-lity');
    	});
    	/* escribe aquí tu código JavaScript */
    
    </script>
    <?php } );
    

    Thanks

    #537051

    P O
    Expired Member
    Post count: 501

    Thank you, that worked.

    Just one extra thing. How to disable the magnifying glass icon on hover for the thumbnails in the detail page.

    When I hover 2 icons comes up, yours and enfold. How to disable yours.

    Thanks.

    #537052

    Naveen Giri
    Moderator
    Post count: 1559

    You can try instead this code. It will work for both.

    
    add_action( 'wp_footer', function () { ?>
    <script>
    	jQuery('.geodir-gallery,.geodir-images li').each(function(){
    		jQuery(this).find('a').removeAttr('data-lity'); 
                    jQuery(this).find('.fas,.fa-search-plus').remove();
    	});
    	/* escribe aquí tu código JavaScript */
    
    </script>
    <?php } );
    

    Thanks

    #537056

    P O
    Expired Member
    Post count: 501

    Thank you, that works correctly.

    #537058

    Naveen Giri
    Moderator
    Post count: 1559

    Thanks for confirming. have a great day.

    Stay safe from Covid-19.

Viewing 11 posts - 1 through 11 (of 11 total)

We have moved to a support ticketing system and our forums are now closed.

Open Support Ticket