How can we help?

If you are looking for support for our PokaTheme, this is the place!

Home Forums Poka Review Plugin support Customizing review page

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #18525
    bahiservisi
    Participant

    Dear Team,

    We are writing to inquire about the possibility of customizing and potentially noindexing the review page generated by the Poka Theme on our website. The review page can be found at the following URL:

    https://casino-panett.com/review

    https://prnt.sc/ElC2bgtrBHIX

    Our primary goal is to tailor the page’s content and design to align seamlessly with our brand’s overall identity and aesthetic. Additionally, we would like to consider removing the page from search engine indexing to prevent it from appearing in search results.

    Please advise on whether this is feasible and provide guidance on the steps involved in making these changes while ensuring that our brand review page remains unaffected.

    We appreciate your assistance in this matter.

    #18533
    admin
    Keymaster

    Hello!

    So what you want to do is just to hide this page (https://casino-panett.com/review) from indexing. Correct?

    #18543
    bahiservisi
    Participant

    Hi,

    Not hide url can stay but stop indexing. As you know every page,post or affiliate has index and noindex option but this url generated it self and we couldnt find how to noindex.

    #18545
    admin
    Keymaster

    You can do this by adding a meta tag to the HTML head section of that specific page. You can achieve this using this code. You could add it to your child theme’s functions.php or using a plugin like Code Snippets.

    function add_noindex_meta_tag() {
        // Check if it's the specific archive page you want to target
        if (is_post_type_archive('affiliates')) {
            echo '<meta name="robots" content="noindex, follow" />';
        }
    }
    add_action('wp_head', 'add_noindex_meta_tag');
    
    #18549
    bahiservisi
    Participant

    Thanks for your help.

    I tried and it works on Poka child theme’s functions.php but my website on Pokatheme not child. When ı check on that i didnt work.

    #18550
    admin
    Keymaster

    Did you activate the PokaTheme Child theme?

    When you are using a child theme (PokaTheme child), then all the functionality of the parent theme (PokaTheme) still remains, this is the purpose of the child themes.

    So you should activate the PokaTheme child theme on your website.

    #18552
    bahiservisi
    Participant

    I added the code on Poka theme child function.php and when ı check that page (https://casino-panett.com/review) its show noindex. Which is fine. But when I return to (PokaTheme) that page still indexing.

    #18554
    admin
    Keymaster

    Hello,

    I told you that you could add it to your child theme’s functions.php or using a plugin like Code Snippets.

    So if you don’t want to have PokaTheme child theme active, then you should install Code Snippets plugin and add the code there.

    #18555
    bahiservisi
    Participant

    Thanks a lot! Working now.

    #18556
    admin
    Keymaster

    Good to know! 🙂

    Let us know if you need any other help.

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.