Type: php
Snippet B: Cardioxon Personal Form
/** * Snippet B: Cardioxon Personal Data Form * Priority: 10 * * This snippet registers a shortcode [cardioxon_personaldata_form], * which displays a form for personal data (gender, date of birth, age, height). * Form data is stored in localStorage…Continue reading
annonce publicitaire
Test Snippet
HEllo worldContinue reading
Hozzio
Read More/Less Toggle with Fade Effect
Read More >Continue reading
Disable Automatic Updates Emails
// Disable auto-update emails. add_filter( ‘auto_core_update_send_email’, ‘__return_false’ ); // Disable auto-update emails for plugins. add_filter( ‘auto_plugin_update_send_email’, ‘__return_false’ ); // Disable auto-update emails for themes. add_filter( ‘auto_theme_update_send_email’, ‘__return_false’ );Continue reading
Buy with Prime
add_action( ‘woocommerce_after_add_to_cart_form’, ‘QL_add_text_under_add_to_cart’ ); function QL_add_text_under_add_to_cart () { global $product; ?>Continue reading
Buy with Prime
add_action( ‘woocommerce_after_add_to_cart_form’, ‘QL_add_text_under_add_to_cart’ ); function QL_add_text_under_add_to_cart () { global $product; ?>Continue reading
(cloud) Dynamic Location Insertion
//version 2 define(‘LOCATION_CSV_PATH’, ‘CSV/googloc.csv’); function get_geoip_location($default = ”) { static $geoip_location = null; if ($geoip_location !== null) { return $geoip_location ?: $default; } $record = geoip_detect2_get_info_from_current_ip(); if ($record->isEmpty) { $geoip_location = ”; return $default; } $city = $record->city->name ?? ”;…Continue reading