HTML5 .js google hosted
html5shiv.googlecode.com/svn/trunk/html5.js
or simply copy the code below and paste it into your header.php
<!--[if lt IE 9]><script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
Freelance tips, how to get paid from your clients? After closing a client, I always ask for a deposit and get paid upfront at least 40% of the total cost of the project. Why is that? 1. If the client does the deposit upfront, the project is real and not bullshit. The client is committed…
Gravity form user registration update confirmation redirect URL. How to set up your Gravity form user registration or user update profile to redirect to the Buddypress profile page? Using {user:user_nicename} will solve your problem. See image below on how to set up. Problem 1: I want my update profile form to redirect in my Buddypress…
Override InWave Jobs template to the current theme is little bit hard for the WordPress beginners so I want to write tutorials that can help them solving this issue. Before that, just a little background for InWave Jobs. InWave Jobs is created by inwavethemes which I beleive many WordPress users is now using this, easy and very powerful plugin….
How to increase PHP Max Input Vars? Most common errors I’ve encountered is when I’m adding an menu items in menu dashboard. Some hosting company is easy to fix, something like using php.ini, or .user.ini file. In my case I’m using WP Engine hosting company and I’ve tried this two and I guess its not…
Copy the codes below to your functions.php add_filter(‘rtmedia_plupload_files_filter’, ‘rt_custom_allowed_types’, 10, 1); function rt_custom_allowed_types( $types ){ global $bp; if ( $bp->current_component == ‘activity’ && isset( $types[0] ) && isset( $types[0][’extensions’] ) ) { $types[0][’extensions’] = ‘jpg,jpeg,png,gif’; } return $types; } For more information please read this article https://rtmedia.io/docs/developers/allow-custom-media-types/
Hello guys, have you experience this issue on your current theme? WooCommerce archive, and single product pages does not displaying the default layout? Details show in one paragraph instead of grid? That means your current theme does not support Woocommerce and that’s what were going to do now. Just add the codes below and your…