Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author oncletom

    (@oncletom)

    I could eventually include the JS solution. However it’s less performant on the client side.

    Hi !

    I can’t manage to get {LESS}’s .js compiler working with WordPress, even with the basic client-side method.

    After researches, I figured that WordPress needs a rel="stylesheet"
    Therefore, I just can’t use the <link rel="stylesheet/less" [...]> as explained on the website.

    I also had a doubt about the fact that I had to separate my css code and less commands respectively in .css and .less file. Can you confim it doesn’t work this way ?

    What am I missing ?

    Thanks

    Solved ! I just had a misplaced dot preventing the whole .js to work. Once deleted, the client side method works like a charm.
    My mistake was revealed by OSX less.app which, in such cases, returns an alert.

    However, I’m still unable to get the WP-Less plugin working…

    Following the installation notes, here is what I declare in my header :

    <link 	rel="stylesheet" type="text/css" media="all"
    		href="<?php wp_enqueue_style('template_name', get_bloginfo('template_directory').'/style.less', array('blueprint'), '', 'screen, projection'); ?>

    When I take a look to the generated source, I get href=""

    schwipps, that’s not how you use wp_enqueue_style. It doesn’t output the URL, it outputs the enter <link> tag. Don’t forget to add wp_head() in your theme’s <head></head> section.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: WP-LESS] BETTER TIP: for those with problems get the plugin to work’ is closed to new replies.