Search results for: admin
WP Simple Pay: BuddyBoss Preview Compatibility
Provides BuddyBoss preview function compatibility
WC Vendors Activate All Inactive Vendors
Activates all inactive Vendor Stores in a WC Vendors Marketplace. NOTE: To be ran once.
Add Custom Field From Donation Form On The Receipt Page
This is an example of how to show a field data someone entered in their donation…
Disable WP Texturize
// Disable curly quotes remove_filter( 'the_content', 'wptexturize' );
Disable Wordpress image compression
// Disable image compression add_filter( 'jpeg_quality', 'smashing_jpeg_quality' ); function smashing_jpeg_quality() { return 100; } // Disable…
create_folder_and_upload_file
Creating a folder directly inside the WordPress Media Library through code requires understanding that the WordPress…
JP_Wp_Snippets
All different snippets I have been using
Use the Variation Name instead of Slug within the Product Name detail of Product exports
function custom_woo_ce_get_product_title_attribute_formatting( $format = 'slug', $post_id ) { // Set the format to Attribute Title $format…
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',…
Remove the Canonical URL for a specific URL
This code snippet can be used to remove the canonical URL for a specific URL that…
Noindex Product Search Pages
This code snippet can be used to set noindex on WooCommerce product search pages.
WP Simple Pay: Increase Input Font Size
Increase the font size of form inputs