Search results for: admin
Replace The WordPress Logo on Login Page with your own logo
Replace The WordPress Logo on Login Page with your own logo
WP Simple Pay: Custom Button Color
Using CSS, change the checkout button color from green to blue when using the Embedded or…
Custom Plugin for WPForms
WPForms custom template generator.
Custom Receipt Page
Redirect to custom receipt or another page after a donation is completed. Can be per campaign…
Add WPCode Permalink Smart Tag
Add a custom smart tag for WPCode to output the value of the current page permalink.
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…