Search results for: admin
increase max file size
a snippet to increase max file size to allow WP staging pro upload
Rank Math
Support for Rank Math
Yoast SEO
Integration with Yoast SEO with WC Vendors
Charitable: Force PayPal Legacy gateway
Overrides Charitable Pro 1.8.15+ PayPal tier detection at read-time so the legacy `paypal` gateway stays visible…
Remove ISO 4217 for Google Feeds
// Force localization for all feeds add_filter('adt_product_feed_localize_price_args', function($args) { $args['decimal_separator'] = '.'; $args['thousand_separator'] = ','; return…
Remove ISO 4217 Format for specific feeds
//Google Feeds add_filter('adt_pfp_localize_price_iso4217_feeds', function($feeds) { // Remove all Google feeds from ISO4217 formatting return array_filter($feeds, function($feed)…
Force localized currency for product feeds
This allows you to change the ISO 4217 for all the product feeds
Add Custom Taxonomy to Woocommerce Single Product Page
add_action( 'woocommerce_product_meta_end', 'wcv_add_brands_single_product' ); function wcv_add_brands_single_product() { global $product; $taxonomy = 'wcv_brands'; // The custom taxonomy…
Add Custom Taxonomy - Multiple Vendor Taxonomy
Allows the vendor to select multiple taxonomies
Add Custom Taxonomy - Single Vendor Taxonomy
It'll only allow the vendor to select one custom taxonomy term at a time
Decrease Auto-Save Interval
Change post editor auto-save to 5 minutes instead of 1.