تغيير عمله

/** * Change a currency symbol */ add_filter('woocommerce_currency_symbol', 'change_existing_currency_symbol', 10, 2); function change_existing_currency_symbol( $currency_symbol, $currency )…

Whitelist Callback Functions for use in Theme Elements

Various elements in the Total theme allow you to select a callback function for the output…

Changing Text For Suggestion Donation Descriptions

You can place this code in your theme functions.php or use WPCode.

Add user registration date

/* * Creating a column (it is also possible to remove some default ones) */ add_filter(…

Defining SendGrid Mailer Constants

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

Allow SVG Files Upload (copy)

Add support for SVG files to be uploaded in WordPress media.

Hide social login from checkout

Good for when you are using it elsewhere on your website and do not want it…

Weighted download count

This plugin makes it so that certain products use up more downloads in the download counter…

Price Option Not Checked

Prevent variable pricing options from being checked by default

Elementor Store Headers

Gives support for Elementor on WC Vendor Headers

Use Billing Address in Order Exports

add_filter( 'wcv_export_orders_use_shipping_address', 'wcv_order_export_use_shipping_address' ); function wcv_order_export_use_shipping_address( ){ return false;

Change the action's string in the refund section - "View Details"

Change the action's string in the refund section - "View Details"

1 47 48 49 50 51 129