Layout – Webdesign

0,00 / maand excl. BTW

Layout kiezen / webdesign aanpassen

Ander webdesign / layout? Dat kan hier heel gemakkelijk!

  1. Gratis: Kies één van de voor geprogrammeerde layouts.
  2. Gratis: Pas je gekozen webdesign naar wens aan.
  3. Kies hier een andere gratis layout: Gratis implementatie.
  4. Kies een andere gratis layout: Vergoeding voor implementatie.
  5. Kies een betaald thema: Vergoeding voor implementatie.
  6. Laat een layout voor je maken.

Andere Layout

Ander Webdesign

Eénmalige betaling

1. Om welk webdesign gaat het (naam)
2. Waar kunnen wij het vinden
3. Als het in een account staat, mogen wij dan inlog-gegevens opdat wij het kunnen uploaden

Het verwijderen van webdesigns bespaart webruimte. Als er een webdesign extra op je website / webshop wordt gezet, dan kost dat webruimte.

Prijs per maand

Categorie:

Beschrijving

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.

Resource Versioning

Beschrijving

“It’s important to make resources (images, scripts, stylesheets, etc.) cacheable.”

Steve Souders

It is much easier to use a CDN without Query String Parameters.
This plugins alters only local resources’ URL-s.
The ver Query String Parameter will be inserted into the filename.

For example jquery.min.js?ver=1.10 becomes jquery.min.110.js.

To reverse this in the web server add this line to your nginx config:

server {     location ~ ^(.+)\.\d\d+\.(js|css|png|jpg|jpeg|gif|ico)$ {         #try_files $uri $1.$2 /index.php?$args;         try_files $uri $1.$2 =404;     } } 

Or to your Apache configuration or .htaccess file.

RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.+)\.\d\d+\.(js|css|png|jpg|jpeg|gif|ico)$ $1.$2 [NC,L] 

Testing the plugin before live usage

You can test the plugin by replacing the two add_filter() calls with this

require_once( dirname( dirname( dirname( dirname( __FILE__ ) ) ) ) . '/wp-load.php' ); wp(); echo o1_revving_src( $argv[1] ) . PHP_EOL; 

Then start it from CLI: php revving.php <TEST-URL>

Links

Development of this plugin goes on on GitHub.

Installatie

This section describes how to install the plugin and get it working.

  1. Upload revving.php to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

FAQ

How to remove all Query String Parameters from resources?

Poorly written plugins and themes may add unwanted Query String Parameters.
For example ?rev=4.10.

To drop all these parameters copy this into your wp-config.php:

define( 'O1_REMOVE_ALL_QARGS', true ); 

Beoordelingen

6 september 2017
Simple to install, does what it should do. Integrates perfectly well! Thank you very much, Viktor!
Lees 1 beoordeling

Bijdragers & ontwikkelaars

“Resource Versioning” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

Vertaal “Resource Versioning” in je eigen taal.

Interesse in ontwikkeling?

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

Changelog

0.3.0

  • Support cdn-ified URL-s without protocol schema.
  • More structured code.

0.2.0

  • Strengthen stability.
  • Support cdn-ified URL-s.

0.1.3

  • FIX: Use proper WordPress function for content URL.

0.1.2

  • FIX: Don’t run on admin.

0.1.1

  • FIX: External URL detection.

0.1.0

  • Initial relase without multisite support.