Kiran
Forum Replies Created
-
AuthorPosts
-
December 26, 2019 at 8:41 am in reply to: Popular posts view widget using events post type- excerpt type issue #523044
Hi Ian,
Thanks, now admin credentials are worked fine.
Event description you asked to display is “Special Offers” field. On listing it shows listing description which saved in content field.
I have added one PHP snippet under Snippets > “GeoDirectory: Show Event Register Details on Listing” to show details you asked to show on listing instead of listing content.
Please check and let us know.
Regards,
KiranDecember 26, 2019 at 6:50 am in reply to: Popular posts view widget using events post type- excerpt type issue #523039This reply has been marked as private.Hello,
You have only one results so pagination not showing on the page. It shows pagination when there are multiple pages to show, but right now you have only one page.
You can display message by adding following PHP snippet. Check here about how to use PHP snippet. https://wpgeodirectory.com/docs-v2/faq/customizing/#snippets
function gd_snippet_191226_show_search_results() { global $wp_query, $geodir_is_widget_listing; if ( ! $geodir_is_widget_listing && geodir_is_page( 'search' ) && ! empty( $wp_query ) && ! empty( $wp_query->found_posts ) && GeoDir_Query::is_gd_main_query( $wp_query ) ) { echo '<div class="_geodir-search-results" style="padding:10px 0"><span>'; echo wp_sprintf( __( 'Your search found <b>%d</b> results' ), $wp_query->found_posts ); echo '</span></div>'; } } add_action( 'geodir_before_listing_listview', 'gd_snippet_191226_show_search_results' ); // Show before listings add_action( 'geodir_after_listing_listview', 'gd_snippet_191226_show_search_results' ); // Show after listings
Regards,
KiranHi Manfred,
We have made some core changes in a advance search plugin to show label for those fields.
Kiran
Hi Manfred,
Issue has been fixed, please check and let us know.
Kiran
Hi Dave,
I have updated logic of “next 7 days”, please check and let us know.
Regards,
KiranThis reply has been marked as private.Just let us know if you see issue again.
Happy Christmas & Happy New Year!
Kiran
Hi Kathy,
You forgot to check what i mentioned in last paragraph of my last reply.
After connecting the APP select a page from “Post to FB page” list & save. Right now you have “coming soon mode” active. You have to disable that mode to allow Facebook to grab data from listing url.
I have selected “Post to FB page”, so now you have to disable “coming soon mode” to test Post to Facebook.
Regards,
KiranThis reply has been marked as private.This reply has been marked as private.December 24, 2019 at 8:48 am in reply to: Crash pricing manager with Woocommerce Suscriptions #522951Hi Alex,
I have fixed issue and updated patch on your site. Just let us know if you see issue again.
Thanks,
KiranThis reply has been marked as private.Hi Dave,
Please try now after clearing you browser cache.
Merry Christmas & Happy New Year!
Regards,
KiranHi Manfred,
I have added “add_location_filter=1” in gd_listings shortcode to apply location filter. Now widget shows listings from applied location filters.
Merry Christmas & Happy New Year!
Regards,
Kiran -
AuthorPosts