PokaTheme » All Posts https://pokatheme.com/forums/feed/ Fri, 19 Jan 2024 03:25:56 +0000 https://bbpress.org/?v=2.6.9 en-US https://pokatheme.com/topic/customizing-review-page/#post-18556 <![CDATA[Reply To: Customizing review page]]> https://pokatheme.com/topic/customizing-review-page/#post-18556 Wed, 17 Jan 2024 08:32:27 +0000 admin Good to know! 🙂

Let us know if you need any other help.

]]>
https://pokatheme.com/topic/customizing-review-page/#post-18555 <![CDATA[Reply To: Customizing review page]]> https://pokatheme.com/topic/customizing-review-page/#post-18555 Wed, 17 Jan 2024 08:16:00 +0000 bahiservisi Thanks a lot! Working now.

]]>
https://pokatheme.com/topic/customizing-review-page/#post-18554 <![CDATA[Reply To: Customizing review page]]> https://pokatheme.com/topic/customizing-review-page/#post-18554 Wed, 17 Jan 2024 07:44:19 +0000 admin 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.

]]>
https://pokatheme.com/topic/load-more-button-not-working-for-me/#post-18553 <![CDATA[Reply To: “Load More” button not working for me]]> https://pokatheme.com/topic/load-more-button-not-working-for-me/#post-18553 Tue, 16 Jan 2024 10:42:05 +0000 clickingmedia Hello admin,

Message with FTP details sent.

Thank you,

Jaume

]]>
https://pokatheme.com/topic/customizing-review-page/#post-18552 <![CDATA[Reply To: Customizing review page]]> https://pokatheme.com/topic/customizing-review-page/#post-18552 Tue, 16 Jan 2024 08:44:35 +0000 bahiservisi 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.

]]>
https://pokatheme.com/topic/load-more-button-not-working-for-me/#post-18551 <![CDATA[Reply To: “Load More” button not working for me]]> https://pokatheme.com/topic/load-more-button-not-working-for-me/#post-18551 Tue, 16 Jan 2024 08:30:51 +0000 admin Hello again Jaume!

I checked the page, indeed it’s not working, we need to have a look at the WordPres debug.log file to see if any further info is available there.

We’ll need access to your site to check this, so please send us an email at support@pokatheme.com with your website FTP credentials to see what’s wrong.

Thanks in advance!

]]>
https://pokatheme.com/topic/customizing-review-page/#post-18550 <![CDATA[Reply To: Customizing review page]]> https://pokatheme.com/topic/customizing-review-page/#post-18550 Tue, 16 Jan 2024 08:23:34 +0000 admin 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.

]]>
https://pokatheme.com/topic/customizing-review-page/#post-18549 <![CDATA[Reply To: Customizing review page]]> https://pokatheme.com/topic/customizing-review-page/#post-18549 Tue, 16 Jan 2024 08:03:39 +0000 bahiservisi 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.

]]>
https://pokatheme.com/topic/load-more-button-not-working-for-me/#post-18546 <![CDATA[Reply To: “Load More” button not working for me]]> https://pokatheme.com/topic/load-more-button-not-working-for-me/#post-18546 Mon, 15 Jan 2024 11:46:14 +0000 clickingmedia https://pokatheme.com/topic/customizing-review-page/#post-18545 <![CDATA[Reply To: Customizing review page]]> https://pokatheme.com/topic/customizing-review-page/#post-18545 Mon, 15 Jan 2024 09:04:27 +0000 admin 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');
]]>