Giri
Forum Replies Created
-
AuthorPosts
-
In that case i’m afraid you have to rename your theme folder manually.
Using FTP visit this folder.
wp-content/themes/
Rename “whoop” theme to “GeoDirectory_whoop”
Then visit the following page and click “Check Again” button again?
If you use automatic updates, you will not loose your configuration.
Automatic updates won’t mess up your settings.
Kira,
Can you visit this page and click “Check Again” button?
kira, there are few things I can help and there are few things you need to hire a developer to complete the task.
1. customizing the layout of the “Your next review awaits” widget. I have attached a layout that i want but don’t really know where to start. Can you guys give me some pointers / tutorials?
For this you definitely need a developer’s help. We don’t have any tutorial for customising widgets.
2. I want to be able to set the length of the Recent Reviews widgets. At the moment it is showing only 1-2 lines …i want 7. Where can i set the length of the excerpt?
I have added a filter for this. It will be available on next GD plugin release.
Just place this code in your child theme or whoop functions.php file.
// Change recent reviews excerpt length function kira_recent_reviews_excerpt_length() { return 200; } add_filter('geodir_recent_reviews_excerpt_length', 'kira_recent_reviews_excerpt_length');
Note: Where “200” is character count. Default :100. You can increase that if you need more characters
3. In the Recent Reviews widget I want to be able to show the date when the review was placed.
You need developer help
4. I know there is a compliments plugin but I wasn’t able to make it work. I trust many of your customers have tried it…can you provide some guidance?
You need to install buddypress plugin first. Just follow this documentation. https://wpgeodirectory.com/docs/buddypress-compliments-overview/
5. Is there a pagination function for the recent reviews widget and also for the reviews displayed on the listing’s page? If so how can i enable it?
You need developer help.
6. I have joined the translation project and have downloaded the .po file. I’m not quite sure how can I enable the translation for my language.
For translation follow these docs
https://wpgeodirectory.com/docs/category/translation/
7. When adding GD>Popular post view widget to the GD Home right section the layout is quite bad…Attached a screenshot. I would need picture on the left as is, title as is then below title #reviews / bookmark link. Below both the description of 100 characters let’s say…
Are you sure you have the latest whoop theme ( version 0.0.3 ) ?
I have added a setting to enable/disable reviews on Events. Added in whoop 0.0.3
Setting available over here
Whoop Options -> review settings -> Enable Reviews on Events?
Please test it and let me know if you still have problem. Thanks
Martin, I think whoop 0.0.3 already released. can you test it and let me know?
Martin, I think whoop 0.0.3 already released. can you test it and let me know?
Are you sure you are using whoop version 0.0.3 ?
By the way, where can I find the file (template.php), to make a change in the Tabs?
You mean tab content?
You are welcome
I’m talking about whoop functions.php file.
Those texts are coming from buddypress plugin. So refer buddypress translation files
If you need only reviews and map, please paste this code in your functions.php file
add_filter('geodir_detail_page_tab_list_extend', 'wpgeo49961_detail_page_tab_list_extend', 20); function wpgeo49961_detail_page_tab_list_extend($tab_array) { if (isset($tab_array['post_profile'])) { unset($tab_array['post_profile']); } if (isset($tab_array['special_offers'])) { unset($tab_array['special_offers']); } if (isset($tab_array['post_info'])) { unset($tab_array['post_info']); } if (isset($tab_array['post_images'])) { unset($tab_array['post_images']); } if (isset($tab_array['post_video'])) { unset($tab_array['post_video']); } if (isset($tab_array['special_offers'])) { unset($tab_array['special_offers']); } return $tab_array; }
-
AuthorPosts