-
Google Recaptcha Alternatives for China
In this article, we will list some of the Google Recaptcha alternatives. As you know Google services including Google Recaptcha are blocked in China so your website visitors cannot submit the forms.
-
Responsive Video Using CSS
Responsive Video Using CSS, yes that’s right. No javascript or jQuery is needed to make videos responsive on your website. This quick tip applies to both iframe based embedded videos e.g. YouTube or Vimeo as well as self-hosted videos. HTML code for embedded YouTube video: <div class="responsive-video"><iframe src="https://www.youtube.com/embed/YOUR-VIDEO-ID" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe></div> <div class="responsive-video…
-
Solving Common Contact Form 7 Issues
We all come across scenarios where we face common Contact Form 7 issues. For example the common issue is to use a human readable label for select dropdown menus instead of “—“. Luckily Contact 7 provides filters which can be used to solve some of the common issues. Shortcodes Within Contact Form 7 Forms One…
-
Remove Blank Lines in Email for Unfilled Form Items
This quick tip will show you how you can remove blank lines from Contact Form 7 during submission for optional fields which were left empty by the user.
-
Search and Replace Plugin for WordPress
Have been looking for a good search and replace plugin for WordPress? There are many search and replace WordPress plugins but most of them fail to fulfill your needs. For example if you need to search and replace a url within serialized data then most of the worlds cannot handle that. I have been developing…
-
jQuery typeerror invalid ‘in’ operand a after WordPress upgrade
If you have happened to see this error “jQuery typeerror invalid ‘in’ operand a” in javascript console then it is most probably due to a third party library causing the error. Recently I updated a WordPress core to latest version of 4.4.1 and all of a sudden the ajax based page/post saving functionality of the…
-
Changing starting and ending tags of the products loop in main shop page of a WooCommerce theme
The default starting and ending tags of the loop in main shop page of a WooCommerce theme are <ul class=”products”> and </ul>. Changing starting and ending tags might be needed due to various reasons. Lets say you have customized the content-product.php file of WooCommerce and have added some divs inside the <li> tag which is…
-
How to Exclude Categories From Default WordPress Loop
Recently I was working on a gym WordPress website and I needed to exclude WODs category from the default WordPress loop. The reason of this requirement was that my client wanted to get the WODs from Wodify service which would push daily WODs to a specific category of posts type post. But this lead to…