Search results for: disable
Untitled Snippet
{"generator":"Code Snippets v3.6.5.1","date_created":"2024-07-30 20:37","snippets":[{"id":5,"name":"No price","code":"add_action( 'init', 'wpspecial_nascondi_prezzo_agli_utenti_non_registrati' );n nfunction wpspecial_nascondi_prezzo_agli_utenti_non_registrati() { ntif ( ! is_user_logged_in() )…
Additional Option Description — Stream
Stream — We will provide a personal stream on YouTube or Twitch, where you can see…
Hide admin nags
.notice .is-dismissable { display: none; } /* In Wordpress, set this to be inserted into the…
Hide sidebar on mobile device
function custom_hide_sidebar_on_mobile() { echo ' '; } add_action('wp_head', 'custom_hide_sidebar_on_mobile');
Allow Tasty Pins Only On Single Posts
Disable Tasty Pins on pages or custom post types and only add them to blog posts.
How to Check If Your Debug Certificate Has Expired
keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey
Change a currency symbol AMD to Դրամ
/** * Change a currency symbol */ add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2); function change_existing_currency_symbol( $currency_symbol, $currency )…
How to Add Diwali Celebration Animation in WordPress Website
Add Diwali celebration animation in WordPress website
Memberpress: Remove the Navigation Links on Page
Applying this custom CSS code will hide the default post navigation (Next/Previous) buttons located at the…
How to Add Christmas Celebration Animation in WordPress Website
Add Christmas Snow Animation in WordPress Website
to add WordPress WooCommerce WhatsApp checkout
Post Intro This code snippet implements functionality similar to a WooCommerce code snippet that would enable…
Meta Pixel Code
Add Meta Pixel Code in WPCode
WordPress Post Views Counter Function
function wpb_set_post_views($postID) { $count_key = 'wpb_post_views_count'; $count = get_post_meta($postID, $count_key, true); if($count==''){ $count = 0; delete_post_meta($postID,…
Use a WooCommerce Product Attribute as the Brand in Product Schema
This filter enables using a WooCommerce Product Attribute as the Brand in our Product Schema. Note:…