Giri
Forum Replies Created
-
AuthorPosts
-
Hello urbanfix, Remember you are displaying mobile layout even in desktops. In mobile layout we hide event images I guess. I’m suspecting that might be the cause.
Hi there, the fix was not applied on your site. You may have to use the file manager and change admin.css file permission manually.
Looks like /wp-content/themes/geodirectory_whoop/admin/admin.css file is not writable.
I have changed that file permission to 775. This change will be included in next version.
Thanks
Hello urbanfix, Whoop is a yelp clone. So the theme looks exactly like yelp. Event detail pages doesn’t have carousal like other post types.
The only way you can browse the images is by using the “Photo” tab (See the screenshot). But you have customised the theme heavily and it looks like you have removed those tabs.
I’m not seeing any 404 errors in console on your website. can you tell me which css file returning 404?
Please post your site url in private reply
you are using fixed width header. thats why you have this problem.
Use this in your quick css
@media only screen and (min-width: 768px) { #geodir_wrapper { margin-top: 167px !important; } }
There is no easy solution without touching parent theme code unless you are planning to hire someone.
So edit whoop style.css
Go to line 4965
It might look something like this.
@media only screen and (max-width: 767px) {
Replace that 767 with some higher number. Ex 5000
Hello jkirker, Sorry I was working on another theme. I just noticed your message.
The reason I disabled reviews from non logged in users is because all reviewer names linked to buddypress profiles just like yelp. Its not possible when the user not logged in.
Then, upon posting the review, if not logged in, ask the user to create an account while retaining their review information and the listing it is related to.
I guarantee this method will garner more reviews because people will have already invested their time in writing the review before learning that they must be logged in to do so. Sure, a percentage will leave before creating an account – but more people will create accounts.
Whoop is just a theme. The feature you are asking is a core feature. I’ll ask stiofan to take a look.
Thanks
This reply has been marked as private.It uses this template.
wp-content/plugins/geodirectory/geodirectory-templates/listing-detail.php
You have to use hooks if you would like to customize that page.
Your site is looking different in all browser because you have added this style.
div { zoom: 90%; }
Please remove them from your quick css and test it again. If you still have that problem let us know.
If you don’t want whoop to reorder your tabs just remove all your tab related custom code, then place this code in functions.php file. Make sure you use a child theme
remove_filter('geodir_detail_page_tab_list_extend', 'geodir_detail_page_tab_list_extend');
If you have manually upgraded whoop, then you have to delete this file.
wp-content/themes/geodirectory_whoop/geodirectory/listing-filter-form.php
That will solve your label problem
Paste this code in Quick CSS.
.header-right-area { width: 64% !important; }
-
AuthorPosts