Bootstrap 4 Navbar – align brand to your left and all the navbar-items to right
If you want to align brand to your left and all the navbar-items to right, change the default mr-auto to ml-auto
<ul class="navbar-nav ml-auto">
If you want to align brand to your left and all the navbar-items to right, change the default mr-auto to ml-auto
<ul class="navbar-nav ml-auto">
Creating a secure shopping experience on your WooCommerce store can be as simple as ensuring only registered users can view your products and shop. This guide will show you, in easy steps, how to direct anyone who isn’t logged in to the login page. Using a Simple WordPress Code To make your store private, you’ll…
Markdown is a way to style text on the web. You control the display of the document; formaing words as bold or italic, adding images, and creating lists are just a few of the things we can do with Markdown. Mostly, Markdown is just regular text with a few non-alphabetic characters thrown in, like #…
If you want to change all 404 error of your WordPress website into 410 error statues then just add this code before the get_header(); in you 404.php template Hope it helps. Reference: stackoverflow.com
Widget Title Style – 1 If your width title wrap directly under heading tag like H2, H3, etc like the below screenshot then use .widget .widget-title If the actual text wrap with another inline element like span the below screenshot then you need to add that extra wrapping tag also .widget .widget-title span
If you want to add a button to reset your FacetWP filters, you may use the snippet below: Reset FacetWP Facets Reset all facets: FWP.reset(); Or reset one facet: FWP.reset(‘make’); Or reset multiple facets: FWP.reset([‘make’, ‘model’, ‘year’]); Or reset individual values: FWP.reset({ ‘make’: ‘audi’ }); Use onclick for buttons and other HTML elements: <button value=”Reset” onclick=”FWP.reset()” class=”facet-reset”>Reset</button> Don’t know where to write this code?…
Are you looking to enhance user experience on your WooCommerce store? Adding custom login and logout buttons is a great way to start. Let’s walk through a simple way to create a dynamic WooCommerce login and logout button using a customizable shortcode. Understand the Code The snippet below is perfect for adding custom login/logout buttons…