idosius
Forum Replies Created
-
Forum: Plugins
In reply to: [W3 Total Cache] W3TC Causes Garbled Code Display on PagesThe fix works for me, thanks!
Forum: Plugins
In reply to: [W3 Total Cache] W3TC Causes Garbled Code Display on PagesThis issue also occurred for me. I disabled Page Cache and Browser Cache and it doesn’t happen anymore, but the site has slowed down. Please release a fix ASAP.
Forum: Plugins
In reply to: [Selection Sharer by Hans van Gent] settings?+1 I also don’t see any settings page in my WordPress installation
Forum: Plugins
In reply to: [WP Hashed IDs] Support for custom post typesWill the solution be added to the next plugin version?
Forum: Themes and Templates
In reply to: [Minimatica] Can't upload featured imageHave you tried removing the theme, re-installing it, and then applying the fix? It seems to work for me.
Forum: Themes and Templates
In reply to: [Minimatica] All the images are disappeared – HELP!!The specific solution:
Replace functions.php with this version that comments out erroneous ext2type filter and improper registering and enqueueing of javascript
Forum: Plugins
In reply to: [Last.Fm Records] [Plugin: Last.Fm Records] Image resize failsWonderful, thanks!
Forum: Plugins
In reply to: [WP-LESS] [Plugin: WP-LESS] WP 3.4Sorry, I meant wp_enqueue_style. Might want to change the instructions here: https://www.ads-software.com/extend/plugins/wp-less/faq/
Forum: Plugins
In reply to: [WP-LESS] [Plugin: WP-LESS] WP 3.4As I wrote above – the enqueued LESS file only works when it’s added to the ‘wp’ hook. When it’s added to ‘wp_enqueue_scripts’ it doesn’t work. At least not with the Roots theme:
https://www.rootstheme.com/Plus one.
Forum: Plugins
In reply to: [WP-LESS] [Plugin: WP-LESS] WP 3.4Update – got it to work with the following code:
function roots_enqueue_less() { wp_enqueue_style('roots_app', '/themes/mytheme/assets/css/app.less', array(), '', 'screen, projection'); } add_action('wp', 'roots_enqueue_less');
- Full path following wp-content
- Using wp as the action
In my opinion it should also work with wp_enqueue_scripts action and with the /assets trick.
Forum: Plugins
In reply to: [WP-LESS] [Plugin: WP-LESS] WP 3.4I investigated further and noticed several issues:
- Roots theme uses the wp_enqueue_scripts action. It says here to use the wp action. Why is that so? Why doesn’t it work with the wp_enqueue_scripts hook?
- In the Roots theme there are some htaccess tricks to put all the stylesheets into /assets/css. It seems the WP-LESS plugin needs the full wp-content path to the file. Is this a bug? Any workarounds?
Forum: Plugins
In reply to: [WP-LESS] [Plugin: WP-LESS] WP 3.4It doesn’t work for me either on WordPress 3.4.2, running on Windows XAMPP. I’m developing a theme with the WordPress Roots theme. I created an app.less file and tried to write some code in it, but the output isn’t compiled to CSS.
Is there any debug info that could help?
Forum: Plugins
In reply to: [Cool Video Gallery] [Plugin: Cool Video Gallery] Issues with CVG 1.6FYI, I changed to the much simpler and well functioning YouTube SimpleGallery:
https://www.ads-software.com/extend/plugins/youtube-simplegallery/Forum: Plugins
In reply to: [Last.Fm Records] [Plugin: Last.Fm Records] Image resize fails+1
Any idea when the fix is coming? Is there a workaround?