Category Archives: Web

Include a processing file (.pde) in a webpage

To show your processing creation in a webpage (or WordPress post or page*) you can use the example code below. * in WordPress, add a Custom HTML block (or switch to HTML-mode) to enter HTML-code in a post or page. Please take note of the following: Including scripts like this only works online (hosted on … Continue reading Include a processing file (.pde) in a webpage

Learn technical info from a site/page

Some things you could say about the technics of a page: Choose View > Source in your browser (or press CTRL+U) and try to figure out what tool is used to create the page (eg. WordPress, Dreamweaver, Muse) eg. this will tell it is made with WordPress: <meta name=”generator” content=”WordPress 5.2.3″ /> If WordPress is … Continue reading Learn technical info from a site/page

Famous paintings of dutch landscapes

Just because it is beautiful. Based on a standard WordPress gallery inside a regular Blog-post, in which we inserted the Isotope gallery together with the Strip-lightbox. Checkout this page if you want to learn how to do this. The complete piece of code included in this post is: <!– load isotope: –> <script src=”https://unpkg.com/isotope-layout@3.0/dist/isotope.pkgd.min.js”></script> <!– … Continue reading Famous paintings of dutch landscapes

Turn a standard WordPress Gallery into an isotope Gallery

Update: 30/09/2019 Isotope is a nice jQuery plugin to build galleries with. With just a little coding you can turn a standard WordPress gallery into a nice responsive isotope-gallery. No WordPress-plugins needed. Start by adding a Gallery: when editing a Page (or Post), add a Gallery block, pick your images, press the button ‘Create a … Continue reading Turn a standard WordPress Gallery into an isotope Gallery

Solution for failed FTP connection in WordPress

This page has a solution: http://www.hongkiat.com/blog/update-wordpress-without-ftp/ You have to edit the wp-config.php file, and add this line to it: define(‘FS_METHOD’,’direct’); Also, do not forget to make the folders for themes and plugins writable with FileZilla (as you can learn also from the WorPress install guide). It is still possible that you get the FTP-login problem … Continue reading Solution for failed FTP connection in WordPress