Westcomfort

Westcomfort

Westcomfort is a responsive WordPress theme for a private construction company. It has custom post type Projects that can be used to demonstrate company’s architectural solutions.  Front page has a slider that showcases custom posts.  The slider is replaced by custom post index page on devices with smaller screens.  The theme also includes social media…

DC Dynamic Training

DC Dynamic Training

DC Dynamic Training is a one page bootstrap responsive CMS website for an athletic trainer/coach. It has such features as slider, smooth scroll, testimonials, and contact form, that sends notification emails using SwiftMailer. Content management  system of the website is  built from scratch using PHP and MySQL database. From the back-end, website administrator can customize…

|

WordPress Errors and Solutions

Infinite redirect loop If there is infinite redirect loop, put this line in functions.php of current theme. remove_filter(‘template_redirect’, ‘redirect_canonical’); WordPress asks for FTP credentials Change ownership of your WordPress directory. chown –R www-data:www-data Nginx: 413 Request Entity Too Large Error Change Nginx config file sudo nano /etc/nginx/nginx.conf # set client body size to 128M #…

WordPress: Building Kage Child Theme – Adding Bootstrap Carousel

Unfortunately, Kage WordPress theme does not come with a slider, or some kinda carousel.  An easy solution is to place a bootstrap carousel instead of the front image. To do so we first of all need to enqueue bootstrap.  Below is the code you can put in functions.php  function kage_child_enqueue_scripts(){ wp_enqueue_script( ‘bootstrap-js’, ‘https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js’, array(‘jquery’), ‘3.3.7’,…