Deze plugin is niet getest met de laatste 3 grotere versies van WordPress. Mogelijk wordt het niet meer onderhouden of ondersteund. Ook kunnen er compatibiliteitsproblemen ontstaan wanneer het wordt gebruikt met recentere versies van WordPress.

WP-SCSS

Beschrijving

Compileert .scss bestanden in je wordpress installatie door middel van ScssPhp. Bevat een instellingen pagina voor het instellen van de folders, fout meldingen, compiling opties en automatisch bestanden inladen.

De plugin compileerd alleen wanneer er veranderingen zijn gemaakt aan de scss bestanden. Dit wordt gedaan naar het bijpassende css bestand, dus het uitschakelen van de plugin zal geen effect hebben op je css bestanden. Als een bijpassend css bestand nog niet bestaat maakt de plugin deze aan in de ingestelde css folder.

Krijg uitgebreide instructies op github

Looking for a new maintainer

If you are interested in giving back to the open source plugin respond here with your interest

Installatie

  1. Upload plugin naar plugins folder
  2. Activeer de plugin via het menu ‘Plugins’ in WordPress
  3. Configureer je plugin opties in de opties pagina settings -> WP-SCSS.

FAQ

Kan ik een sub-thema gebruiken?

Jazeker. Zorg ervoor dat je je folders instelt zodat ze relatief zijn aan je sub-thema en dat je sub-thema actief is. Anders zul je een fout over de ontbrekende folders zien.

What version of PHP is required?

PHP versie 5.6 is vereist om WP-SCSS te gebruiken

Hoe importeer(@import) ik sub bestanden

Je kunt scss bestanden in andere hoofd bestanden importeren. Dan wordt het gecompileerd in een css bestand. Om dit voor elkaar te krijgen gebruik je @import in je scss bestand. Alle geimporteerde bestandsnamen moeten beginnen met een een underscore. Anders worden ze in een eigen css bestand gecompileerd.

Wanneer je een .scss bestand importeert in een ander .scss bestand kun je de underscore daar weg laten.

@import 'subfile';

Ondersteund deze plugin Compass?

Er is op dit moment geen manier om compass volledig te ondersteunen met een php compiler. Als je gelimiteerde ondersteunin wil, kun je het compass framwork handmatig importeren. Je hebt de _comass.scss en compass folder allebij nodig.

compass / frameworks / compass / stylesheets /@import ‘compass’;`

Als alternatief kun je ook Bourbon op dezelfde manier insluiten.

Kan ik de .sass syntax in deze plugin gebruiken?

This plugin will only work with .scss format.

Mijn css wordt niet geupdate, wat gebeurt er?

Krijg je errors te zien op je site? Zo niet, controleer je log bestanden in je scss folder. Je css wordt niet geupdate wanneer je errors in je scss bestand(en) hebt.

Zorg ervoor dat je folders goed ingesteld staan in de instellingen. De paden beginnen bij de root van je thema.

Ik heb andere problemen en heb hulp nodig

If you are having issues with the plugin, create an issue on github, and we’ll do our best to help.

Beoordelingen

17 augustus 2024
The settings for “auto enque” and “always recompile” dont get saved. It doesnt do anything. I configured two folders /precompile/css/ and precompile/scss/ and created a scss in the scss-folder, but i cant find a button or setting to actually compile that into css. Is there a documentation? How does this work!?
30 november 2022 1 reactie
The latest update breaks the site.. but if this happens it’s a fairly easy fix. Go to github.com/scssphp/scssphp Click on Code (in green) then Download Zip Extract the zip Upload everything in scssphp-master/src/* to your wp-content/plugins/wp-scss/src/ folder Refresh the page and you should be good. It looks like the author someone didn’t get all of the src folder added into the plugin in the latest update
25 november 2022 1 reactie
Unfortunately this plugin had some updates in the past that broke several websites. Updates were slow and manual rollbacks were necessary.
23 november 2022 1 reactie
Been using this for years and when it works, it works well. But after it broke client sites yet again with the most recent update, I have to question the QA on this plugin.
21 november 2022 1 reactie
I have a hard time not using this plugin in my projects since it makes implementing SCSS just SO easy for my dev team. On the other hand, there have been 2 times in the past year where a major issue occurred with an update resulting in lots of broken websites. In both cases the developers were slow to address the issue. At this date, the plugin fails catastrophically if “always recompile” is selected.
18 november 2022 1 reactie
They just upgraded it to version 3.0 and it DOES NOT WORK, it will crash your entire site. Developer has been unresponsive to everyone’s pleas to fix the catastrophic bug
Lees alle 61 beoordelingen

Bijdragers & ontwikkelaars

“WP-SCSS” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

Vertaal “WP-SCSS” naar jouw taal.

Interesse in ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.

Changelog

4.0.2

  • Full SVN commit to WordPress
  • With version bump

4.0.0

  • DO NOT USE, missing commited files on WP SVN
  • Updates ScssPHP to version 1.11.0 thanks to fabarea

3.0.1

  • Full SVN commit to WordPress

3.0.0

  • DO NOT USE, missing commited files on WP SVN
  • Updates ScssPHP to version 1.10.0 thanks to fabarea

2.4.0

  • Changes the base_compiling_folder to store key not path to directory shadoath
  • This allows deploying from local or staging to production by not saving absolute paths in DB.

2.3.5

  • Add ‘selected’ to wp_kses on select() shadoath

2.3.4

2.3.3

  • Fix params passed to wp_kses() shadoath

2.3.2

  • Add wp_kses() to echos with potential user input shadoath

2.3.1

  • Wrap check for WP_SCSS_ALWAYS_RECOMPILE with () niaccurshi

2.3.0

2.2.0

2.1.6

  • When enqueueing CSS files Defer to WordPress for URLs instead of trying to guess them. Change by mmcev106
  • Allow setting Base Directory to Parent theme folder. Shadoath

2.1.5

  • Enqueue CSS files using realpath function. Addition by mmcev106

2.1.4

  • Set source URL to be home_url(‘/’) not simply /. Issue found by realjjaveweb

2.1.3

  • Must declare global to use it for $base_compiling_folder.

2.1.2

  • Correction for enqueueing styles not defaulting to get_stylesheet_directory() Issue

2.1.1

  • Bug fixes after merging 2.0.2 and 2.1.0 defaults worked, but new options did not. Shadoath

2.1.0

  • Settings dropdown added for choosing additional base compile locations outside of current theme. Suggestion by pixeldesignstudio

2.0.2

  • Added option in settings to enable an ‘always recompile’ flag. Suggestion by bick

2.0.1

  • Bugfix to add filter for option_wpscss_options to remove Leafo if stored in DB. Thanks to kinky-org for pointing this out
  • Saving plugin settings will update DB with the correct value.

2.0.0

1.2.6

  • Create cache dir if it doesn’t exist [@XNBlank](https://github.com/ConnectThink/WP-SCSS/pull/135
  • Add cache dir as default @mhbapcc

1.2.5

1.2.4

  • Updated scssphp to version 0.7.5
  • Added source map @iannacone
  • Always define $wpscss_compiler in the global scope @jazbek

1.2.3

  • scssphp naar versie 0.72 geüpdatet @hellerbenjamin
  • Removed depricated screen_icon()

1.2.2

  • scssphp naar versie 0.6.6 geüpdatet

1.2.1

  • Changed set version option to update if already exists

1.2.0

  • Fixed a bug where directory inputs were not getting sanitized @mmcev106
  • Made the missing directory warning also display if a specified path is a file @mmcev106
  • Added /vendor to .gitignore @mmcev106
  • Dont enqueue already enqueued stylesheets @bobbysmith007

1.1.9

  • Added filter to set variables via PHP @ohlle
  • Added option to minify CSS output @mndewitt

1.1.8

Various improvements from pull requests by @jbrains and @brainfork

1.1.7

  • Update scssphp to 0.0.12 – pull from #16 @GabrielGil

1.1.6

  • Upgraded scss.inc.php to version 0.0.10; via pull request from kirkhoff

1.1.5

  • Added option to only show errors to logged in users; via pull request from tolnem

1.1.4

  • Add suport for subfolders in scss directory

1.1.3

  • Hotfix for a accidental character

1.1.2

  • Added support for moved wp-content directories

1.1.1

  • Added error handling for file permissions issues
  • Changed error log to .log for auto updating errors

1.0.0

  • Initial Build