Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
Hi Anita,
It would help if u post a link to your site (with login) so we can check what’s going on, the CSS file you mention should not even show as stndard unless you have selected to show the files individually, or you have a old version of GD running?Stiofan
July 6, 2015 at 11:33 am in reply to: URGENT: Error 404 for New Listings after Updating to 1.4.9 #44792Resolved
You are welcome!
looks like something to do with your WPML settings, please check.
July 6, 2015 at 10:59 am in reply to: URGENT: Error 404 for New Listings after Updating to 1.4.9 #44788looks like something to do with your WPML settings, please check.
Thanks for the info, i see the page looks a bit better today, i can also see the map JSON has errors, a lot of your places names have line breaks in them, we could add a function to remove this in the JSON but over all it’s better for you to remove them from the titles.
Here is how to find them:#1 visit your homepage.
#2 open your browser developer tools (usually f12 on the keyboard)
#3 Click on the “network” tab of the dev tools and clear all the results, then tick/untick some of your map categories and you will see things appear in the network tab, right click one of the links and open in new tab, you will then see lots of JSON code.
#4 copy the JSON code and paste it in a JSON validator: http://jsonlint.com/ it will then tell show u what ones have line breaks and what ones you need to fix.Thanks,
Stiofan
You could try a setTimeout (not tested)
setTimeout(function(){ jQuery('input[name = post_default_category], [value = 7]').attr("checked", "checked"); }, 2000);Stiofan
Hi Bodo,
Yes we are re-writing the payment process to be able to account for this in the future.
It will be a few weeks though.
Thanks,
Stiofan
Hello, this is a javascript snippet that would set the category id 8 selected when price package 3 is seleted.
jQuery(document).ready(function(){ $price_id = jQuery('[name="package_id"]:checked').val(); if($price_id==3){ jQuery('#gd_placecategory.chosen_select').val('8').change(); } });Hopefully u can get it from that, let us know if you need more.
Stiofan
Can’t see anything obviouse, please provide FTP and i will debug it.
Thanks,
Stiofan
Thanks, your server was ignoring the PHP return if class exists, i guess this is because of some class autoloader being used ( i have not seen this before), i have changed it to only even include the file if the class does not exist and that seems to fix it on your server.
Thanks,
Stiofan
I would take a backup for the table first and then just run this:
UPDATE wp_comments SET comment_parent=0Assuming your prefix is wp_
Thanks,
Stiofan
OK, great 🙂
Hi Jen, u just need to replace that file via FTP, if you email me wp-admin and FTP details i’ll apply it for you if you want? (info at wpgeodirectory.com) Or you can wait till the next release, it should be early/mid next week.
Stiofan
There is currently not a way to do this, i have added a couple of hooks that will allow this, they will be in the next ver but if you want it now you can replace this file in core:
https://github.com/GeoDirectory/geodirectory/blob/master/geodirectory-functions/listing_filters.phpand then add this code to your theme functions.php
function my_theme_change_search(){ return ""; } add_filter("geodir_search_content_where", "my_theme_change_search",10);Thanks,
Stiofan
-
AuthorPosts