Hello !
For some time I have been getting a critical error for which the FreshMail for WordPress plugin is responsible. The errors are as follows:
1.
Active PHP session detected
The PHP session was created by calling the session_start() function. This conflicts with the REST API and loopback requests. The session should be terminated by session_write_close() before any HTTP requests are made.
and the other
The REST API encountered an error
The REST API is one of the ways WordPress and other applications communicate with the server. An example of using this mechanism is the block editor screen, which uses the REST API to display and save entries and pages.
An error was encountered while testing the REST API:
REST API address: https://www.bkszkolenia.pl/wp-json/wp/v2/types/post?context=edit
REST API response: (http_request_failed) cURL error 28: Operation timed out after 10002 milliseconds with 0 bytes received
Can it be fixed somehow?
Regards
Hi.
I need to add hidden fields option in the subscription form. With default value option. Just like in the form builder at freshmail.com. Please, please. And thank you.
Hey, I added a checkbox on checkout page. I used this code:
<p class=”comment-form-fm-sign”>
<label for=”fm-sign”>
<input id=”fm-sign” name=”fm-sign” type=”checkbox” /> Label txt
</label>
<input type=”hidden” name=”fm-sign-referer” value=”<?php echo $_SERVER[‘REQUEST_URI’]; ?>” />
</p>
Unfortunatelly, when I place an order my email address is not adding to subscribing list. Can you guys help me?
]]>Couple of days ago, I guess after wp update and/or after plugin update, WPCF7 forms stopped working, doesn’t send emails while wpsmtp tests works fine. After submitting the form the circle shows up and nothing happens. When I deactivate the plugin, WPCF7 forms works back fine. Any ideas what could be wrong? It was working fine together for more than 2 years….
]]>Hello!
Thanks for your great solution!
I’m trying to add a checkbox to the WooCommerce Checkout page. I know that your plugin comes with a built-in option, unfortunately, it’s placing the checkbox in a very bad place for me.
Is there any easy way to move this checkbox near the checkbox to accept Rules, Privacy and Buy Now button?
Of course, I want to make sure that it’s working with the email provided by a customer.
Cheers,
Piotr
On reports page /wp-admin/admin.php?page=freshmail_reports change date range doesn’t work.
The problem caused by change of name refreshReports function to FreshMail_refreshReports.
/freshmail-integration/templates/admin_reports.php
<input type="button" value="set" onclick="refreshReports();" />
should be:
<input type="button" value="set" onclick="FreshMail_refreshReports();" />
IMHO
Chart should be displayed in order by insert_date not form_id.
/freshmail-integration/src/Plugin/Newsletter/Freshmail.php
$results = $wpdb->get_results('SELECT * FROM '.$wpdb->prefix.'freshmail_stats WHERE 1 = 1 '.$where.' ORDER BY form_id ASC', OBJECT);
$results = $wpdb->get_results('SELECT * FROM '.$wpdb->prefix.'freshmail_stats WHERE 1 = 1 '.$where.' ORDER BY insert_date ASC', OBJECT);