Forum
JS code for question and answer page
Change Fields On Donation Form
Example on how to change labels for fields on donation form.
Google Ads
Google Ads
Order WPCode snippets by title in the admin
Make the default order of WPCode snippets in the admin by title ascending.
How to Automatically Submit a Form with a Field Choice - CSS
button#wpforms-submit-3046 { display: none; } form#wpforms-form-3046 span.wpforms-icon-choices-label { font-size: 0; } ul#wpforms-3046-field_3 li label:hover, ul#wpforms-3046-field_4 li…
Google AdSense code
AdSense code
Google AD
Google AD Snippet
Disable emails on free purchases
If the purchase was for a free product, don't send any emails.
user menu for logged in and logged out users
function my_wp_nav_menu_args( $args = '' ) { if( is_user_logged_in() ) { $args['menu'] = 'logged-in'; } else…
WP Simple Pay: Use Custom Field Value as Stripe Payment Description
Use the value of a custom field as the description for the Stripe payment record.
Show current day, month, year in various formats
Return the current date and parts of current date in various formats
Let Google place ads for you
Add one piece of code to your site and Google will automatically show ads in all…
Add Offline Instructions Field
Add a new field to your donation-related emails which shows the offline payment instructions for offline…
Update Cart Automatically
/** * Update Cart Automatically on Quantity Change * * @author Misha Rudrastyh * @url https://rudrastyh.com/woocommerce/remove-update-cart-button.html…