Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
There is now a button next to the api key input to generate a working api key. (in latest GD ver)
Stiofan
for #12 please provide FTP info and i will take a look.
Stiofan
That is wierd, the main url part is being stripped out after main php has run, must be a plugin of some sort doing it, if you can provide FTP info i will be able to debug it.
Thanks,
Stiofan
Thanks, it looks like the webhook was never received, what do u have for the url?
Is the webhook set to live in stripe settings or is it just set to test?Stiofan
No problem, becasue it was stripe it can take 5-10 days to show in your account.
Good luck in the future 🙂
Stiofan
This reply has been marked as private.December 2, 2016 at 3:16 pm in reply to: Category search questions – subcategory order and/or hide #317464Hi Anitra,
I added this code snippet to make it only show parent cats
add_filter('geodir_filter_term_args','_my_filter_place_term_args_search',10,2); function _my_filter_place_term_args_search($args, $name ){ if($name=='gd_placecategory'){ $args['parent'] = 0; // hide child terms } return $args; }Thanks,
Stiofan
Great! 🙂
Hi Felix,
Sometimes you will have a cancel button under MY Account.
I have cancelled your subscription payment now.I see your membership renewed recently, do you want me to refund that also, or do you want to keep your membership until it runs out?
Thanks,
Stiofan
It should be next week 🙂
Stiofan
December 2, 2016 at 12:11 pm in reply to: How to add custom class on add-listing page fields #317347OK this is not somewhere that you can have custom work done, this is somewhere you receive support for our products, what you are asking for is not something support should help with but as a one off i have fixed your code.
Thanks,
Stiofan
(below is for reference incase u delete it from your site by accident)
<script> GDcheckChecking = 0; jQuery(document).ready(function () { // this takes care of the click states jQuery(".geodir_form_row > input[type=checkbox]", document.body).each(function () { jQuery(this).parent().click(function (e) { // make sure things don't run twice if(GDcheckChecking){return;} GDcheckChecking = 1; if (e.target.localName == "input") {// we are clicking the checkbox // correct checkbox value is already set }else{// we are clicking the container jQuery(this).find('input[type=checkbox]').click(); } // once the check state is set we can set the correct classes if (jQuery(this).find('input[type=checkbox]').is(":checked")) { jQuery(this).closest("div").addClass("checked-class"); } else { jQuery(this).closest("div").removeClass("checked-class"); } GDcheckChecking = 0; }); // this takes care of the onload states // once the check state is set we can set the correct classes if (jQuery(this).is(":checked")) { jQuery(this).closest("div").addClass("checked-class"); } else { jQuery(this).closest("div").removeClass("checked-class"); } }); }); </script>That hook is for hiding tabs not individual items, the other one i gave is for hiding individual items anywhere.
Stiofan
If you are trying to load 5k listing on the map it could be that if you have a low PHP memory limit then you might need to increase it.
Stiofan
Hi Neil,
We do not claim compatibility with any translation plugins other than WPML.
Our custom fields are stored in our own DB tables, it would be possible to add extra script to make this set a standard post meta on save but we still could not guarantee compatibility with transposh.
Thanks,
Stiofan
Location mostly only works with https now, you site is not set to use https only, please read the last paragraph on this post: https://wpgeodirectory.com/adding-a-ssl-certificate-to-your-website/
Thanks,
Stiofan
-
AuthorPosts