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

    (@xnau)

    I don’t recognize that function, and it’s not part of Participant Database. Try deactivating some other plugins to see if it solves the problem.

    Thread Starter untalbob

    (@untalbob)

    xnau,

    I deactivated all plugins and the problem persists.

    I think its a problem with my theme, is it possible?

    Because the full error is this:

    Fatal error: Call to undefined function et_pb_post_format() in /home3/sky/public_html/skypuntos.com/wp-content/themes/Divi/functions.php on line 7512

    And I went to the functions file and looked for line 7512(the second line):

    function et_remove_blockquote_from_content( $content ) {
    	if ( 'quote' !== et_pb_post_format() ) {
    		return $content;
    	}
    
    	$content = preg_replace( '/<blockquote>(.+?)<\/blockquote>/is', '', $content, 1 );
    
    	return $content;
    }
    add_filter( 'the_content', 'et_remove_blockquote_from_content' );
    Plugin Author xnau webdesign

    (@xnau)

    That function looks like a theme template function. Did you ask this question on the Divi theme support board?

    Thread Starter untalbob

    (@untalbob)

    I hadn’t, but I already asked them, as soon as I have a reply or solution I will post it here.

    Thanks.

    Thread Starter untalbob

    (@untalbob)

    No luck with the Divi people, they didnt offer good support, they said they dont guaranteee support with third party plugins. :S I still though posted my problem on one of the divi community forums.

    Is there another way to email a forgotten link?

    Plugin Author xnau webdesign

    (@xnau)

    I can understand their attitude about 3rd party plugins, but I still think it’s their fault the filter is getting called before the function is defined.

    Anyway, you can prevent this error by commenting out the filter:

    // add_filter( 'the_content', 'et_remove_blockquote_from_content' );

    The drawback is that it will affect the formatting of any posts that use the “quote” post format, but you can probably even fix that with some CSS rules.

    Technically, the best way to do this is to remove the filter in your child theme functions file, but if you’re not using a child theme, you can do it this way. It won’t survive a theme update, however.

    I can’t tell you how to fix it from the plugin side of things because it’s not clear to me how it’s related.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Fatal error on Resend Link form’ is closed to new replies.