Kor

Forum Replies Created

Viewing 15 posts - 15,376 through 15,390 (of 15,414 total)
  • Author
    Posts
  • in reply to: License Activation #184077

    Kor
    Moderator
    Post count: 16516

    Hi Eric,

    I’ve already assigned another member of the team to assist you with your concern. 🙂

    Thanks!

    in reply to: Child Theme #183911

    Kor
    Moderator
    Post count: 16516

    Hi there,

    Could you try replacing the functions code with the below and see if it works?

    
    
    
    function theme_enqueue_styles() {
    
        $parent_style = 'parent-style';
    
        wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
        wp_enqueue_style( 'child-style',
            get_stylesheet_directory_uri() . '/style.css',
            array( $parent_style )
        );
    }
    add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );

    Thanks!

    in reply to: Footer text color #183762

    Kor
    Moderator
    Post count: 16516

    Hi Victor,

    I’d just chime in here. You can change the footer texts colors by using the custom CSS below. Let us know if it’s what you’re looking for.

    
    
    .footer-widgets .widgettitle { /* Footer Title */
        color: #000;
    }
    
    .footer-widgets a, 
    .footer-widgets a:visited { /* Footer Link Color */
        color: #6494f4;
    }
    
    .footer-widgets a:hover { /* Footer Link Hover Color */
        color: #bbb;
    }

    Thanks!

    in reply to: Compass color change #183589

    Kor
    Moderator
    Post count: 16516

    Hi Joy,

    I’m able to replicate this on firefox browser. Inserting an !important should fix it.

    
    
    .near-compass.dropdown-open i.fa.fa-compass {
        color: pink !important;
    }

    Thanks!

    in reply to: Compass color change #183554

    Kor
    Moderator
    Post count: 16516
    This reply has been marked as private.
    in reply to: Compass color change #183547

    Kor
    Moderator
    Post count: 16516

    Hi Joy,

    The custom CSS below should work. It changes the color of the compass if it’s active. Let us know if it works.

    
    
    .near-compass.dropdown-open i.fa.fa-compass {
        color:pink;
    }

    Thanks!

    in reply to: Unable to uodate plugins #183545

    Kor
    Moderator
    Post count: 16516

    Hi madco,

    I’ve just checked your Website and everything seems fine. Well, let us know if you need anything or if it comes up again!

    Thanks!

    in reply to: Licence Renewal and Updateissues #183541

    Kor
    Moderator
    Post count: 16516

    Hi Powerboat,

    Just letting you know that Paolo will be attending to you in a couple of hours time. Meanwhile, it would be great if you can share your website URL and wp-admin credentials here in a private reply for him to check the issue.

    Thanks!


    Kor
    Moderator
    Post count: 16516

    Hi Iconraju,

    Applying the custom CSS code below into your theme should fix it.

    
    
    .ac_results {
        top: 70px!important;
    }
    in reply to: Unable to uodate plugins #183503

    Kor
    Moderator
    Post count: 16516

    Hi Madco,

    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: Compass color change #183502

    Kor
    Moderator
    Post count: 16516

    Hi Joy,

    You can change the color and hover color of the compass using the custom CSS below.

    
    
    .near-compass i.fa.fa-compass {
        color:#000;
    }
    
    .near-compass i.fa.fa-compass:hover {
        color:#ffa500;
    }

    Let us know if it works.

    in reply to: Show Event Tag on Event Detail Page #183490

    Kor
    Moderator
    Post count: 16516

    Hi Kenneth,

    Sorry to hear about the frustration here. Do you think you can share your Website URL for us to have a better look at your issue? Meanwhile, I’d like you to go through the docs and see if you’ve missed out anything. https://wpgeodirectory.com/docs/category/themes/whoop/

    Also, you can use the private reply option below.

    Thanks.

    in reply to: Blog posts #183448

    Kor
    Moderator
    Post count: 16516

    Hi there,

    Thanks for reaching us with your question. If you would like to display blog posts on your Directory homepage. Go to Appearance > Widget > Drag Recent Posts Widget to the “GD Home Content Section” and if you would like to feature a post, apply “sticky” to the post. Let us know if it’s what you’re looking for.

    in reply to: Address not working #181605

    Kor
    Moderator
    Post count: 16516

    Hi Kerri,

    I’m going to need to transfer this to one of our developers for a second check on the address issue. Meanwhile, use the custom CSS below to center the GD posts.

    
    
    .geodir_category_list_view {
        text-align: Center;
    }

    and here’s how you can center the ads Widget at the footer.

    
    
    section#advtwidget-8 {
        text-align: center;
    }
    in reply to: Styling #181598

    Kor
    Moderator
    Post count: 16516

    Hi Kerri,

    Let’s just refer to this topic. 🙂 https://wpgeodirectory.com/support/topic/address-not-working/#post-181555

    Thanks!

Viewing 15 posts - 15,376 through 15,390 (of 15,414 total)