Kor
Forum Replies Created
-
AuthorPosts
-
Hi Rawad,
Could you try adjusting width in GD > Design > Listing and see if it’s works for you? If not, do you think you can share temp admin access to your site so we can take a better look? You can post the details here using the private reply option below.
Also, you can replace “Add Place” with something else using the translation file: https://wpgeodirectory.com/docs/translate-core/
Let us know how it goes.
May 26, 2016 at 8:02 am in reply to: JS errors causing issue: "Uncaught ReferenceError: gd_infowindow is not define" #198440Hi Chris,
We’ll help where we can here, but it’s definitely looking like there’s a plugin conflict. Hard to tell without seeing the backend and doing some inspecting. Do you think you can share temp admin access to your site so we can take a better look? You can post the details here using the private reply option below.
Thanks!
Hi Yushan,
Yes, this can be achieved by using the code below. Please insert this into your child theme functions.php file. To set a default tab, insert “[‘is_active_tab’]=’1′” into a “$new_tab_array“. Example, check out the “reviews” section below.
function override_whoop_filters() { remove_filter('geodir_detail_page_tab_list_extend', 'geodir_detail_page_tab_list_extend'); add_filter('geodir_detail_page_tab_list_extend', 'my_geodir_detail_page_tab_list_extend'); } add_action('init', 'override_whoop_filters'); function my_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['post_profile'])) { $new_tab_array['post_profile'] = $tab_array['post_profile']; // set in new array unset($tab_array['post_profile']);//unset in old one } 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_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['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_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_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; }
Hi Amy,
Could you please check if you’ve this option ticked “Resize image large size” in GD > Design > Home ? Try unticking it and see if it looks better http://prntscr.com/b8kbmy . Let us know how it goes.
Thank!
Hi Yushan,
Do you mind sharing the URL of the site in question? It would be if you can share temp admin access to your site so we can take a better look. You can use the private reply option below.
Thanks!
Hi Sorriso,
Do you mind sharing the URL of the site in question so we can take a look? You can use the private reply option below.
Thanks!
May 25, 2016 at 9:52 am in reply to: Changing LISTING menu text, plus aligning Categories and Pin Size #197764Hi Simon,
Could you try using a custom menu instead of the premade menu? To do that, remove the menu from “Navigation Locations”. Then create a custom menu and insert the pages you wish to show on the menu.
You can’t customize the search are out of the box, but we have an add-on that will allow you to filter your search by categories. https://wpgeodirectory.com/downloads/advanced-search-filters/ Let us know if it’s what you’re looking for.
Thanks!
May 25, 2016 at 9:10 am in reply to: Changing LISTING menu text, plus aligning Categories and Pin Size #197729Hi Simon,
You can change the menu text in the menu settings. Go to Appearance > Menu. As for aligning the categories center, do you mind sharing the URL of the site in question so we can take a look? You can use the private reply option below. Also, do you mind sharing a screenshot of what you are trying to achieve? Let me know if I’m misunderstanding your question.
Thanks!
Hi
Could you try using the CSS below to hide it ? Let us know if it works.
.geodir-pcomments { display: none; }
Thanks!
Hi nycinsider,
Do you think you can share temp admin access to your site so we can take a better look at the child theme structure? You can post the details here using the private reply option below.
Thanks!
Hi Dylan,
Sorry to hear about the problem. Do you think you can share temp admin access to your site so we can take a better look? You can post the details here using the private reply option below.
Thanks!
Hi Jorge,
Sorry for not explaining things carefully here. I’d like to confirm that the “Feature Image” is supposed to display when you share it to Facebook. If you would like customize that feature, you can apply a hook to this function https://github.com/GeoDirectory/geodirectory/blob/master/geodirectory-functions/post_functions.php#L3047 .
Back to your issue, do you think you can share temp admin access to your site so we can take a better look? Also, please send us a link to an example where this can be viewed/replicated on the frontend of your site and we’ll try and help you with this.
Thanks!
Hi Jorge,
Sorry about that. Could you please tell me what you’re trying to achieve there?
Thanks!
Hi Robert,
Sorry, I’m not getting this. Could you tell us a little bit more about what you’re trying to achieve?
Thanks!
Hi Dotty,
Please try the custom CSS code below and see if it’s what you’re looking for.
.geodir-edit { font-size: 10px; } .geodir-entry-title { font-size:20px; } .geodir-entry-content p{ font-size:20px!important; }
Thanks!
-
AuthorPosts