Tim Bowen
Forum Replies Created
-
Forum: Plugins
In reply to: [Regenerate Thumbnails] Certain pictures just not resizingI’m having this same issue where it’s resizing most of them well, but two of them just won’t work for some reason. I’m not seeing any server errors… is there another adjustment I can make?
Forum: Plugins
In reply to: [Native Lazyload] How to use for theme images?Thanks Felix. What about when using images from custom fields like this ACF:
$image = get_field('image'); <img src="<?php echo $image['sizes']['large']">Is there a way to have the lazyloading plugin work with those images too?
Thanks!
Forum: Plugins
In reply to: [Redirection] Icon not loadingThanks John, I’m still seeing the error when I install this on new sites though. Here’s a better screenshot of the confirmation page after setting up Redirection:
It’s coming from this code:
<button class="button button-primary">Finished! <img draggable="false" class="emoji" alt="🎉" src="https://twemoji.maxcdn.com/2/1f389.svg"></button>This appears to be referencing some type of emoji library.
- This reply was modified 6 years, 8 months ago by Tim Bowen.
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Remove advertising?Thank you for the prompt, and extremely helpful reply! I really appreciate your help.
Forum: Plugins
In reply to: [The SEO Framework – Fast, Automated, Effortless.] Remove advertising?Perhaps upgrading to pro lets you remove this? That would make sense and be totally worth it!
Forum: Plugins
In reply to: [Redirection] upgrade database failing (v2.4 -> 4.0)We’ve tried the beta plugin but keep getting stuck on the “Upgrade Database” page with a Something went wrong error.
Is there a good way to nuke the Redirection data and start fresh from the backup we created?
Forum: Plugins
In reply to: [Redirection] upgrade database failing (v2.4 -> 4.0)Running into similar issue when upgrading from 2.4 to 4.0
Failed to perform query "ALTER TABLEwp_redirection_itemsADDmatch_urlVARCHAR(2000) NULL DEFAULT NULL AFTERurl"We ran into the same issue and the “lightweight” plugin fixed it.
Thank you.
Forum: Plugins
In reply to: [Authorize.Net Payment Gateway WooCommerce Addon] Property of non-objectOops, I spoke too soon. Looks like it’s now only an issue when the “Members” plugin by Justin Tadlock is used and you try to edit a role.
Here is the error:
( ! ) Notice: Trying to get property of non-object in .../wp-content/plugins/authorizenet-woocommerce-addon/authorize.net-woocommerce-addon.php on line 696Forum: Plugins
In reply to: [Authorize.Net Payment Gateway WooCommerce Addon] Property of non-objectThank you for the quick fix. That did it!
Will you be pushing this update to next update of plugin?
Thanks!
Forum: Reviews
In reply to: [ShareThis Dashboard for Google Analytics] Script broken in headerWe had to remove your plugin from all our sites since this was causing a serious loading time slowdown and hurting our site ranking.
We did have the “Disable All Features” box checked, however this code was still loading.
Forum: Plugins
In reply to: [Content Expiration & Redirect] Custom Post Types?I was able to get it to work by adjusting lines 171-173 of content-expiration-and-redirect.php to this:
if( !$post->post_type OR ( $post->post_type != 'job' AND $post->post_type != 'post' ) ) return; $screen = get_current_screen(); if( $screen->base != 'post' ) return;Is there an action or some other method I could use to do this without hacking the core plugin?
Forum: Plugins
In reply to: [ShareThis Dashboard for Google Analytics] Temporary Connection IssuesWe’re having the same issue. Is this hosting related? Anything we can do to fix it so we can see our stats?
Forum: Plugins
In reply to: [AMP] Remove Merriweather FontFigured it out!
add_filter( 'amp_post_template_data', 'custom_adjust_amp_settings' ); function custom_adjust_amp_settings( $data ) { $data['font_urls'] = array( 'Libre Baskerville' => 'https://fonts.googleapis.com/css?family=Libre+Baskerville:400,700,400italic', ); return $data; }Forum: Plugins
In reply to: [AMP] Remove Merriweather FontI’ve been able to “fix” this by deleting this from /includes/class-amp-post-template.php
Would be great to have an action or filter to be able to do this.