thom4
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-LESS] 1.7 Breaks sitev1.7.2
should solve your issue. Thanks for reporting it ??Forum: Plugins
In reply to: [WP-LESS] LESS is again failing to HTTPSHello,
the message is truncated so it does not help much. Could you paste the entire stack trace please?
Do you use a reverse proxy or is WordPress straight behing an HTTPS server?
Forum: Plugins
In reply to: [WP-LESS] Version Compatibility@jonathanmotes done ?? thanks for reporting it!
Forum: Plugins
In reply to: [WP-LESS] 1.7 Breaks siteHello,
this issue has been tracked on https://github.com/oncletom/wp-less/pull/62
You can set the constant in
wp-config.php
in several ways:define('WP_LESS_COMPILER', 'path/to/lessc.inc.php'); // plugin bundled oyejorge/less.php define('WP_LESS_COMPILER', 'less.php'); // a folder containing 'lessc.inc.php' define('WP_LESS_COMPILER', 'path/to/lessDir');
Otherwise it will load the plugin bundled leafo/lessphp.
Forum: Plugins
In reply to: [WP-LESS] Problem with httpsHttps can be troublesome if it’s behind a reverse proxy.
I would suggest you to hint WordPress to think it’s really an HTTPS blog because other internals can rely on that (such as HTTPS-specific URIs etc.).
This is a working example of an HTTPS detection within a reverse proxy use case.
Forum: Plugins
In reply to: [WP-LESS] Does compiling less with wp-less affect load times?Yes, there is a dupe name on Github…
In any case, it will obviously take some time to process the stylesheet the first time. Nothing a human could notice though.
On any other calls, the plugin will load a compiled CSS file so it won’t reprocess it – unless it has changed.
Forum: Plugins
In reply to: [WP-LESS] Compiled CSS not included in wp_head()?Hey,
if the priority is too low, it means the stylesheet will be inserted after the plugin has get the job done.
Here is how I enqueued my stylesheet in my blog theme.
I don’t think it varies that much from the doc; let me know if it’s still not clear for you.
Forum: Plugins
In reply to: [WP-LESS] Exception errorI’ve upgraded the master version of the extension. Let me know if it’s solving the problem or breaking something.
It was definitely an issue planned to be fixed; hence some BC changes so people should update carefully.
Forum: Plugins
In reply to: [WP-LESS] Compiled CSS not included in wp_head()?Hm well that’s strange. At least any stylesheet is outputed in your
<head>
section?Are you aware of the online documentation?
Let me know ??
Forum: Plugins
In reply to: [WP-LESS] Display Errors?!The developer lacks of honesty or some boundaries on his worked are pushed too far.
I don’t know the context so I can’t say.Anyway, the plugin is really not involded, it’s just an issue depending of the content displayed in a container.
When disabling the
float: right
property of#page > #pageRepeatingBackground #content > #contentRepeatingShadow > .pageWidth #postContent
, everything is well balanced. I bet on an edge case pushing the content too far on the left in this situation.Forum: Plugins
In reply to: [WP-LESS] Display Errors?!Hm, I’ve tried with Opera Mobile Emulator and IOS Simulator, refreshed many times and did not have anything wrong at a first glance.
What makes you thinking
wp-less
is the source of the problem?Forum: Plugins
In reply to: [WP-LESS] STILL doesn't work with httpsHello,
do you use a cache plugin?
Otherwise, the new version (1.5.4) of the plugin ships some URL fixes.I hope they will address your problem.
Let me know otherwise!Forum: Plugins
In reply to: [WP-LESS] edit the less files in the editorHello,
It seems that it’s tricky to filter the
css
files and addless
files in the same list.
I’ve looked in the sourcecode but it’s either hardcoded, either without any filter so impossible to extend the behaviour.If you think to any other alternative, let me know ??
Forum: Plugins
In reply to: [WP-LESS] Display Errors?!Hey!
Any change you provide a link to such a problem?
I guess it may be a compiled CSS problem: make sure the used syntax is correct, and the viewport tag in your theme too.The plugin is compiling LESS into CSS, and there is no reason it breaks something in the middle of the page by itself.
Let me know.
Forum: Plugins
In reply to: [WP-LESS] Ensure .less file is included last@colinaclark: just as you already do for regular CSS files, it’s related to the registration’s order of the file (maybe some frameworks add some sugar to ease this part but I don’t have more clue on this right now).