The GREENS of Switzerland's website with a living styleguide made with Fractal.build, based on WordPress (Multisite ready) and with the fancy design and the latest technologies by superhuit.ch 🚀, coded by gruene.ch 🤓
You're not a web monkey and you just want a website ready to go?
- Turnkey Ready Website 🤩
- Manual - Help Pages 🚨
As member of the GREEN party, feel free to use it for your personal website. As party, please contact us ([email protected]).
Support the development with a donation 💚
- Download the latest theme package
- Install and activate it in WordPress
- Install the suggested plugins (as announced in the WordPress' admin notices). Note: You must buy and manually install the premium plugin Advanced Custom Fields Pro.
- Configure your site to use a static homepage (else your homepage will stay blank):
Settings
>Reading
>Your homepage displays
>A static page
Since Sanuk has a very strict licence, we've bundled the free alternative Passion One Bold.
To use Sanuk, upload it into the wp-content
folder as follows:
wp-content/
sanuk/
font.eot
font.ttf
font.woff
font.woff2
Verify, you name the files exactly as above, and you provide all those file formats.
- The expensive tasks after form submission are processed asynchronously (using wp cron). Use the WP_CLI to manage the
jobs
wp form
. - Dedicated docs:
- The upload of PNGs and JPEGs can be limited in their dimensions (to prevent imagemagick memory issues). To do so, add
the following constants to your
wp-config.php
:define( 'SUPT_UPLOAD_MAX_PX_PNG', 1920 * 1920 ); // max area of 1920px * 1980px define( 'SUPT_UPLOAD_MAX_PX_JPEG', 4096 * 4096 ); // max area of 4096px * 4096px