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

    (@pputzer)

    Hi @latin24. Technically that is becausae Divi apparently does not apply the standard content filters to the “Person module”. I’ve looked on the web, but there does not seem to be any public documentation on whether there are alternate filter hooks that could be used. As this is a commercial product, you’d have to ask the theme vendor for support.

    I do have a potential workaround in the form this snippet in functions.php. However, this “full page mode” is highly experimental and you will probably need to exclude certain parts of the page from being processed via the “classes to ignore” and “IDs to ignore” settings.

    add_action( 'wp_head', function() { ob_start( function( $buffer ) { return WP_Typography::process( $buffer ); } ); } );
    add_action( 'wp_footer', function() { ob_end_flush(); } );
    Plugin Author pepe

    (@pputzer)

    Hi @latin24, have you been able to resolve the issue?

    Thread Starter latin24

    (@latin24)

    Unfortunately, I have not the expertise to follow your kind suggestions. I wouldn’t really know where to start as I am new to WP. My web skills are limited to basic CSS. As things stand, I will either have to accept it or centre the text instead of justifying it.

    Thank you for your support though.

    Plugin Author pepe

    (@pputzer)

    My main suggestion was to contact Divi support, because it is an issue with their closed-source product. If they are willing to provide additional documentation (assuming there are any hooks in that module), I can help you with the development aspects.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Not working in Divi “person module”.’ is closed to new replies.