Giri
Forum Replies Created
-
AuthorPosts
-
We have added an option in best of widget to select review as excerpt. Its added in GD version 1.5.4
Thanks
Hello there, I have asked stiofan.
He said you have to update everything to resolve this problem.
Make sure you have latest version of GD and all add ons.
That should fix your problem.
Its included in whoop 1.0.3.
You still have to enable that from settings though.
Setting available under Whoop Options -> Reviews
This reply has been marked as private.@wakeatlas I guess you have broken rating icons because, we renamed whoop theme folder from “whoop” to “GeoDirectory_whoop” few months back. If you have installed whoop before that, then your settings might still use old folder name instead of new one.
I have added a check in upgrade file. So when you upgrade to next whoop version, it will get fixed.
Thanks for letting us know.
can you show us your site url?
@wakeatlas I was working on another theme today. So i’ll work on this feature tomorrow. Thanks.
Hi there,
Yes I created that template to match yelp design. http://www.yelp.com/events
The idea is if you want that kind of yelp design, you drag and drop the widget i mentioned on the documentation.
You can add this page in menu
/events/?e_index=true
In widget “View all events” links points to normal event listing page. Soit will redirect to /events/ page.
This is optional. If you need yelp design just use that.
oh ok. Then i’ll fix that part
Hello there, to match yelp design, I have removed that feature. You may have to hire someone if you want that feature.
Sorry about that.
Fixed. Thanks for reporting
I have fixed this bug in version whoop 1.0.0
Let me know if you still have that problem.
Whoop adds a tabs filter.
So first remove that
by using this code
remove_filter('geodir_detail_page_tab_list_extend', 'geodir_detail_page_tab_list_extend');
Then hook your custom function
add_filter('geodir_detail_page_tab_list_extend', 'jkirker_geodir_detail_page_tab_list_extend'); function jkirker_geodir_detail_page_tab_list_extend($tab_array) { global $preview; if ($preview) { return $tab_array; } $new_tab_array = 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; }
Just change the order as per your needs
I have fixed most of the bugs you reported. Will test once again tomorrow.
Thanks
-
AuthorPosts