breeakpoint
Forum Replies Created
-
yeah here is the ticket https://core.trac.ww.wp.xz.cn/ticket/43542
No worries, I did’nt mention it in my post but a comment in my code. It is an issue with core WordPress that should be fixed in v5.3 (but I have not confirmed if it was as I have not upgraded yet)
Forum: Plugins
In reply to: [User Verification by PickPlugins] clear social registrationFor the developers here is some details
https://nextendweb.com/nextend-social-login-docs/login-restriction/
Forum: Plugins
In reply to: [User Verification by PickPlugins] Resend verification emailSorry to hear that as that method is definitely the best. Maybe you can ask the theme maker for help?
Otherwise,
So for removing the Resend verification email text you can edit the translation file at
wp-content\plugins\user-verification\languages\user-verification.pot and make that term be blank. This plugin might help you easily: https://ww.wp.xz.cn/plugins/loco-translate/Or you can edit the file at wp-content\plugins\user-verification\includes\functions.php and remove the text on line 669.
Change
__('Resend verification email','user-verification' )to__('','user-verification' )But these are more of temporary fixes.
- This reply was modified 6 years, 7 months ago by breeakpoint.
Forum: Plugins
In reply to: [User Verification by PickPlugins] clear social registrationGreat suggestion, I use the plugin Nextend Social Login so if anything can be done to integrate with this?
Forum: Plugins
In reply to: [User Verification by PickPlugins] Resend verification emailThe issue is that the theme you are using most likely strips out the tags of the error message thus removing the HTML link.
In my case it was this code, but yours might be a little different
$error = strip_tags($user_signon->get_error_message());I have fixed the issue with the following code in my function.php
/* PHPMailer inserts the below custom headers so we must remove them as it creates duplicate issues with AWS SES. WP potential fix of issue will come with 5.3. https://core.trac.ww.wp.xz.cn/ticket/43542 */ add_action('phpmailer_init', 'phpmailer_init_fix'); function phpmailer_init_fix($mailer) { $headers = $mailer->getCustomHeaders(); $mailer->clearCustomHeaders(); foreach ($headers as $key => $header) { if ($key !== 'MIME-Version' && $key !== 'X-Mailer' ) { $mailer->addCustomHeader($key, $header); } } }Can you provide an update on this issue?
To my understanding WP Mail SMTP is supposed to overwrite/correct the headers. I have other plugins that create duplicate MIME-Version headers and AWS SES is refusing to send these as well.
- This reply was modified 6 years, 8 months ago by breeakpoint.
Forum: Plugins
In reply to: [Zendesk Support for Wordpress] Empty error on backendhere is the fix
https://ww.wp.xz.cn/support/topic/error-message-with-no-content/Forum: Plugins
In reply to: [Zendesk Support for Wordpress] Plugin outputs warnings with PHP 7.2not all heroes wear capes 😀 thank you
I contacted their support and it was less than adequate in understanding the issue.
- This reply was modified 6 years, 9 months ago by breeakpoint.
Good eye, it was the single quote being a magic quote. It now works with fixing it to single quotes
'I copied the bad code originally from the WordPress page at https://ww.wp.xz.cn/plugins/contact-form-7-dynamic-text-extension/
You will see the defect in the code there under the Custom Fields section as
[dynamictext dynamicname “CF7_get_custom_field key=’my_custom_field'”]Can you please make the changes there as well to avoid someone in the future doing the same? Thank you again!
ok, is there a way to remove the required option from the form builder?
I can confirm the same issue.
These tags are specific to Contact Form 7 called Special Mail Tags
https://contactform7.com/special-mail-tags/Forum: Plugins
In reply to: [W3 Total Cache] Better way to list custom files?The posts are for different issues.
But I was curious why is W3TC rewriting files that are not being uploaded to S3?
And is there a easy way to determine what needs to be added as extra to the Custom Files list. Because currently I just load each page and see what is not loading from the Developer Console.
I have re-written my list to be a little more generic. But I am not sure if I should even be more generic and upload more from the upload folder.
favicon.ico {wp_content_dir}/gallery/* {wp_content_dir}/uploads/avatars/* {plugins_dir}/wordpress-seo/css/xml-sitemap.xsl {plugins_dir}/wp-minify/min* {plugins_dir}/*.js {plugins_dir}/*.css {plugins_dir}/*.gif {plugins_dir}/*.jpg {plugins_dir}/*.png {plugins_dir}/*.ttf {plugins_dir}/*.otf {plugins_dir}/*.woff {plugins_dir}/*.woff2 {plugins_dir}/*.less {uploads_dir}/bb-plugin/*.css {uploads_dir}/bb-plugin/*.js {uploads_dir}/bb-plugin/*.woff {uploads_dir}/bb-plugin/*.ttf {uploads_dir}/bb-theme/*.css {wp_content_dir}/themes/bb-theme/*.css {wp_content_dir}/themes/bb-theme/*.js {plugins_dir}/woocommerce/assets/images/icons/*.svg- This reply was modified 7 years, 3 months ago by breeakpoint.
- This reply was modified 7 years, 3 months ago by breeakpoint.
Forum: Plugins
In reply to: [W3 Total Cache] Better way to list custom files?Or how can I get W3TC to not rewrite the path to the files that are not listed by default in the Custom Files textarea?
With the default listing, it breaks the web page from loading because it is rewriting the url for files that were automatically loaded to the S3.
Or is this normal behavior?
- This reply was modified 7 years, 3 months ago by breeakpoint.