• Dmitrii

    (@odminstudios)


    Hey, MarffeelPress team,

    your plugin breaks all the iframe links for amp pages. Can you please add an option to disable changing links for amp iframes?

    Or if you could have added the following changes to your code, I’d be able to hook properly:

    marfeelpress/includes/base/src/processors/modifiers/class-widget-placement-factory.php#L49
    from

    
    $amp_iframe->append( $this->create_placeholder() );
    

    to

    
    if ( apply_filters( 'mrf_iframe_append', true ) ) {
    	$amp_iframe->append( $this->create_placeholder() );
    }
    

    marfeelpress/includes/base/src/processors/modifiers/class-widget-placement-factory.php#L67

    from

    
    return $base_url . $params;
    

    to

    
    return apply_filters( 'mrf_iframe_url', $base_url . $params );
    
  • The topic ‘Iframe links for amp pages are broken’ is closed to new replies.