Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
ok i managed to recreate on a test site, i’ll have a look at the code tomorrow.
Thanks,
Stiofan
No mails seems to be getting through, not even default WP ones, this looks like a server issue, please ask your server admin to assist.
Thanks,
Stiofan
I have added a email log plugin here: http://veteranslist.us/wp-admin/admin.php?page=email-log
Please test and see if the emails appear there and let us know.Thanks,
Stiofan
Not tested but maybe something like this code snippet (you can add it via the code snippet plugin):
add_filter('geodir_description_field_desc','_my_default_description',10); function _my_default_description($desc){ if(empty($desc)){ $desc = "my new default description, this will show if the description is empty"; } return $descl }
Thanks,
Stiofan
You would need to have comparable packages, then some custom code to redirect the add listing to the package the user has.
Stiofan
I am not sure what you mean by “template” a php file?
Stiofan
Great, thanks for letting us know! 🙂
can u explain the issue more, i don’t think u are referring to #2?
Stiofan
Hmm strange, glad its working for u now!
Stiofan
Below is a quick example (not tested)
add_filter('body_class', '_my_add_body_class'); function _my_add_body_class($classes) { $location_terms = geodir_get_current_location_terms(); if(isset($location_terms['gd_city']) && $location_terms['gd_city']){ $classes[] = "current-city-".esc_attr($location_terms['gd_city']); } return $classes; }
Thanks,
Stiofan
January 31, 2018 at 2:39 pm in reply to: Temporary VS Permanent Permalink – Emailed to Business Owner #415155This reply has been marked as private.The correct frontend edit link would be http://dev2.norfolkplaces.co.uk/add-event/?listing_type=gd_event&pid=10360
I see its in draft, is it resolved if published?
Stiofan
Your theme does not contain the
<?php wp_footer(); ?>
just above the closing body tag in the footer.php
This is likely the problem, please add that and check.Thanks,
Stiofan
You have a gap at the top of your page which is causing a JS error, this might be related
Stiofan
The query is ordering by “post_date” which is when its added.
This should only be updated on add not on update, i did some testing and could not replicate this, if you can please let us know how.Thanks,
Stiofan
-
AuthorPosts