Giri
Forum Replies Created
-
AuthorPosts
-
You have to modify code in two files
wp-content/themes/geodirectory_whoop/functions/reviews.php wp-content/themes/geodirectory_whoop/reviews.php
You should hire someone to do that. Because explaining you would take me more time than doing it by myself.
Hi there, you need to use video embed code for sidebar videos. so plain video urls won’t work
I’m talking about the complication in development. It requires code refactoring to achieve that layout.
Andi, Reply button not there when you enable “Limit 1 Review / User / Post” option because we are removing the comment form for that particular user once the user left a review. So displaying reply button will make things complicated.
You are welcome 🙂
@frank, you can copy and paste the same code in child theme. Most likely it would work. Let me know if it doesn’t work
https://wpgeodirectory.com/support/topic/documentation-for-list-manager/#post-239264
Hi fws2016, I thought it was fixed. But a user reported that bug again 2 days back. I have fixed that yesterday.
Just applied the fix on your site. You can test now.
Thanks
Hello Ernest. I have modified some code in GD lists addon and whoop theme and applied the changes on your website. Can you test it and let me know?
Thanks
You are welcome simon..
Hi there, we have fixed this bug.
I have applied the fix on your website.
Thanks
Please use this code to move video to sidebar.
https://wordpress.org/plugins/code-snippets/
So please install that plugin, activate it.
Add the code added by me above and then activate it.
add_filter('geodir_detail_page_tab_is_display', 'custom_gd_hide_video_tab', 10, 2); function custom_gd_hide_video_tab($value, $tab) { if ($tab == 'post_video') { $value = false; } return $value; } add_action('geodir_detail_sidebar_inside', 'custom_gd_show_video_in_sidebar', 1); function custom_gd_show_video_in_sidebar() { global $post; $video = ''; if (geodir_is_page('preview')) { $video = isset($post->geodir_video) ? $post->geodir_video : ''; } elseif (geodir_is_page('detail')) { $video = geodir_get_video($post->ID); } if ($video != '') { echo '<div class="geodir-video-wrapper">'; echo stripslashes($video); echo '</div>'; } } add_action('wp_head', 'custom_video_responsive_css'); function custom_video_responsive_css() { if (geodir_is_page('preview') || geodir_is_page('detail')) { ?> <style type="text/css"> .geodir-video-wrapper { margin-top: 20px; position: relative; padding-bottom: 56.25%; /* 16:9 */ padding-top: 25px; height: 0; margin-bottom: 10px; } .geodir-video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } </style> <?php } }
Hi there, we have confirmed this bug. Assigned to event addon developer.
Please refer these screenshots to understand the bug
Add Event page:
http://www.awesomescreenshot.com/image/1452081/8232c8baeedceaac21f1271ecadce62d
After “Go back and Edit”
http://www.awesomescreenshot.com/image/1452085/aad92a5948e3e2014cf973d9abbdd1f4
Did you made any customisation in event detail template?
can you give me your ftp details?
August 4, 2016 at 11:46 am in reply to: Split: "Get Directions" button to Open Google Maps Link #240623Ok, No problem. Let us know if you need our help in the future. Happy to help
Thanks
August 4, 2016 at 11:19 am in reply to: Split: "Get Directions" button to Open Google Maps Link #240620I think you should have waited little longer. Thats why i asked you to wait yesterday. I have just fixed a bug which might be the cause of your issue.
https://wpgeodirectory.com/support/topic/map-tab-on-single-event-page/#post-240619
Anyway, if your site is not a production site and you don’t have huge traffic, then it wont be an issue I guess.
Let us know if you bump into a problem.
Thanks
-
AuthorPosts