Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
HI Craig, can you explain the problem better so i can help?
Thanks,
Stiofan
Hi Garry,
Multisite is still in beta att eh moment, you can download all_beta3 from the download area whch is multisite compatible.
Thanks,
Stiofan
OK the wordpress SEO bug has been fixed and will be in the next release.
@craig, your server was having trouble with rewriting the / to a ? i have just replaced it in GD booster to use a ? instead, i have uploaded the fix to your site, please check. Also, nice site!
You still have to let us know WHERE you get these warnings, please post links to the pages so we can help.
Stiofan
Latest beta released, BETA 3 can be downloaded from your account area, please follow original instructions for install https://wpgeodirectory.com/support/topic/all-beta-versions-advanced-users-only/#post-22897
Please post any bugs found ASAP as we plan to release out of beta at the start of the week.
Thanks,
Stiofan
Great, i have contacted Disqus to ask them to add 1 line of code which should help all dev’s hopefully i will hear back from them on Monday.
Stiofan
December 13, 2014 at 2:50 pm in reply to: Seems like the featured listing sorting is not working #24244Thanks for the info, ok the problem must be happening when u are importing, the is_featured value is empty where is should be either 0 or 1
i fixed this for places by running this query on ur table:
UPDATE geodir_gd_place_detail SET is_featured ='0' WHERE is_featured=''Thanks,
Stiofan
December 12, 2014 at 8:15 pm in reply to: Seems like the featured listing sorting is not working #24204OK the featured things is weird, i would need DB access to properly debug it.
Stiofan
I have changed the way those templats work and location page should use it’s own template now and it can be replaced in child theme. This will be in the next release.
Thanks,
Stiofan
December 12, 2014 at 4:02 pm in reply to: "Payment received successfully" message during the night on dev site #24191i have fixed this and it will be in the next release.
Thanks,
Stiofan
December 12, 2014 at 2:50 pm in reply to: Can ANYONE answer question about coupons and recurring payments #24189I have added an option to coupons that when applied to a subscription you can select to apply it to all or just first payment. This will be in the next release.
Thanks,
Stiofan
For people wanting to try Disqus, please try this hack of their latest plugin, if it works ok i will try and contact them to add some code so it can be done without hacks.
in their plugin in file disqus.php
line 1250 replace this:
add_filter('comments_template', 'dsq_comments_template');with this:
add_filter('comments_template', 'dsq_comments_template',100);Line 225 add this:
if(isset($post->post_type) && $post->post_type && in_array($post->post_type,geodir_get_posttypes())){return false;}So line 225 surounding should look like this:
function dsq_can_replace() { global $id, $post; if(isset($post->post_type) && $post->post_type && in_array($post->post_type,geodir_get_posttypes())){return false;} if (get_option('disqus_active') === '0'){ return false; }Thanks,
Stiofan
Hi Jerry,
I notice you are a free user but you have member addons, i checked your registered email address and could not find any purchase history for you. Can you explain this please?
Thanks,
Stiofan
This has now been added, on next release you will be able to format the date by adding the below code to your child theme functions.php
add_filter('geodir_add_event_calendar_date_format', 'geodir_add_event_calendar_date_format_change',10,1); function geodir_add_event_calendar_date_format_change($format){ return 'd/m/Y'; // capital Y small m and d } -
AuthorPosts