Austin Ginder
Forum Replies Created
-
Forum: Plugins
In reply to: [Tickera – Sell Tickets & Manage Events] Freemius Missing from latest buildSame error when updating. It broke the backend of the website. Downgrade to v3.3.2 resolved the issue.
I am, WordPress v5.2 and BNFW v1.7.3.
Ah okay, sounds good. Yes a patch fix for the repeating emails would be great!
The second. I’m writing a post and as soon as I hit schedule multiple emails go out. Sometimes it’s 2 duplicates sometimes 3 or 4. On a development copy of the site I’ve narrowed it down to the new block editor. I’ve confirmed this behavior goes away if I install the classic editor plugin.
Likewise I’m receiving the following error with v3.3. Downgrading works as a workaround.
PHP Parse error: syntax error, unexpected 'private' (T_PRIVATE) in my-custom-css/pages/myphp/Edit.php on line 257" while reading response header from upstream- This reply was modified 7 years, 1 month ago by Austin Ginder.
I likewise specifically used MonsterInsights with manual UA codes. It looks like they removed that GUI with their update. I may switch to use a performance plugin named Perfmatters. The main advantage is Perfmatters will serve analytics.js locally thus removing an extra lookup as explained here: https://perfmatters.io/docs/local-analytics/. As a bonus Perfmatters actually integrates with MonsterInsights.
I’m using a child theme so this was safely placed within it’s function.php file. Thanks for checking.
Doesn’t looks like using the
<style>tag is recommended for emails. I think the css needs to be inline in order to work across most email clients as shown here: https://stackoverflow.com/questions/29391855/how-to-make-an-image-responsive-in-html-email-regardless-of-image-size.After playing around with some of the filters I think I got
bnfw_notification_messageworking as shown here./** * Responsive html email images for BNFW. */ function my_bnfw_responsive_html_images( $message, $setting ) { $message = str_replace( "<img src=\"", "<img style=\"width: 100% !important;\" src=\"", $message ); return $message; } add_filter( 'bnfw_notification_message', 'my_bnfw_responsive_html_images', 10, 2 );- This reply was modified 7 years, 6 months ago by Austin Ginder.
Not sure. If you look at my code it’s using the default responsive image WordPress code. That is probably best to keep as is for my blog posts. However for emails none of that is very useful. I’m thinking the blog posts should be left as is with some automatic handling for the email notification. Maybe the email notifications could remove the responsive WordPress code and use something static like a defined
width:100%?- This reply was modified 7 years, 7 months ago by Austin Ginder.
A quick fix for all WP-CLI users. Run the following command on every site running any version of Mailgun:
wp option patch insert mailgun region us. I just finished deploying to 50+ sites. If the region is set WP-CLI will simply saySuccess: Value passed for 'mailgun' option is unchanged.otherwise it will add it.- This reply was modified 7 years, 10 months ago by Austin Ginder.
- This reply was modified 7 years, 10 months ago by Austin Ginder.
After some more testing it appears to be a bug with Advanced Custom Fields Pro 5.7.0-RC4 and Yoast SEO 7.8. I submitted it as an issue with ACF Pro.
Forum: Plugins
In reply to: [WooCommerce] Disable noindex on certain core pagesI was having similar issues. I was able to get it removed using the following within my theme’s functions.php file.
add_action( 'init', 'remove_wc_page_noindex' ); function remove_wc_page_noindex(){ remove_action( 'wp_head', 'wc_page_noindex' ); }Forum: Plugins
In reply to: [The Events Calendar] Fatal Error with WP QueryLikewise I’m seeing this with v4.6.9. Rolling back to v4.6.8 works as a workaround. I was able to recode my website without using
$wp_query = null;and confirmed that resolves the error with The Event Calendar 4.6.9.Great, thanks!
Forum: Plugins
In reply to: [Duplicate Page and Post] http GET request to cloud-wp.org? using DP&P 2.1.1As a workaround you can comment out line 272 in /duplicate-page-and-post/admin/duplicate-page-and-post.php like this:
//$response = wp_remote_get( $request_url, array( 'timeout' => 2 ) );