Kiran

Forum Replies Created

Viewing 15 posts - 4,606 through 4,620 (of 6,022 total)
  • Author
    Posts

  • Kiran
    Moderator
    Post count: 7069

    Hi Lauren,

    We have updated the fix. https://github.com/GeoDirectory/geodirectory/commit/0cfe2ea347f4f13335234827f081ebcde3e0398b
    Thanks for spotting.

    Kiran

    in reply to: Home Link #402674

    Kiran
    Moderator
    Post count: 7069

    Thanks for letting us know 🙂

    in reply to: Home Link #402655

    Kiran
    Moderator
    Post count: 7069

    Hello,

    This is because you have chosen “Current location page (ex: mysite.com/location/glasgow/)” at GeoDirectory > MultiLocations > Location Settings > Home page should go to.
    If you have chosen to set home page to current location then it uses current location url as a home page link.

    Let us know.

    Thanks,
    Kiran

    in reply to: related listings last on mobile #402624

    Kiran
    Moderator
    Post count: 7069

    Hi Peter,

    Now option added in related listing widget to sort nearest listings. It will be available in next release.
    If you want to fix right now on your site then update this patch https://github.com/GeoDirectory/geodirectory/pull/450/commits/80f2ec17be163edce3bd7a45c117622911cb62b7

    Kiran

    in reply to: Home Link #402616

    Kiran
    Moderator
    Post count: 7069

    Hi Josh,

    I have done some debugging and now seems problem has been fixed.
    I have done:
    – Run GeoDirectory > GD Tools > GD pages check & GeoDirectory > GD Tools > Clear all GD version numbers
    – Re-saved GeoDirectory > Permalinks > GEODIRECTORY PAGES
    – Re-saved Settings > Permalinks
    – Cleared cache (site & browser)

    and it fixed the problem.

    Please check and confirm from your side.

    Thanks,
    Kiran

    in reply to: Home Link #402509

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: PHP Fatal error #402503

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: PHP Fatal error #402488

    Kiran
    Moderator
    Post count: 7069

    Hi Matthew,

    Not sure why column not added to wp_geodir_invoice table. Normally it adds column to table during plugin update process.

    Anyway the problem has been fixed, please check and let us know.

    Thanks,
    Kiran

    in reply to: Google search displays "Location" in tile instead of #402481

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Errorlog #402479

    Kiran
    Moderator
    Post count: 7069

    Hi Wilfred,

    I have fixed problem that showing PHP warning message within GeoDirectory plugin.

    Kiran

    in reply to: Home Link #402456

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Home Link #402442

    Kiran
    Moderator
    Post count: 7069

    Thanks, now i have full admin access.

    I have checked and found the site using old version of GeoDirectory & GeoDirectory Plugins.
    Please update those plugins, so i can investigate what causing problem in home link.

    Kiran

    in reply to: Home Link #402440

    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.
    in reply to: Review Rating Manager 1.4.0 #402439

    Kiran
    Moderator
    Post count: 7069

    Hi Neil,

    We have recently added review field validation. The plugin “TinyMCE Comment Field” breaks the review field validation after rendering the textarea field to editor.

    Please ask the plugin author about this conflict OR add following code snippet to disable “TinyMCE Comment Field” for GeoDirectory post types.

    
    
    // Disable TinyMCE Comment Field for GD post types to fix comment validation.
    function _gd_custom_fix_tinymce_comment_field( $return ) {
        global $post;
        
        if ( !empty( $post->post_type ) ) {
            if ( ( geodir_is_page( 'detail' ) || geodir_is_page( 'preview' ) ) && in_array( $post->post_type, geodir_get_posttypes() ) ) {
                $return = false;
            }
        }
        return $return;
    }
    add_filter( 'user_can_richedit', '_gd_custom_fix_tinymce_comment_field', 10, 1 );

    Let us know in case you get any feedback from plugin author.

    Kiran

    in reply to: Add text above Log In form #402437

    Kiran
    Moderator
    Post count: 7069

    Hi Lydia,

    If you want separate custom text above Sign In & Sign Up form then use following code snippet.

    
    
    // Custom text on GD Sign Up form
    function _gd_custom_text_on_signup_form( $value, $option ) {
        $value = __( 'If you would like to become a member and add a listing, you must first register using Sign Up Now.', 'your-text-domain' );
        
        return $value;
    }
    add_filter( 'pre_option_ptthemes_reg_page_content', '_gd_custom_text_on_signup_form', 10, 2 );
    
    // Custom text on GD Sign In form
    function _gd_custom_text_on_signin_form( $value, $option ) {
        $value = __( 'If you already have an account, please Sign In.', 'your-text-domain' );
        
        return $value;
    }
    add_filter( 'pre_option_ptthemes_logoin_page_content', '_gd_custom_text_on_signin_form', 10, 2 );

    If you want to add custom text on page top then use following code snippet.

    
    
    function _gd_custom_text_on_signin_signup_page() {
        echo __( 'If you already have an account, please Sign In. If you would like to become a member and add a listing, you must first register using Sign Up Now.', 'your-text-domain' );
    }
    add_action( 'geodir_signup_forms', '_gd_custom_text_on_signin_signup_page', 9 );

    Add any one of snippet to your child theme functions.php.

    Let us know.

    Thanks,
    Kiran

Viewing 15 posts - 4,606 through 4,620 (of 6,022 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount