Skip to content

Change WooCommerce “Out Of Stock” Text

Customize Your Search Placeholder Text

By default if you are going to change the text of your search form in WordPress, we would recommend using a translation plugin such as Loco Translate. However, if you want more control or rather use code you can hook…

Read more

Display A Post Slider Anywhere

function my_category_slider( $slider ) { // Display the "test" revolution on category archives if ( is_category() ) { $slider = '[rev_slider alias="test"]'; } // Return specific slider for all pages if $slider not defined already if ( is_page() && !…

Read more

Custom Meta Viewport Tag

This snippet shows how you can alter the default meta viewport tag in the theme. By default the theme uses a responsive tag (the snippet example shows the default tag used by the theme) which also allows zooming into the…

Read more
Back To Top