Paolo
Forum Replies Created
-
AuthorPosts
-
Hi,
your location manager is not up to date. Possibly other GD add-ons aren’t, I haven’t checked them all.
Please see:
https://wpgeodirectory.com/support/topic/missing-update-notifications/
https://wpgeodirectory.com/support/topic/new-licence-updates-system-info/Let us know if updated add-on solve the problem.
I’m 99.99% sure it will
Thanks
March 15, 2016 at 6:29 pm in reply to: WPML Multiligual approach – how can a user add languages to his listing? #140367User will add his listing in English and French for example.
You from the back will open the English version and on the right column assign the french version as the translation of the English listings.
Please refer to WPML documentation to see how 2 posts from different languages can be linked as translations of each other.
Thanks
Hi,
this would be considered a customization and beyond support. I’ve asked to the developers to have a look at your question and see if there is any easy way to accomplish what you want to do and to let us know.
In general, modifying core files is a bad idea as you’ll lose everything after every update.
Thanks
hi,
you must ZIP the file before attaching it or the forum will reject it.
I made you a translator here: https://wpgeodirectory.com/translate/projects/geodirevents/es/default
Please submit the translation directly in the system.
Thanks
Hi,
please request for support in WPML forum for this. If I deactivated WPML the problem goes away.
Thanks
Hi,
when you visit a custom post type archive (example : events) the search form will auto select events as the CPT to search.
Anything else would require a customization and not a simple one.
Thanks
There ia an error in console from GD Booster, did you update all GD plugins too? Please provide admin credentials and we will have a look.
Thanks
Hi,
the po file is the file used to create the translation, the mo file is generated by the po file and it’s used by WordPress to localize a script.
Let me know if this makes it clearer.
Thanks
Hi,
did you see this? https://wpgeodirectory.com/support/topic/missing-update-notifications/
Let us know if that helps,
Thanks
Hi,
your plugins are not up to date.
Site has installed GeoDirectory v1.5.6 which is older then the most recent v1.5.8
In v1.5.7 there is fixed out of memory problem for some servers. Please check here change log https://wpgeodirectory.com/change-logs/#v1.5.7
Please update all plugins first and try again. Mske sure to read this too: https://wpgeodirectory.com/support/topic/new-licence-updates-system-info/
Let us know if you still have a problems after updates.
Thanks
March 15, 2016 at 5:35 pm in reply to: Registration Info and Fees in a separate tab and Sidebar #140271Hi,
I’m not sure this is feasible, I need to ask to Stiofan to let us know,
Thanks for your patience,
Hi,
no that is not possible. The transaltion file is one.
Thanks
Categories are stored in an array as there can be more than 1.
You will need something like this:
$post_type = $post->post_type; $post_type_data = get_post_type_object( $post_type ); $post_type_slug = $post_type_data->rewrite['slug']; $post_tax = $post_type."category"; $post_cats = $post->$post_tax; $cats_arr = array_filter(explode(",", $post_cats)); foreach($cats_arr as $cat){ $term_arr = get_term( $cat, $post_tax); $term_url = get_term_link( intval($cat), $post_tax ); echo '<a href="'.$term_url.'">'; echo '<span class="cat-link">'.$term_arr->name.'</span>'; echo '</a>';I haven’t tested it, so I’m not 100% sure it will work. I know for sure this works in detail page.
Just FYI, for most fields, if you declared the global $post variable, you can get the data like this:
$post->post_city $post->post_region $post->post_countryand so on…
Let us know how you went,
Thanks
thanks for letting us know 🙂
I’ve flagged this for Stiofan, he’ll get back to us asap.
Thanks
-
AuthorPosts