• Resolved katyaman

    (@katyaman)


    Hello Community I have published my 120 episodes of the podcast without incident, but from the 121, I see that it does not spread on the different platforms, what can it be?

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Angelo Mandato

    (@amandato)

    Hello @katyaman,

    At line 508 (content of episode 120) there is some unknown character, as if the content is not UTF8. I would re-create that episode in WordPress, make sure you copy the text for the body from a safe source such as a text editor.

    Also while validating i noticed that you have noindex set for your podcast feed, this will prevent Google and other search based podcast directories from indexing your podcast feed. If you are using Yoast SEO, this will be automatically fixed by the next release of PowerPress, but until then you can disable this option in Yoast.

    Thanks,
    Angelo

    Thread Starter katyaman

    (@katyaman)

    Super Angelo, thank you very much, it was solved by removing that character, I will take into account your suggestions about the editor.
    but on the index, I have installed yoast, but I know where to modify that, if you can help me, thank you very much again

    Plugin Author Angelo Mandato

    (@amandato)

    Hello,

    You have 3 options, you can pick one…

    1. Go to PowerPress Settings >Feeds tab, there is an option near the top to prevent other plugins and themes from modifying your feed. Check this option then click save.

    – or –

    2. You can follow these directions and change Yoast SEO’s plugin: https://yoast.com/wordpress/plugins/seo/yoast-seo-robots-meta-configuration/

    – or –

    3. Edit class-frontend.php, fiund the following source in the file:

    	public function noindex_feed() {
    
    		if ( ( is_feed() || is_robots() ) && headers_sent() === false ) {
    			header( 'X-Robots-Tag: noindex, follow', true );
    
    			return true;
    		}
    
    		return false;
    	}

    Remove by commenting out (adding 2 slashes) in front of the header() function call…

    	public function noindex_feed() {
    
    		if ( ( is_feed() || is_robots() ) && headers_sent() === false ) {
    			//header( 'X-Robots-Tag: noindex, follow', true );
    
    			return true;
    		}
    
    		return false;
    	}

    Thanks,
    Angelo

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Since episode 121 is no longer published on platforms’ is closed to new replies.