Naveen Giri

Forum Replies Created

Viewing 15 posts - 16 through 30 (of 1,165 total)
  • Author
    Posts
  • in reply to: empty tabs being displayed #543216

    Naveen Giri
    Moderator
    Post count: 1559

    Thanks for the confirmation. have a great day 🙂

    in reply to: GD Post Badge: image doesn't works #543180

    Naveen Giri
    Moderator
    Post count: 1559
    This reply has been marked as private.
    in reply to: empty tabs being displayed #543179

    Naveen Giri
    Moderator
    Post count: 1559

    Hi Victor,

    The dropdown issue has been already fixed. I have updated the GD to the latest 2.0.0.90, you can check it now on mobile.

    about the other issue related to field title.
    seems you have missed the . while pasting the CSS snippet.
    I have added the following CSS. you can check now the field title and audio file name is hidden.

    
    .geodir-field-addsoundtrack .geodir_post_meta_title{
      display:none;
    }
    .geodir-field-addsoundtrack .geodir-custom-field-file .geodir-cf-file-name{
      display:none;
    }
    

    Regards
    Naveen

    in reply to: Hide caption if blank #543178

    Naveen Giri
    Moderator
    Post count: 1559

    Sure, I have created an issue for it.
    https://github.com/AyeCode/geodirectory/issues/1177

    we will update you.

    in reply to: Deleting a review, but photos still show? #543106

    Naveen Giri
    Moderator
    Post count: 1559

    Hi John,

    I notice the issue.
    I am on it, update you soon.

    Thanks for your patience
    Naveen

    in reply to: Free and Premium Listings (Badge issues) #543105

    Naveen Giri
    Moderator
    Post count: 1559

    Hi gaz36f,

    We have already added a patch for this issue in GD.
    It will be up in the upcoming version.

    I have added the same on your staging site, you can check.
    https://github.com/AyeCode/geodirectory/commit/b966c394b69fc4a6d327390ec547a3f6383b9cbf

    Regards
    Naveen

    in reply to: Hide caption if blank #543078

    Naveen Giri
    Moderator
    Post count: 1559

    Hi Josh,

    there is no way, for now, to hide that when the image caption is blank.
    you can hide the caption container completely using the following CSS.

    
    .lity-opened span.lity-caption-desc{
      display:none;
    }
    

    the text that we show there is an alt attribute of the image.
    SEO wise the alt attribute should not be empty, so we loading the image name.

    Regards
    Naveen

    in reply to: Free and Premium Listings (Badge issues) #543041

    Naveen Giri
    Moderator
    Post count: 1559

    Thanks for the detail.
    I am looking into it, update you soon.

    in reply to: Possible to dequeue scripts? #543040

    Naveen Giri
    Moderator
    Post count: 1559

    have a great day. 🙂

    in reply to: something went wrong advanced search bar #543036

    Naveen Giri
    Moderator
    Post count: 1559

    Awesome, have a Great day 🙂

    in reply to: Delete All Listings in Specific Category #543035

    Naveen Giri
    Moderator
    Post count: 1559

    Hi, serendipity

    before proceeding just to be confirmed.
    do you want me to remove all the pending places that are only in the “brewery” category?

    in reply to: empty tabs being displayed #543002

    Naveen Giri
    Moderator
    Post count: 1559

    Hi Victor,

    the field title can be hide with following css

    
    
    
    .geodir-field-addsoundtrack .geodir_post_meta_title{
      display:none;
    }
    

    I will check the mobile issue and get back to you.

    in reply to: Delete All Listings in Specific Category #542890

    Naveen Giri
    Moderator
    Post count: 1559

    Hi, I will proceed and let you know.

    Regards
    Naveen

    in reply to: Possible to dequeue scripts? #542841

    Naveen Giri
    Moderator
    Post count: 1559

    Hi Berto,

    Please try this code.

     
    /**
     * Dequeue core scripts & styles on non GD pages.
     *
     * Note: This may cause JavaScript errors when page contains widget/shortcode from GD.
     */
    function gd_snippet_dequeue_scripts() {
    	if ( class_exists( 'GeoDir_Frontend_Scripts' ) && ! geodir_is_geodir_page() && !is_front_page() ) {
    		remove_action('wp_footer', array( 'GeoDir_Frontend_Scripts', 'js_location_functions' ));
    		remove_action( 'wp_enqueue_scripts', array( 'GeoDir_Frontend_Scripts', 'load_scripts' ) );
    		remove_action( 'wp_print_scripts', array( 'GeoDir_Frontend_Scripts', 'localize_printed_scripts' ), 5 );
    		remove_action( 'wp_print_footer_scripts', array( 'GeoDir_Frontend_Scripts', 'localize_printed_scripts' ), 5 );
    	}
    }
    add_action( 'wp', 'gd_snippet_dequeue_scripts', 100 );
    

    Thanks

    in reply to: empty tabs being displayed #542740

    Naveen Giri
    Moderator
    Post count: 1559
    This reply has been marked as private.
Viewing 15 posts - 16 through 30 (of 1,165 total)