sflwa
Forum Replies Created
-
@muddasirhayat
Thank you so much. I can confirm that this is now working and look forward to using this on all my websites.@muddasirhayat
So the good news is that the sending test is there.
The header logo did not have the right size – ETS-21 as I shared a vimeo link walkthru and i believe i found the specific file causing the issue which i noted in the ticket along with my database values for the options for the pluginSo I just went to open the ticket and I went to paste in the URL and i saw it’s working now. I had cleared the server cache – but apparently Elementor cache was still enabled so that was causing the issue
Thanks
@juliangk
FluentCRM is a free plugin – this is an issue with both the free and paid version so you can get the latest version from the WordPress RepoThe issue is that Fluent changed their URL path / format so you need to update your plugin in order to address this. The code snippet i provided replaces the function in your file and fixes the issue
Yes that code snippet fixed the issue, but I shouldn’t have to add a code snippet to every site. I have a number of sites where i haven’t added it as i haven’t had a need to send an email recently and I was hoping for a fix in the plugin
@sadmansakibnadvi I just test it, and it still isn’t working, I even updated the time in and admin and it did adjust the time with the same offset issue, so it is not a cache issue.@wfpeter Thanks, I am a Central user already so I’ll do that instead. I’m just trying to save time with onboarding
@muddasirhayat
I deleted the plugin (cleared all server caches) and redownloaded the same folder 10 from the google drive
1) I’m not running woocommerce
2) When I’m on the root of the customizer I see: Change Template, Settings, Template, Email Header, Email Body, Footer, Postman SMTP (NEW)
3) The logo size is displaying correct in the preview and even has the correct code, but when sending it is still using the previous code@muddasirhayat
I just tried the latest zip you provided which is still showing as 1.5.12 I flushed all my caches etc
1) The header graphic size didn’t change yet
2) There was no send test per your screenshotThank you so much. Since we’ve moved beyond the original specific item on this thread – I’ll open a support ticket (I already have an account on the portal) and share a vimeo link / any additional notes I have.
Pending the fix for the image (as i had set the width in the customizer) I am ready to use this plugin and otherwise consider this resolved once the new version is published@muddasirhayat
THANK YOU – This is great and worked exactly as expected. I do have a couple of quick follow ups
1) Logo Image – I removed the logo text I have the image set to max width 155, below is the html (show original) from the email generated.2) Test Email – My SMTP plugin has a test link -but it would be great to be able to test from within the customizer
<h1 style="
color: #ffffff;
margin:0;
padding: 28px 24px;
display:block;
font-family:Arial;
font-size: 30px;
font-weight:bold;
text-align:center;
line-height: 150%;
" id="logo">
<a style="
color: #ffffff;
text-decoration: none;
" href="https://sterlinglakeshoa.us" title="Sterling Lakes HOA"><img style=max-width:100%; src="https://sterlinglakeshoa.us/wp-content/uploads/2022/10/IMG_0351.jpg" alt=""/> </a>
</h1>Hello
1) I have be using WP HTML Mail for years but it doesn’t seem to be actively supported anymore
2) I am a power using on Advanced File Manager
3) The issue with FluentCRM specifically is that FluentCRM is an email / campaign plugin – you are building the email / design in the plugin. When using the email template customizer (yours and others) you end up with a double wrapper which is what I’m trying to avoid.
4) Google AI gave me a code snippet if I wanted to use your plugin and disable it for FluentCRM, but that is the same difference of me fixing WP HTML Mail for what broke with FluentCRM 3.0 – I’d like something nativeSo I’m not sure who else might run into this and since i have 60+ sites affected – Fluent Changed their URL structure – here it the code that fixes it
File: wp-html-mail/includes/class-haet-sender-plugin-fluent-crm.php
public function __construct( $mail ) {
// 1. Check classic POST fields (for backward compatibility)
$is_fluent_post = array_key_exists( 'campaign', $_POST ) || array_key_exists( 'campaign_id', $_POST );
// 2. Check modern REST API pathways or specific URL fragments
$is_fluent_api = ( isset( $_SERVER['REQUEST_URI'] ) && strpos( $_SERVER['REQUEST_URI'], 'fluent-crm' ) !== false );
// 3. Fallback: Search the email message body itself for core identifiers
$is_fluent_body = ( strpos( $mail['message'], 'fluentcrm' ) !== false || strpos( $mail['message'], 'fluent-crm' ) !== false );
if ( ! $is_fluent_post && ! $is_fluent_api && ! $is_fluent_body ) {
throw new Haet_Different_Plugin_Exception();
}
}Forum: Plugins
In reply to: [Simple Calendar - Google Calendar Plugin] Custom Shortcode in TemplateThe answer is yes – my issue was I was doing nested tags to pass attributes – I instead wrapped the attributes and it is working