Posts

Make Wordpress Twenty Thirteen Header 100% iPad compatible

In your style.css file search for @media (max-width: 767px) { and change the max-width to 768px like this: @media (max-width: 768px) { Add this CSS code within this media brace .site-header { position: relative; background-size: 100% 82% !important; } The 100% is for the width of the header and the 82% is for the height. Adjust these percentages to suit your template design and test on the iPad

Wordpress Add Pagination to Pages the Simple and Easy way

To add the built-in Wordpress pagination to your page with a lot of content simple add this line in "Text" mode at the places where you wish to break the page into multiple pages. <!--nextpage--> In my experience it took about 10 minutes for Wordpress to register I was using this feature and display the pagination on my page.  If you don't see the pagination immediately then wait a while. Tested in Wordpress 3.9.+

New South African Digital artist Digital Colonel very impressive

Came across this new South African digital musician called Digital Colonel on Soundcloud and his tracks are very impressive. Take a listen to his dance track and my personal favourite below.

Buy House Music Samples

Buy top quality South African House Samples from as little as R50 Go here to purchase samples Listen to a snippet below

Disable Home Title in Wordpress

Replace <?php the_title(); ?> with <?php if ( ! is_front_page() ) { the_title(); } ?> in page.php to not show title on home page if you want

Best breadcrumb plugin for Wordpress - tried and tested

This breadcrumb Wordpress plugin is very simple to install and use and it has been tried and tested on all my Wordpress instrallations In your Wordpress admin backend search for "Really Simple Breadcrumb" Download and Install the plugin Add the code below to page.php <?php if(function_exists(simple_breadcrumb) && !is_front_page()) {simple_breadcrumb();} ?> NB: The PHP code above will show the breadcrumb on all pages except the homepage Add .breadcrumb { } to your CSS stylesheet Edit CSS breadcrumb class accordingly

Contact Form 7 Wordpress Plugin Redirect to another page after submission

With the Contact Form 7 plugin in Wordpress this is how I redirected to another page with my Google Conversion Tracking code in place Redirect to unique thank you page with conversion tracking Add this to the "additional settings" section for Contact Form 7: on_sent_ok: "location.replace('http://www.YOURSITEURL.com');"