lbbjon
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-Members Membership Plugin] HTML emailsAlso, are there any risks associated with adding this php filter via a custom plugin? I.e. would it affect other emailing/notification plugins or operations I have set up.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] HTML emailsThanks for getting back to me Chad.
I am not really familiar with php, but if I created a custom plugin and activate it, would this override the core code or replace it? – If I were to use the php filter that specifically targets the wp-members plugin:
add_filter( 'wpmem_email_headers', 'my_wpmem_html_email' ); function my_wpmem_html_email() { return "Content-Type: text/html"; }Many thanks,
Jon.Yeah, another form on my site was using reCAPTCHA too, but not on the same page. However, non-conflict mode seems to be resolving my issue, so may consider leaving it enabled.
Thanks for the reply, I see, I didn’t receive any reply via the site yesterday. I’ve checked spam/junk, but no luck.
I will check with IT. What’s the domain/email address? So I can find out whether emails are being blocked/filtered, as well as potentially whitelist the address.
Many thanks,
Jon.*UPDATE* I have enabled ‘Non-conflict Mode’ and it seems to solve the problem. What does ‘Non-conflict Mode’ do differently?
Many thanks,
Jon.Also to add, when I disable Google reCaptcha, I am able to submit the form. Which I guess means the problem lies somewhere within the reCaptcha element.
I’ve got a screenshot, which may be useful: https://i.paste.pics/e0ff7bcff6830722803c8b11eda0bfcc.png
Thanks,
I have tried purchasing your add-ons from https://betternotificationsforwp.com/. On the first attempt, the payment portal timed out (504 error), the next attempt I got received an error saying I could not purchase the add-ons because I was not logged in.
Please can you help! I have not received any confirmation email, so not sure what is going on.
Many thanks,
Jon.Sure, the site is not live yet and requires access to view. I would need to send you the details in order for you to view the site.
Have you got an email or private support ticket I could raise, so I can send you the details?
Many thanks,
Jon.Did you get anywhere with this issue at all?
Sure thing
Hello,
I’ve used my email template in a Post and here is the result when published:
https://i.paste.pics/7e90484106b3d57df89ac3d1550d5934.pngI did not use the php function in the screenshot and seemed to work okay. Is there a difference between your notification editor and a regular post editor?
That’s a good idea! I’ll take a look into that and get back to you.
That’s quite interesting, thanks for finding that link.
I tried using that code within a <script> </script> tag (I presume that’s correct), but still resulted in: https://i.paste.pics/22bceeb365d40e6441680ae61de5cee5.png
Do I need to customise this piece of script at all? (If you know?):
add_filter(‘tiny_mce_before_init’, ‘vsl2014_filter_tiny_mce_before_init’);
function vsl2014_filter_tiny_mce_before_init( $options ) {if ( ! isset( $options[‘extended_valid_elements’] ) ) {
$options[‘extended_valid_elements’] = ‘style’;
} else {
$options[‘extended_valid_elements’] .= ‘,style’;
}if ( ! isset( $options[‘valid_children’] ) ) {
$options[‘valid_children’] = ‘+body[style]’;
} else {
$options[‘valid_children’] .= ‘,+body[style]’;
}if ( ! isset( $options[‘custom_elements’] ) ) {
$options[‘custom_elements’] = ‘style’;
} else {
$options[‘custom_elements’] .= ‘,style’;
}return $options;
}Hi,
Thanks for getting back to me.
That’s the thing, <style> & </style> is included within the raw html, but it seems the editor likes to remove it. ¯\_(ツ)_/¯
Template here:
https://pastebin.com/FuWtGYsGMany thanks,
Jon.