Mitchell D. Miller
Forum Replies Created
-
Forum: Plugins
In reply to: [Quick Mail] change sender nameHello tm86:
Is it possible to add a standard signatur that will be added automatically to every message?
No.
Best wishes,
MitchellForum: Plugins
In reply to: [Quick Mail] change sender nameHello tm86:
1) Do not uninstall Quick Mail. Activate Replace Quick Mail Sender plugin.I added an image of activate plugin link to Github.
2) I updated “reply to” last night at 6:30 PM EDT (+5) – but did not change version.
Please verify you have latest update.
On release page under version 0.1.5, you should see this hex number
77ffa31
I hope everything works after activation.
Best wishes,
MitchellForum: Plugins
In reply to: [Quick Mail] change sender nameHello tm86:
If you are not using an external mail service like Mailgun or Sendgrid,
get latest release of my Replace Quick Mail Sender plugin from Github. I updated plugin today for PHP 7.3 and latest Quick Mail.Please see original description for more info. Screenshot is old. Current version also replaces “Reply to.”
I wrote this plugin in 2017. Info is buried in FAQ. I will improve FAQ soon for next release.
Let me know if you have a problem.
I am closing support topic, but I will reopen it if you reply.
Best wishes,
MitchellForum: Plugins
In reply to: [WP Super Cache] what corrupted wp-cache-config.php ?Thank you for reply.
Not using “Cookie Notice” or new plugins.
Running on Ubuntu: PHP 7.0.32, Apache/2.4.18.
Only “not regular” setting: I disable WP_CRON and update from shell scripts.
But I’ve doing it the same way for several years.Best wishes,
MitchellForum: Plugins
In reply to: [WooCommerce] action_scheduler_run_queue eventHello wbrubaker:
I fixed it. Added:
add_filter('action_scheduler_run_schedule', function($arg) { return 86400; });
Deactivated plugin, deleted leftover cron events, activated.
Useless event, running thousands of times daily, is gone.
Best wishes,
MitchellForum: Plugins
In reply to: [WooCommerce] action_scheduler_run_queue eventHello wbrubaker:
Thank you for detailed explanation.I have no Webhooks, subscriptions, follow ups.
This event is like spontaneous generation – it keeps coming back.
I will ignore it.
Best wishes,
MitchellForum: Plugins
In reply to: [WP Super Cache] Can this work without .htaccess?Hello Ronnie:
I am still using 1.49. Version 1.49 of plugin works without adding rules to .htaccess – if rules are in main Apache config.However, plugin will display
Rewrite rules must be updated
warning.Best wishes,
MitchellForum: Plugins
In reply to: [Quick Mail] I can not find emails sentHello Luca:
Excellent question. I will add this answer to FAQ in next version of Quick Mail.You should be able login to your email account and find emails in “Sent Mail.”
If you have any delivery or reporting problems, you can fix them by installing the free Mailgun email delivery service. Quick Mail will use Mailgun plugin settings.
You must edit DNS records to use Mailgun, but it works perfectly. You can login to Mailgun to view sent mail, after installation.
Best wishes,
MitchellForum: Localhost Installs
In reply to: Https in wamp not redirect correctlyHello hugov:
You need a conditional statement in local wp-config.php to use your production database on test site. You can ignore browser security warnings, if you use a self-signed certificate.On localhost add:
if ( $_SERVER['SERVER_ADDR'] == '127.0.0.1' ) { define('WP_SITEURL', 'https://www.site.dev/'); define('WP_HOME', 'https://www.site.dev/'); }
Then you will be able to test your theme on local site.
Best wishes,
MitchellForum: Reviews
In reply to: [Quick Mail] Kudos!Thank you.
Forum: Plugins
In reply to: [Quick Mail] [Feature request] Recipients from commentsHello orlov0562:
Thank you for an excellent idea.I added two methods to reply to a comment privately with Quick Mail.
Get plugin from Quick Mail 3.1.0 Beta release.
More info: Reply to WordPress Comments with Quick Mail.
I will update WordPress after testing Github version.
Best wishes,
MitchellForum: Plugins
In reply to: [Quick Mail] [Feature request] Recipients from commentsHello orlov0562:
If it possible will be very good if this plugin someday can send email not only for registered users but also to guests who left comment with correct email address or may be for any email address which I entered.
- Select
Do Not Show Users
from
User Display options,
to send mail to anyone. You can copy / paste address into form. - I like your idea, but I am not sure how to add it. Quick Mail would need an option to replace User List, with Commenter List. I added
Send email to commenters on Github as a future enhancement.
I am closing issue because you can paste email address in form. However, I will notify you if I create an option to display a list of commenters.
Best wishes,
MitchellForum: Plugins
In reply to: [Quick Mail] Add user name to emailHello:
I updated plugin. Shortcode is saved.Best wishes,
MitchellForum: Plugins
In reply to: [AMP] AMP child themeHello Dutchintouch:
This info was hard to find, and should be included in FAQ.Copy AMP templates from plugin to a new directory in child theme.
Then add a filter toamp_post_template_dir
.
Example:function vbp_get_amp_template_path($p) { return get_stylesheet_directory() . '/blog_amp'; // amp-templates } add_filter( 'amp_post_template_dir', 'vbp_get_amp_template_path' );
I found info here.
AMP requires customization for your site. I created a separate file for AMP functions by adding code to child theme’s functions.php:
if (strstr($_SERVER['REQUEST_URI'], '/amp/')) { require_once 'amp_functions.php'; }
Best wishes,
MitchellForum: Plugins
In reply to: [Quick Mail] Add user name to emailHello again:
This solution is flawed, because Quick Mail displays the translated shortcode after the message is sent.I will release an update for WordPress 4.8, about June 8, that will fix this problem.
Best wishes,
Mitchell - Select