Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author pepe

    (@pputzer)

    I’ll look into it on the weekend. There are several ways the plugins could conflict.

    Plugin Author pepe

    (@pputzer)

    Hi @collaborato,

    this is caused by some invalid HTML getting “fixed” by the HTML parser in wp-Typography. You can eliminate the issue by applying the following patch to 3d-flipbook-dflip-lite/inc/shortcode.php:

    --- shortcode.php.orig	2021-10-12 23:52:28.000000000 +0200
    +++ shortcode.php	2021-10-13 00:05:06.000000000 +0200
    @@ -341,6 +341,10 @@
           $atts['source'] = esc_attr( $attr['source'] );
         }
         foreach ( $atts as $key => $value ) {
    +	if ( 'id' === $key || 'class' === $key ) {
    +		continue;
    +	}
    +
           $attrHTML .= esc_attr( $key ) . '="' . esc_attr( $value ) . '" ';
         }
    

    Ultimately, this needs to be tackled by DearFlip’s developers.

    Thread Starter collaborato

    (@collaborato)

    Thanks Pepe, I will check it out.

    Plugin Author pepe

    (@pputzer)

    @collaborato: Have you been able to apply the workaround patch?

    Plugin Author pepe

    (@pputzer)

    Any news, @collaborato?

    Thread Starter collaborato

    (@collaborato)

    Thanks Pepe, applied the patch and it works. I will tell the folks at PDF-Flipbook about it.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Interferes with Plugin “PDF-Flipbook” by DearHive’ is closed to new replies.