2018

How to Swap the Position of the Billing with Shipping

How to Swap the Position of the Billing with Shipping

There was once a client requested to swap the position of the billing with shipping details, because by default WooCommerce displays the Billing info first. But, the client cares more about the shipping address because that is the most important information he needs for him to ship the products. The first method that comes out

How to Swap the Position of the Billing with Shipping Read More »

Next and Previous Posts With Thumbnails Preview

Today we will learn how to make wordpress post page Next and Previous Posts With Thumbnails Preview. Recently One of my client want to create Previous and Next post card. i can be done by following code Default Previous and Next nav code is $prevPost = get_previous_post(true); $nextPost = get_next_post(true); These two variables will get the

Next and Previous Posts With Thumbnails Preview Read More »

How to disable link using CSS

Sometime need to disable a link using CSS. This can be done by using a small code of CSS. Below i will show different Scenarios: Disable link that has an exact href: = You can choose to disable links that contain a specific href value like so : <a href=”//website.com/exact/path”>Exact path</a> [href=”//website.com/exact/path”]{ pointer-events: none; } Disable

How to disable link using CSS Read More »