WPForms: new smart tag - Current Date/Time
It's a localized date/time in this format: Y-m-d H:i:s
Delete Pending Donations
This script properly deletes all pending donations using WordPress functions ensuring all hooks fire and related…
META CONVERSIONS API (CAPI) — PURCHASE (SERVER-SIDE)
/** * ============================================================================= * VOELGOED — META CONVERSIONS API (CAPI) — PURCHASE (SERVER-SIDE) * ============================================================================= *…
Disallow point redemption if cart has subscription product.
This snippet will remove the point redemption option if the cart has a subscription product
Download Archive Menu Item
Displays the download archive link in the "View All" tab of the "Pages" menu items meta…
cookies
cookies banner huts pot
Risikoanalyse Formular
6) Wichtiger Hinweis zu Elementor Dieses Formular ist in Elementor eingebettet, aber kein natives Elementor-Pro-Formularwidget. Der…
Topup Form
Top Up Now Player ID Buy Now
Remove Post Title from Yoast Breadcrumbs
This snippet removes the post title from Yoast SEO breadcrumbs
Add a document file upload
// Add the document field to the signup form. add_action( 'wcv_form_input_after__wcv_store_name', 'wcv_doc_uploader'); function wcv_doc_uploader( ){ if…
Enable product images in vendor order email notifications
add_filter( 'wcvendors_vendor_order_items_args', 'wcv_enable_product_image_vendor_order_email' ); function wcv_enable_product_image_vendor_order_email( $order_item_args ){ $order_item_args['show_image'] = true; return $order_item_args; }