Untitled Snippet

add_action('template_redirect', function () { if (! is_front_page()) { return; } echo

Tim Austin PRO
<10

Add Custom Settings Tab to Vendor Dashboard

// Add the tab to the tab nav add_filter( 'wcv_store_tabs', 'add_custom_tab_nav' ); function add_custom_tab_nav( $tabs ){…

Hide “Everywhere Else” on the countries dropdown

if ( ! function_exists( 'wcv_hide_everywhere_else' ) ) { /** * Hide the "Everywhere else" option in…

Display Last Login

Shows user ID number and registers last login date with timestamp on the user table.

home slider css

/* Increase the image size in the slider */ .container { width: 100%; max-width: 90%; /*…

Optimize Font Loading

Adds CSS font property to ensure text remains visible during webfont load

Oktoberfest 5K - RaceCheck Widget

Review widget from RaceCheck for Oktoberfest 5K page

Update the author name on published recipes

This code snippet will update the author name for all existing recipes. Just replace New Name…

<10

Remove Emojis

/** * Disable the emojis in WordPress. */ add_action( 'init', function () { remove_action( 'wp_head', 'print_emoji_detection_script',…

1 115 116 117 118 119 233