Paolo
Forum Replies Created
-
AuthorPosts
-
Hi,
/library/includes/success.php doesn’t exist in GDF.
success.php is in geodir_payment_manager/geodir-payment-templates
Thx
Hi Lucy,
I don’t think Stiofan meant to be rude to you, but to your theme’s author who indeed used a very questionable structure to build the menu of that theme.
Thanks
Just FYI,
this way they will be able to comment only…
You can’t have a mix of comments and reviews. It wouldn’t make sense and it would be a confusing UX.
Thx
February 23, 2015 at 9:52 pm in reply to: How to change default tab (from profile to review)? #31820Hi,
as Stiofan suggested, please try:
// begin change order tabs // /** https://wpgeodirectory.com/support/topic/how-to-change-default-tab-from-profile-to-review/#post-24021 **/ 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['reviews'])){ $new_tab_array['reviews'] = $tab_array['reviews'];// set in new array $new_tab_array['reviews']['is_active_tab']='1'; unset($tab_array['reviews']);//unset in old one } if(isset($tab_array['post_profile'])){ $new_tab_array['post_profile'] = $tab_array['post_profile']; // set in new array $new_tab_array['post_profile']['is_active_tab']=''; 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 } // 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 ; } // end change order tabs //You were missing the
$new_tab_array['post_profile']['is_active_tab']='';in post profile to make the tab inactive.
Let us know,
Thx
Hi,
I just tested in 3 of our tests website in different servers (one with nginx, 1 with apache and mediatemple grid).
All websites with GD-Booster active and enabled and I updated both some GD addons and other plugins and never experienced any problem.
To debug we will need URL wp admin and FTP credentials as it seems to be a problem specific to your install.
Let us know,
Thx
Why are GD and addons not updated? Have you customized any core files?
Let me know,February 23, 2015 at 9:26 pm in reply to: After advanced search menu bar for theme disappears #31816I think Stiofan can provide the patch to apply as soon as he comes back online or if this doesn’t completely stop your development, I think we will release a new batch of updates probably by the end of this week.
Let us know,
Thx
Hi,
Because we don’t know every single code of the plugin by heart, answering that question is what requires investing time.
I know for sure there isn’t hook to do that.
Thx
hi,
The all listings page is depracated and will be removed in a future release.
If you provide a URL and wp admin credentials we will look into your theme compatibility issue (in case you didn’t resolve it)
Thanks
Hi,
at the moment we are not really interested in investing time in this customization.
Thanks for the offer though.
You could do that with jQuery.
Try adding this to GD >> Design >> Scripts >> Header script code
<script type="text/javascript"> jQuery(document).ready(function(){ jQuery("#geodir_map_v3_home_map_1_cat").hide(); }); </script>It is possible that your map ID isn’t 1, but improbable (in that case change it to whatever it is).
The legend will appear when 1st loading the map, but it will be autohidden as soon as everything is loaded.
it’s Let us know if this works,
Hi,
are you using the social importer addon to post on facebook?
Would you provide wp admin credentials in a private reply so that we can have a look and test on your website?
Let us know,
Thx
Hi, we had a similar problem with some Cardiff neighbourhoods that for some reason Google Maps API was returning as separate locations.
Let us know an example of an address that is not recognized as being within Bristol city limits and we will check to see if it’s fixable.
Thx
Excellent news! 🙂
WHy don’t you just remove addthis?
That’s been asked and answered in the forum too: https://wpgeodirectory.com/support/topic/remove-addthis-and-social-links-from-sidebar/
Let us know,
Thx
-
AuthorPosts