Kor

Forum Replies Created

Viewing 15 posts - 15,211 through 15,225 (of 15,414 total)
  • Author
    Posts
  • in reply to: How do you make the listing page full-width? #198443

    Kor
    Moderator
    Post count: 16516

    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.


    Kor
    Moderator
    Post count: 16516

    Hi 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!

    in reply to: default to other instead of profile #198404

    Kor
    Moderator
    Post count: 16516

    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;
    }
    in reply to: Listings page thumbnail size #198340

    Kor
    Moderator
    Post count: 16516

    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!

    in reply to: hamburger icon empty #198289

    Kor
    Moderator
    Post count: 16516

    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!

    in reply to: google showing star rating #198221

    Kor
    Moderator
    Post count: 16516

    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!


    Kor
    Moderator
    Post count: 16516

    Hi 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!


    Kor
    Moderator
    Post count: 16516

    Hi 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!

    in reply to: Hide "Write a Review" button #197686

    Kor
    Moderator
    Post count: 16516

    Hi

    Could you try using the CSS below to hide it ? Let us know if it works.

    
    
    .geodir-pcomments {
        display: none;
    }

    Thanks!

    in reply to: CSS Child for GD #197643

    Kor
    Moderator
    Post count: 16516

    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!

    in reply to: 404 error on listing pages #197642

    Kor
    Moderator
    Post count: 16516

    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!

    in reply to: Events #197252

    Kor
    Moderator
    Post count: 16516

    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!

    in reply to: Events #197222

    Kor
    Moderator
    Post count: 16516

    Hi Jorge,

    Sorry about that. Could you please tell me what you’re trying to achieve there?

    Thanks!

    in reply to: HTML Editing Options for Special Offers? #197186

    Kor
    Moderator
    Post count: 16516

    Hi Robert,

    Sorry, I’m not getting this. Could you tell us a little bit more about what you’re trying to achieve?

    Thanks!

    in reply to: Change size of text #197185

    Kor
    Moderator
    Post count: 16516

    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!

Viewing 15 posts - 15,211 through 15,225 (of 15,414 total)
20% Discount Offer
Hurry! Get your 20% discount before it expires. Get 20% Discount