Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
haha 🙂 glad it’s working now!
Is that due to that code change?
Stiofan
Hi Brian,
The problem with not being able to click is CSS, the clearfix class and the p tags are crazy high and are covering everything there, there is a million layers.
I have tagged this for john (it will be a test of his CSS skils, if he fails then i will look further)
Thanks,
Stiofan
Thanks Adam! 🙂
Hi Adam,
There are 3 diffrent “Read more” text in the .po, i think the one u are after is “Read more […]” Please let me know if this solves.
Stiofan
you can also add it by going to appearance>editor in WP and selecting that file in your active child theme.
file should start something like
<?php error_reporting(E_ERROR);
Stiofan
This has been added as a to do task.
Thanks,
Stiofan
Hi Ronald,
FYI GD is not 100% multisite compatible (looks like ur using that?)
I can see from the source that the mobile menu is not being added, is th emobile menu a pluign or part of the theme?
Stiofan
The developer has worked on this, it still has to be fully tested before release.
Thanks,
Stiofan
Are u running the latest GD? I can’t replicate this problem
Stiofan
Can you link to your add listing page, i can’t see it?
Stiofan
September 15, 2014 at 8:22 pm in reply to: Admin approve listing and share location question. #15485Thanks for the details,
This was because your admin is using https and front end is not, so we do a check on the file upload to check it comes from your own site, if they are over different https then the check fails ( it’s a wordpress function)
I have added the following code to make sure the ajax url for the upload uses the same http/s structure as the backend
// check_ajax_referer function is used to make sure no files are uplaoded remotly but it will fail if used between https and non https so we do the check below of the urls
if(str_replace("https","http",admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])){ $ajax_url = admin_url('admin-ajax.php'); }elseif(!str_replace("https","http",admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])){ $ajax_url = admin_url('admin-ajax.php'); }elseif(str_replace("https","http",admin_url('admin-ajax.php')) && empty($_SERVER['HTTPS'])){ $ajax_url = str_replace("https","http",admin_url('admin-ajax.php')); }elseif(!str_replace("https","http",admin_url('admin-ajax.php')) && !empty($_SERVER['HTTPS'])){ $ajax_url = str_replace("http","https",admin_url('admin-ajax.php')); }
I have added this fix to your site and file upload now works.
Thanks,
Stiofan
September 15, 2014 at 5:10 pm in reply to: Details page: How to move rating stars from sidebar to content area? #15463OK here is a small example. I was not sure if you also just wanted to move the address or everything in that section?
Here is an example to move the star rating to the main content area
// remove star rating from siebar add_filter('geodir_detail_page_sidebar_content', 'geodir_detail_page_sidebar_content_order_myfix',10,1); function geodir_detail_page_sidebar_content_order_myfix($sort){ $elements_to_remove = array('geodir_detail_page_review_rating'); $sort = array_diff($sort,$elements_to_remove); return $sort; } // add star rating to top of main content add_action( 'geodir_details_main_content', 'geodir_detail_page_review_rating',9);
Thanks,
Stiofan
September 15, 2014 at 4:49 pm in reply to: Changing post type dropdown filter to categories drop down. #15457Hi,
Please explain exactly what you are trying to achieve here as i am a bit confused.
Thanks,
Stiofan
I have added this as a task to be completed.
Thanks,
Stiofan
-
AuthorPosts