Kiran
Forum Replies Created
-
AuthorPosts
-
Hi dnet-dev,
Sorry for the inconvenience.
I checked and your site is running with v1.
Please take backup of your site and provide FTP credentials so i can perform v1 to v2 conversion from my side. This will help us to find what was breaking conversion.Kiran
This reply has been marked as private.May 17, 2019 at 4:45 am in reply to: Add listing "text link" at bottom of search bar "no results" #487015If map is used via widget then you can choose post type from list.
If map is used via shortcode then you can choose post type by parameter post_type=”gd_place” in [gd_map] shortcode.Kiran
This reply has been marked as private.This reply has been marked as private.Hi Kai,
I have no idea what I have to do to make the map view on the start page work again.
I will check and let you know.
And i have a Another Question, I have in past translated Geodirectory to german by hand, but now I see that GeoDirectory is partly in English again and a part ist German, is this translated automatically or do I have to translate everything again?
If listings are translated in v1 then no need to translate again in v2? Some texts may require translation as we have some new features implemented in v2. Please install https://wpgeodirectory.com/downloads/wpml-multilingual/ plugin to enable multilingual feature for GeoDirectory listings.
Kiran
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.Hi memorex13,
I have set my analytics code and it worked fine. It means something wrong with your analytics setup.
Please see for more details about Google Analytics setup. https://wpgeodirectory.com/docs-v2/addons/google-analytics/
Kiran
Hi,
You misunderstood what i replied in my last reply. You don’t have to remove_filter because hooks were not executed. If hooks were executed then there would be a title like “All Places”.
We are using GeoDirectory archive pages dynamically as a listing archive pages.
“Archives: Business Directory” title is by default displayed. If you want to replace “Archives: Business Directory” to like “All Places” then you have to execute hooks i mentioned in my previous reply. Those hooks are executed only on frontend when viewing page from browser. In app those hooks can’t be executed.So you need to execute those hooks from your app. You have to write code(with help of links i provided in my last reply) that converts title from “Archives: Business Directory” to “All Places”. We are already doing it but unfortunately it is not supported in app.
Let us know.
Thanks,
KiranHi Brenda,
1) Is there no file I can upload that is translates your basic theme into French, either France French or Canadian French?
Translation for France French & Canadian French are not fully done. As you can see here https://translate.wordpress.org/locale/fr/default/wp-plugins/geodirectory/ & https://translate.wordpress.org/locale/fr-ca/default/wp-plugins/geodirectory/
—
2) Any progress on getting ‘Practitioners’ and ‘search’ at either end of the search bar to translate?
I have translated
%%pt_plural%% search results for %%search_term%%, Near %%search_near%% %%sep%% %%sitename%%&
%%pt_plural%% search results for %%search_term%%, Near %%search_near%%from WPM > String Translation
—
3) I noticed that the results don’t come up in the results page anymore (in French: /fr/page-de-recherche) when I search the French page. Why would that have changed?
Please create/translate listings in French language to list listings on /fr/page-de-recherche.
—
4) And on my main directory page in French (/fr/repertoire), I need the map to display as it does in English: showing all the practitioners listings, with my custom pins. I duplicated the page in WPML, not sure why the settings didn’t come along. How can I bring those settings back to the French page?
You have to duplicate or translate all listings from English to French (Or chose fallback translate to original from WPML > Settings > Custom Posts Type Translation).
—
5) I have fixed my top issue (Any progress on getting ‘Practitioners’ and ‘search’ at either end of the search bar to translate?)
See 2)
Let us know.
Kiran
Hi Birgit & @brughfoster,
Try following snippet to prevent sending invoice email notifications to user for free invoices.
/** * Prevent sending invoice email notifications to user for free invoices. */ function gd_snippet_prevent_invoice_email_for_free_listing( $recipient, $email_type, $invoice_id, $invoice ) { if ( class_exists( 'GeoDir_Pricing_Post_Package' ) && ! empty( $invoice ) && $invoice->is_free() ) { $post_packages = GeoDir_Pricing_Post_Package::get_items( array( 'invoice_id' => $invoice_id ) ); if ( ! empty( $post_packages ) ) { $recipient = NULL; // No recipient. } } return $recipient; } add_filter( 'wpinv_email_recipient', 'gd_snippet_prevent_invoice_email_for_free_listing', 100, 4 );Regards,
KiranMay 16, 2019 at 7:00 am in reply to: Posts and Search Filters not Appearing in 2nd EVENTS CPT #486779Search filters are already there, but it seems you have hidden it via css customization.
Following css hides search filters.
.custom-sidebar button.geodir-show-filters, .custom-sidebar .geodir-search button.geodir_submit_search { display: none; }Kiran
-
AuthorPosts