Kiran

Forum Replies Created

Viewing 15 posts - 256 through 270 (of 6,022 total)
  • Author
    Posts
  • in reply to: jQuery conflict? #535779

    Kiran
    Moderator
    Post count: 7069

    Thanks for letting us know.

    Kiran


    Kiran
    Moderator
    Post count: 7069

    Hi Foster,

    – When searched with “patio” & with “bars” selected it shows results which contains “patio” in title OR content OR tag AND which has a category “bars”. This is because system finds “patio” as a tag as well, so it adds OR part for tag.
    In this case it shows 1692 matching results.
    – When searched with “patio bars” & without category selected it shows results which contains “patio” OR “bars” in title OR content. In this case system does not find “patio bars” in tag or category because it only uses whole keyword to search tag or category. In short there is no category or tag exists with “patio bars”.
    In this case it shows 9 matching results.
    – Similarly when searched with “bars” & without category selected it shows results which contains “bars” in title OR content OR “bars” in a category. This is because system finds “bars” as a category as well, so it adds OR part for category.
    In this case it shows 3350 matching results.

    Let us know.

    Thanks,
    Kiran

    in reply to: jQuery conflict? #535692

    Kiran
    Moderator
    Post count: 7069

    Hello macroclick,

    This is due to conflicts with Bootstrap JavaScript library between theme(or plugin) and UsersWP plugin.

    To fix this conflict i have changed one setting “Load JS” to “Core + Popper (default)” at Settings > AyeCode UI > Backend (wp-admin) > Load JS.

    Please check and let us know.

    Thanks,
    Kiran


    Kiran
    Moderator
    Post count: 7069
    This reply has been marked as private.

    Kiran
    Moderator
    Post count: 7069

    Hello lmj-temp,

    I have done some more testing on my test site.

    I have created two categories.
    – Added a parent category named “Category A” & uploaded image “category-a.png” & icon “category-i-a.png”
    – Added a child category named “Category A A” under “Category A” & uploaded image “category-a-a.png” & icon “category-i-a-a.png”
    – Exported those categories in csv
    – Re-imported csv
    – It worked as expected. There is no new attachment entry created in database or in folder.

    Check csv file in attachment.

    Let us know.

    Regards,
    Kiran

    in reply to: Map Showing Wrong Location #535614

    Kiran
    Moderator
    Post count: 7069

    Hi Matt,

    I checked and found some listings has wrong latitude & longitude values applied. This causes issue in setting base marker on the map, so map dragging & set on map option not working.

    To fix this problem:
    1) Via Import / Export
    – Export listings from GeoDirectory > Settings > Import / Export > Listings > Export
    – Assign correct latitude & longitude values for those listings
    – Re-import CSV

    2) Via manually
    – Set latitude & longitude values manually
    – Update
    – Once listing saved marker moving & map drag witll work for that listing.

    Let us know.

    Thanks,
    Kiran

    in reply to: Missing category #535590

    Kiran
    Moderator
    Post count: 7069

    Thanks for letting us know.

    Kiran

    in reply to: Hide Email After Downgrade #535588

    Kiran
    Moderator
    Post count: 7069

    Hello,

    This has been fixed and it will be in next release.

    Kiran

    in reply to: Fb Event Import #535587

    Kiran
    Moderator
    Post count: 7069

    Hi Olga,

    We have released Social Importer v2.0.1.6 with some fix, please update it to solve this issue on those sites.

    Thanks,
    Kiran

    in reply to: Missing category #535517

    Kiran
    Moderator
    Post count: 7069

    Hi memorex13,

    Please check and let us know.

    Thanks,
    Kiran


    Kiran
    Moderator
    Post count: 7069

    Hi Peter,

    This has been fixed and it will be in next release.

    Patch available at here in case you want to apply. https://github.com/AyeCode/geodirectory/commit/992a45898cf576f2e3aa11f4e3697d35775400e6

    Regards,
    Kiran

    in reply to: Customizing Confirmation Messages #535487

    Kiran
    Moderator
    Post count: 7069

    Hello Misty,

    Try following PHP snippet to customize post save confirmation messages.

    
    
    /**
     * Customize save post messages.
     */
    function gd_snippet_200317_save_post_message( $message, $post_data ) {
    	if ( empty( $post_data['post_parent'] ) && $post_data['post_status'] != 'publish' ) {
    		$post = new stdClass();
    		$post->ID = $post_data['ID'];
    		$link = GeoDir_Post_Data::get_preview_link( $post );
    	} else {
    		$link = get_permalink( $post_data['ID'] );
    	}
    
    	$post_type = get_post_type( $post_data['ID'] );
    
    	if ( ! empty( $post_data['post_parent'] ) ) {
    		// Update post
    		if ( $post_data['post_status'] == 'publish' ) {
    			// Published
    			if ( $post_type == 'gd_apartments' ) {
    				$message = wp_sprintf( __( 'Apartment update received, your changes are now live and can be viewed %shere%s.', 'geodirectory' ), "<a href='" . $link . "'>", "</a>" );
    			} elseif ( $post_type == 'gd_business' ) {
    				$message = wp_sprintf( __( 'Business update received, your changes are now live and can be viewed %shere%s.', 'geodirectory' ), "<a href='" . $link . "'>", "</a>" );
    			}
    		} else {
    			// Pending
    			if ( $post_type == 'gd_apartments' ) {
    				$message = __( 'Apartment update received, your changes may need to be reviewed before going live.', 'geodirectory' );
    			} elseif ( $post_type == 'gd_business' ) {
    				$message = __( 'Business update received, your changes may need to be reviewed before going live.', 'geodirectory' );
    			}
    		}
    	} else {
    		// New post
    		if ( $post_data['post_status'] == 'publish' ) {
    			// Published
    			if ( $post_type == 'gd_apartments' ) {
    				$message = wp_sprintf( __( 'Apartment listing received, your apartment listing is now live and can be viewed %shere%s.', 'geodirectory' ), "<a href='" . $link . "'>", "</a>" );
    			} elseif ( $post_type == 'gd_business' ) {
    				$message = wp_sprintf( __( 'Business listing received, your business listing is now live and can be viewed %shere%s.', 'geodirectory' ), "<a href='" . $link . "'>", "</a>" );
    			}
    		} else {
    			// Pending
    			if ( $post_type == 'gd_apartments' ) {
    				$message = wp_sprintf( __( 'Apartment listing received, your apartment listing may need to be reviewed before going live, you can preview it %shere%s.', 'geodirectory' ), "<a href='" . $link . "'>", "</a>" );
    			} elseif ( $post_type == 'gd_business' ) {
    				$message = wp_sprintf( __( 'Business listing received, your business listing may need to be reviewed before going live, you can preview it %shere%s.', 'geodirectory' ), "<a href='" . $link . "'>", "</a>" );
    			}
    		}
    	}
    
    	return $message;
    }
    add_filter( 'geodir_ajax_save_post_message', 'gd_snippet_200317_save_post_message', 20, 2 );

    Regards,
    Kiran


    Kiran
    Moderator
    Post count: 7069

    Hi jotomas,

    – Run tool from GeoDirectory > Status > Tools > DB Text Translation
    – I searched “Activitats” in WPML > String Translation
    – I see in results that “Activitats” have default language is English. I changed default language for those string to Catala
    – Translated Activitats in other languages
    – Issue solved

    Thanks,
    Kiran


    Kiran
    Moderator
    Post count: 7069

    Hi Peter,

    Do you have Pricing Manager plugin installed? If you have installed Pricing Manager then image limit is overwritten from package settings.

    Provide us a site link & admin credentials in a private reply to check there.

    Kiran


    Kiran
    Moderator
    Post count: 7069

    Hi jotomas,

    Please check and let us know.

    Kiran

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