Show Invoice for Refunded

Makes PDF Invoices available for refunded payments

Price Option Not Checked

Prevent variable pricing options from being checked by default

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…

home slider css

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

Escaping Data

// instead the _e(), __() or _x() use the escaped version _e('Email Summary', 'duplicator-pro'); // this…

Widget Content | Display Eventbrite Events

The widget usually uses the excerpt. This is generally fine, but other plugins can change it.…

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' );

<10

Disable Rich Pins

This code snippet will disable all rich pins on your site, not just recipes.

<10

Menu Item image Animation on Hover

When you hover over a menu item, the will be an image which will slide behind…

<10

Duplicate Post/Page Link

Duplicate posts, pages or any post type with 1-click by adding a duplicate link in...

Defining Brevo (Sendinblue) Mailer Constants

This snippet will prevent users from changing WP Mail SMTP settings in your WordPress admin area…

Change default zoom for all PDF files in PDF Embedder Premium

Set the default zoom value for all shortcodes/blocks regardless of their settings.

1 119 120 121 122 123 149