Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter eliboni

    (@eliboni)

    Whoops! Many thanks ??

    It works, however I noticed the following text appearing in the Profile Builder page after the registration, just for few secs before the redirect (I replaced the real domain with mydomain):

    Array ( [sender_name] => mydomain - semplice e unico [sender_email] => [email protected] [replace_template] => on [default_template] => Default [version] => 1.3 [override_all_mails] => 1 ) Array ( [sender_name] => mydomain - semplice e unico [sender_email] => [email protected] [replace_template] => on [default_template] => Default [version] => 1.3 [override_all_mails] => 1 )

    is there any debug still active?

    Enrico

    Thread Starter eliboni

    (@eliboni)

    I did some further investigations and it came out that Profile Builder is creating and sending its own email. So I believe this thread could be marked as solved.

    Now, I found the code where Profile Builder is sending the email and my guess is that if I replace the call to its own function (line 471 in profile-builder/functions/email.confirmation.php) with a call to the standard wordpress

    wp_new_user_notification( $user_id, $plaintext_pass )

    then EZ Emails should detect this and send the email with the nice format… right?

    Thanks… or grazie,
    Enrico

    Thread Starter eliboni

    (@eliboni)

    Hey, I fixed this: in single.php the code used to retrieve “Delicacy_recipe” is not properly parsed, i.e. the line:

    <?php echo get_post_meta($post->ID, “Delicacy_recipe”, true);>

    should become:

    <?php echo str_replace(‘]]>’, ‘]]>’, apply_filters(‘the_content’, get_post_meta($post->ID, “Delicacy_recipe”, true))); ?>

    Not 100% sure this is the best way to achieve the result butit works – I believe this could be a fix for next releases…

    thx – Enrico

Viewing 3 replies - 1 through 3 (of 3 total)