mobile sticky menu chatgpt css
/* Reset some default styles */ body, h1, ul { margin: 0; padding: 0; } /*…
home slider html
if (is_front_page()) : ?>
home slider css
/* Increase the image size in the slider */ .container { width: 100%; max-width: 90%; /*…
woo orders page courier address
// Add the new column to the orders page add_filter('manage_edit-shop_order_columns', 'display_courier_address_column'); // Display data in the…
woo orders page Whatsapp DM from mac app
// Modify the columns and ensure WhatsApp column appears last function add_whatsapp_column($columns) { // Remove WhatsApp…
Display a message after the 1st paragraph of posts
Thank you for reading this post, don't forget to subscribe!
Removing the Redux Demo Mode Notice
Copyright © author Link: https://devs.redux.io/guides/basics/removing-demo-mode-notice.html The Redux Framework plugin ships with a sample config. This permits…
Framework_Fluid_CSS
Fluid Design Framework - Fonts: Viewport MIN - 320 -- Viewport MAX - 1200 Space: Viewport…
Untitled Snippet
alert('Xss');
Disable "Scheduled export e-mail of ... returned false when sending to ..." notice in Scheduled Exports
function custom_woo_ce_cron_export_email_wp_mail_failure_notice() { // Turn off the error notice return false; } add_filter( 'woo_ce_cron_export_email_wp_mail_failure_notice', 'custom_woo_ce_cron_export_email_wp_mail_failure_notice' );
Switching between ftp_put and ftp_fput FTP upload methods in Store Exporter Deluxe
function custom_woo_ce_cron_export_ftp_switch() { // ftp_put or ftp_fput return 'ftp_fput'; } add_filter( 'woo_ce_cron_export_ftp_switch', 'custom_woo_ce_cron_export_ftp_switch' );
Trigger a Scheduled Export via a WordPress Action
function custom_trigger_scheduled_export_url() { $secret_key = ( isset( $_GET['secret_key'] ) ? sanitize_text_field( $_GET['secret_key'] ) : false );…
Add a single Order export field with all Shipping address details
function custom_woo_ce_extend_order_fields( $fields ) { $fields[] = array( 'name' => 'shipping_address_full', 'label' => 'Shipping: All details',…