Kiran
Forum Replies Created
-
AuthorPosts
-
Hi Matthias,
I have added phone column in wp_geodir_gd_veterinaermedizin_detail & wp_geodir_gd_urlaub_mit_haus_detail tables.
I have checked all CPTs and all worked fine now.
Kiran
Thanks for letting us know.
This reply has been marked as private.August 23, 2019 at 2:21 pm in reply to: Events – 24h time format and recurring (custom) calendar format #504578Please try now after clearing your browser cache.
Kiran
Hello,
After doing some debugging found that dynamic css from wp-content/uploads/jupiterx/compiler/jupiterx/ not loaded on preview page.
I have added following PHP snippet in you child-theme functions.php and seems issue is fixed. Please try this snippet on your live site.
/** * Fix GeoDirectory preview page issue on Jupiter X theme. */ function gd_snippet_20190823_wp_footer() { if ( empty( $_GET['preview'] ) ) { return; } ?> <script type="text/javascript"> jQuery(function(){ var href = jQuery('link#jupiterx-css').attr('href'); href = href + '&_r=' + ( Math.floor( Math.random() * 100000000000 ).toString() ); jQuery('link#jupiterx-css').attr('href', href ); }); </script> <?php } add_action( 'wp_footer', 'gd_snippet_20190823_wp_footer', 20 );Please try after clearing your browser cache.
Let us know.
Thanks,
KiranHi Mark,
gd_categories widget/shortcode has own sorting. Categories on map loading with WordPress default sorting(a to z).
Two things implemented and it will be in next release.
1) Option added in gd_categories to show CPT title, so it will easily separate categories by CPT title.
2) Filters added to sort categories in map.
– orderby: https://github.com/AyeCode/geodirectory/commit/21b200d28375a99cb70a562192f628529b1ad35a#diff-92947952e106c8090e8e2d2462782808R308
– order: https://github.com/AyeCode/geodirectory/commit/21b200d28375a99cb70a562192f628529b1ad35a#diff-92947952e106c8090e8e2d2462782808R318By default it is using WordPress default sorting(a to z).
Please apply patch available at here https://github.com/AyeCode/geodirectory/commit/21b200d28375a99cb70a562192f628529b1ad35a#diff-92947952e106c8090e8e2d2462782808R318
Let us know.
Kiran
No limitation, you can use as many you want. I have used one & two categories/tags just for example.
Kiran
Hi There,
There was phone field was missing in detail table.
Please check now and let us know.
Kiran
Hi,
As i have provided example ate here: https://github.com/AyeCode/geodirectory/issues/884#issuecomment-523458285
Example 1:
[gd_post_badge key="post_category" condition="is_contains" search="32" badge="Attractions" bg_color="#0073aa" txt_color="#ffffff"]I have category “Attractions” with ID 32. Above shortcode will display badge “Attractions” on listings which contains category “Attractions”.
Example 2:
[gd_post_badge key="post_category" condition="is_contains" search="32,33" badge="Attractions / Hotels" bg_color="#0073aa" txt_color="#ffffff"]I have categories “Attractions” with ID 32 & “Hotels” with ID 33. Above shortcode will display badge “Attractions / Hotels” on listings which either contains any category from “Attractions” & “Hotels” or contains both categories.
Example 3:
[gd_post_badge key="post_tags" condition="is_contains" search="Museum" badge="Museum" bg_color="#0073aa" txt_color="#ffffff"]I have tag “Museum”. Above shortcode will display badge “Museum” on listings which contains tag “Museum”.
Example 4:
[gd_post_badge key="post_tags" condition="is_contains" search="Museum,Garden" badge="Museum / Garden" bg_color="#0073aa" txt_color="#ffffff"]I have tags “Museum” & “Garden”. Above shortcode will display badge “Museum / Garden” on listings which either contains any tag from “Museum” & “Garden” or contains both tags.
Let us know.
Thanks,
KiranThis reply has been marked as private.This reply has been marked as private.This reply has been marked as private.Hi Andre,
Please check now after clearing your browser cache.
Posts in PT language has the category assigned of EN language. May be because posts were translated before and categories translated later. I have added some changes to prevent 404 page not found in such cases.
Please check and let us know.
Thanks,
KiranHi Tina,
We have fixed issue of claim counts not updated on new claim request. It will be in next release of Claim Listings plugin.
Provide us FTP credentials if you want to apply patch from our side.
Thanks,
KiranAugust 22, 2019 at 8:16 am in reply to: How do I find a country if I enter a name in a language other than English? #504313This reply has been marked as private. -
AuthorPosts