Toggle switch pricing tabel
$( document ).ready(function() { $('.group-two').hide(); $('.change-price').on('click', function() { $('.group-one, .group-two').toggle(); } ); });
Disabling the Admin Bar for Non-Admin Users
add_action('after_setup_theme', 'remove_admin_bar'); function remove_admin_bar() { if (!current_user_can('administrator') && !is_admin()) { show_admin_bar(false); } }
Livrare 20kg plus
Cheltuielile de livare nu sunt incluse în prețul total la comenzile care depășesc 20 kg !…
Hello
echo "hello World !";
LIFTER_TextReplace - Changes "Courses" to "Modules" and "Lessons" to "Steps
* Changes "Courses" to "Modules" and "Lessons" to "Steps" * Add to WP Code Snippets or…
Remove Campaign Name From Donation Summary
Change the output of the line items displayed by the donation summary in email receipts.
SYNC_DIR - Users
/** * WPCode Snippet: WordPress Users Sync - FINAL NO DUPLICATES VERSION * Description: Bulletproof manual…
Untitled Snippet
Guesty Search Widget
WPForms: display a form under the confirmation message with or without user entered field values.
add_action( 'wpforms_frontend_output_success', static function ( $form_data, $fields, $entry_id ) { unset( $_GET['wpforms_return'], $_POST['wpforms']['id'] ); // If…
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) * ============================================================================= *…
Generate a virtual coupon when order is completed.
This snippet will generate a new virtual coupon for a coupon that you've enabled virtual coupon…