Stiofan O'Connor
Forum Replies Created
-
AuthorPosts
-
July 25, 2014 at 1:50 pm in reply to: Strange behavior with View in Safari Version 5.1.10 Mac OS X #9939
Thanks, it seems that version of safari can’t handel some of the new CSS (calc)
In core please replace lines 749-756 of geodirectory-assetscssstles.css with this:
.geodir_category_list_view li.gridview_onefifth{ width:19%; width: -webkit-calc(20% - 5.2px);width: -moz-calc(20% - 5.2px);width: calc(20% - 5.2px);} .geodir_category_list_view li.gridview_onefifth:nth-child(5n+5){margin-right:0px;} .geodir_category_list_view li.gridview_onefourth{ width:24%; width: -webkit-calc(25% - 5px);width: -moz-calc(25% - 5px);width: calc(25% - 5px);} .geodir_category_list_view li.gridview_onefourth:nth-child(4n+4){margin-right:0px;} .geodir_category_list_view li.gridview_onethird{ width: 32%; width: -webkit-calc(33.3% - 4.8px);width: -moz-calc(33.3% - 4.8px);width: calc(33.3% - 4.8px);} .geodir_category_list_view li.gridview_onethird:nth-child(3n+3){margin-right:0px;} .geodir_category_list_view li.gridview_onehalf{ width: 48%; width: -webkit-calc(50% - 4px);width: -moz-calc(50% - 4px);width: calc(50% - 4px);} .geodir_category_list_view li.gridview_onehalf:nth-child(2n+2){margin-right:0px;}
Fix will be in next core release
Also safari sucks…Thanks,
Stiofan
Hi Ricky,
You said you were pushed for time so i thought i would do it for you.
The changes are very simple and all in one place. All my changes are in your functions.php file in your child theme.Basically what i do is look at the standard page template of your theme and find the classes that are doing the work of positioning and then we use hooks to replace the GD wrappers with these, classes or id’s.
for example the standard GD opening wrapper is:
// action for adding the wrapper div opening tag add_action( 'geodir_wrapper_open', 'geodir_action_wrapper_open', 10, 3 ); function geodir_action_wrapper_open($type='',$id='',$class=''){ echo '<div id="'.$id.'" class="'.$class.'">'; }
(the ID and class are filled in by the page template)
So to replace that with your theme wrapper we first remove the standard one
remove_action( 'geodir_wrapper_open', 'geodir_action_wrapper_open', 10 );
And then add in one that matches your theme:
add_action( 'geodir_wrapper_open', 'smartmag_action_wrapper_open', 9 ); function smartmag_action_wrapper_open(){ echo '<div class="main wrap cf">'; }
It’s very simple once you get the hang of it, please look at the functions.php file for more examples. Depending on your theme we could also replace the standard breadcrum with the GD one but just now i have just did the positioning for you.
Thanks,
Stiofan
The problem here is really down to the google api for mapping addresses, it’s not great with regions, anyone who wants to work with me to try and get this 100% let me know.
Thanks,
Stiofan
Hi Ricky,
I have done most of the fixes for your theme but due to a typo by me an error is now being thrown, can you pass me FTP info and i will be able to make it right in 2minz.
Thanks,
Stiofan
Hi mrsllanes,
Please start your own post and then you will be able to private reply us your wp-admin details to your site so we can have a look.
Thanks,
Stiofan
Hi Ricky, what theme are you using?
Thanks,
Stiofan
I have added this to your listings page and it works, there seems to be a problem on the homepage, it seem like a js issue even though there are no errors, as simone says it’s a case of trying to track down the problem by eliminating things one by one, like plugins caching etc.
Thanks,
Stiofan
Please update claim listing manager.
Thanks,
Stiofan
OK i managed to get it turned on and i can confirm it does not work, it seems to mess with out location url’s also, i think this might be one thing that is not compatible but if you want you can add it as a feature request and if you get enough support we will look into if further. https://wpgeodirectory.com/requests/
Thanks,
Stiofan
At present there is no way to get that widget to default to satellite view. YOUR zoom problem has already been asked by you and answered!
https://wpgeodirectory.com/support/topic/map-widget-on-individual-listings/Stiofan
July 21, 2014 at 10:22 am in reply to: Mobile menu dosn't work properly in iOS older than 7.1.2 #9214Thanks Damitri,
Please see this bug thread and fix: https://github.com/BeSite/jQuery.mmenu/issues/68
Thanks,
Stiofan
I think the problem is u don’t have the location switcher active so it’s not saving the session, please add it on the page. or in the menu as normal
The problem is your site is not saving the decision of the share location plugin for some reason, this could be your site is not saving the session or something else but this is the problem, it is causing the page to refresh every time and on the preview page it is blanking the POST results and causing the problem.
I would try updating all ur plugins to latest and if that does not work then send me wp-admin and FTP and i will look deeper.
Thanks,
Stiofan
Hi Rody,
As of yet there is no way apart from adding multiple listings, if you ad it as a request and enough people also request it we will add it.
https://wpgeodirectory.com/requests/Thanks,
Stiofan
I still don’t know the site address?
Stiofan
-
AuthorPosts