• Resolved mlimasolucoes

    (@mlimasolucoes)


    After activate FSM plugin, google web stories stop working when upload cover image:
    debug from web stories plugin:
    MISSING_URL at 8:2035
    Missing URL for attribute ‘poster-portrait-src’ in tag ‘amp-story’.

    Reproduce:
    Create new story
    upload a cover on right side, tab document
    Save and click on preview
    see debug tab error

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

Viewing 1 replies (of 1 total)
  • Plugin Author fesomia

    (@fesomia)

    You can disable featured image caption for this post type so it does not interfere with it. In the functions.php file of your theme, add the following code:

    //disables custom featured image caption for web stories posts
    add_filter( 'FSMFIC_post_type', 'disable_fic_for_custom_posttype', 10);
    
    function disable_fic_for_custom_posttype( $post_type ){
    	if ($post_type == 'web-story') return false;
    }

    Now the cover image should be saved without problem

Viewing 1 replies (of 1 total)
  • The topic ‘Conflict with Google Web Stories Plugin’ is closed to new replies.