Paolo
Forum Replies Created
-
AuthorPosts
-
Hi,
currently that is not possible without a customization of the add-listing template.
Thx
I’ve marked this as resolved.
Thx
Personally I’d avoid WordPress Managed Hosting for any WordPress application website. They all have more or less the same limitations. However, the new MediaTemple WordPress Managed service apparently supports PHP Sessions and Cookies. But I don’t think they have servers in Europe.
We use http://hetzner.de/en dedicated servers and we have an Italian system administrator managing them.
This is similar to what we use for this website : http://www.hetzner.de/en/hosting/produkte_rootserver/px70
They also offer managed dedicated server, this is their entry level: http://www.hetzner.de/en/hosting/produkte_managed/mx90
I can’t give feedback about it, because we never used their managed service.
Thx
If hou modifidied directly a core file, you will see both removed option coming back upon next update…
Just fyi
Hi,
in this post I describe how to remove Social Sharing Buttons:
https://wpgeodirectory.com/support/topic/removing-the-share-buttons-from-listing-sidebar/
The function is identical, but instead of removing ‘geodir_social_sharing_buttons’, from the array, you remove ‘geodir_share_this_button’.
If you want to keep sharethis and tweak its settings, search for
function geodir_share_this_button(
copy the function in your theme functions.php, rename it and modify it and use the new name in the array (instead of removing it).
Let me know if it’s not clear.
Thanks
Just FYI, to edit/rearrange tabs you need to create a new function and use the hook: geodir_detail_page_tab_list_extend
Soon we will add all examples in the developer documentation. We are working on it, this week we are focusing on user documentation.
I don’t think you’ll ever see us adding a UI to rearrange tabs or similar tasks. The plugin must remain lightweight and efficient and a UI would need more code that the funtion itself.
Adding this simple snippet in your child theme functions.php for example, will show the Map Tab as the second tab:
EDITED 14/11/2014- STIOFAN
add_filter('geodir_detail_page_tab_list_extend', 'geodir_detail_page_tab_list_extend') ; function geodir_detail_page_tab_list_extend($tab_array) { // here u can modify this array, u can create a completely new one too. if(isset($tab_array['post_profile'])){ $new_tab_array['post_profile'] = $tab_array['post_profile']; // set in new array unset($tab_array['post_profile']);//unset in old one } if(isset($tab_array['post_map'])){ $new_tab_array['post_map'] = $tab_array['post_map'];// set in new array unset($tab_array['post_map']);//unset in old one } if(isset($tab_array['special_offers'])){ $new_tab_array['special_offers'] = $tab_array['special_offers'];// set in new array unset($tab_array['special_offers']);//unset in old one } if(isset($tab_array['post_info'])){ $new_tab_array['post_info'] = $tab_array['post_info'];// set in new array unset($tab_array['post_info']);//unset in old one } if(isset($tab_array['post_images'])){ $new_tab_array['post_images'] = $tab_array['post_images'];// set in new array unset($tab_array['post_images']);//unset in old one } if(isset($tab_array['post_video'])){ $new_tab_array['post_video'] = $tab_array['post_video'];// set in new array unset($tab_array['post_video']);//unset in old one } if(isset($tab_array['special_offers'])){ $new_tab_array['special_offers'] = $tab_array['special_offers'];// set in new array unset($tab_array['special_offers']);//unset in old one } if(isset($tab_array['reviews'])){ $new_tab_array['reviews'] = $tab_array['reviews'];// set in new array unset($tab_array['reviews']);//unset in old one } if(isset($tab_array['related_listing'])){ $new_tab_array['related_listing'] = $tab_array['related_listing'];// set in new array unset($tab_array['related_listing']);//unset in old one } // now we set any remaining tabs that have not been assigned an order foreach($tab_array as $key=>$tab){ $new_tab_array[$key]=$tab; } return $new_tab_array ; }
This reply has been marked as private.Hi,
Just FYI Jeff is working on the GD version of his GT Vouchers addon. I’d wait for that.
sounds like a good compromise… Easier to implement too.
@marco7, feel free to post links of useful plugins.
@Vikas I agree most links should have either the nofollow or external tag.
July 2, 2014 at 7:22 pm in reply to: GeoDirectory Location Manager Breaks Permalinks & List views #7295excellent!
Again sorry about the inconvenience, you couln’t read the private reply because only Topic Author and Moderators can read them… 🙂
We adding a new features in the advanced search for that. A widget showing places near the user location is the 1st time that is requested.
If your idea get’s a consistent number of +1, we will be glad to consider it.
Thanks
The problem is neither in Avada nor in GD widget.
As far as I know Flickr API allows to display 1 to 10 pictures maximum.
Super sorry about that. Vikas promised to update changelos tomorrow 1st thing!
Thanks
July 2, 2014 at 6:58 pm in reply to: GeoDirectory Location Manager Breaks Permalinks & List views #7289This reply has been marked as private. -
AuthorPosts