Ryan
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] gzip minified files not uploading to CDNOk, that makes sense. But then why are the links to the minified assets pointing to the .js.gzip and .css.gzip versions of the file instead of the .js and .css files that are uploading?
And follow up… is there a way to specify the meta data for files that are uploaded to S3 compatible CDNs? I can manually set the files to gzip, and can recursively do it with s3cmd. But it seems that it would be better if they were uploaded that way. Same thing with default cache control headers.
- This reply was modified 7 years, 2 months ago by Ryan.
Forum: Plugins
In reply to: [W3 Total Cache] CDN Host minified CSS and JS files setting greyed outI’m seeing the same thing. On the CDN tab Host minified CSS and JS files is checked, but the check box is disabled.
I do have minify enabled on the main settings page as set to automatic. Also have CSS and JS checked to minify on the minify tab. I don’t have minify checked for HTML, although I did check it just to test and see if all 3 had to be on for the option to not use the CDN for minified files.
Forum: Plugins
In reply to: [Free Downloads WooCommerce] Download button vs. Read MoreSweet, thanks for that.
Forum: Plugins
In reply to: [Free Downloads WooCommerce] Download button vs. Read MoreOk, so it’s Woo changing the button, not your plugin; correct?
That makes sense. I’ll change the text for now and see if I can dig into Woo a bit and come up with something better long term.
Thanks for the help, and the plugin.
Forum: Plugins
In reply to: [Free Downloads WooCommerce] Download button vs. Read MoreOf course…
Cart category page: https://classcube.com/product-category/moodle-plugins/
Page with embedded add to cart shortcode: https://classcube.com/documentation/moodle-plugins/embed-filter/
Forum: Plugins
In reply to: [qTranslate] Bug: Custom post type without title breaks qTranslateCame across this trying to work out the same issue. What I wound up doing is adding title back to the custom post type and then hiding everything with CSS. Not my favorite solution, but it appears to have worked.
add_action('init', 'pb_qt_init', 100); function pb_qt_init() { add_post_type_support('my_custom_post_type', 'title'); } add_action('admin_head-post.php', 'pb_qt_head_post'); add_action('admin_head-post-new.php', 'pb_qt_head_post'); function pb_qt_head_post() { global $post; if ('my_custom_post_type' == $post->post_type) { echo ' <style type="text/css"> *[class*=qtrans_], div#titlediv { display:none;} </style> '; } }n/m – I think I’ve found a way to get it working that I like better than just putting the version in the table.
Forum: Fixing WordPress
In reply to: Custom fields in 3.4.2Thanks Chris. Worked like a champ.
Having the same problem.
Appears that it doesn’t work when previewing, but does work when published.
Forum: Plugins
In reply to: [iframe Wrapper] [Plugin: iframe Wrapper] This web page is not availableCheck what you have in the options for the short code. It looks like the entire link, including the anchor tags, may be there. %3Ca is <a, which looks like the start of a link.
Forum: Plugins
In reply to: [Just A Tweet] [Plugin: Just A Tweet] Twitter feed not always showingThere was an issue with an earlier version where RTs wouldn’t show up. Don’t think that’s what’s happening there though.
If you take a look at the page source you’ll see ‘Error: just_a_tweet could not retrieve from Twitter’. That particular message means that the plugin didn’t get a 200 response from Twitter or something happened with the JSON parsing.
I’m wondering if maybe it is a cache issue on their end and they’re sending a 304 instead.
Thanks for the tip for where to look. For whatever reason, that didn’t work. But I did something similar and changed
$ga_admin->set_defaults();to
if ($ga_admin) $ga_admin->set_defaults();and it appears to be working correctly.
One thought though. Does this only happen when the plugin is network activated? I didn’t try it before the fix, but after I turned off network activate and left it to be manually activated on each site so I can leave it off if needed.
Wondering if there is a conflict with another plugin.
Does it change at all, just to the wrong height?
Any chance you’ve got a CSS rule that affects iframes?
What browser and version are you using?
Forum: Plugins
In reply to: [rTwit] [Plugin: rTwit] Tweets always disappearAre there any HTML comments in the page source where the tweets should be?