Disable Pages and Post from Appearing in Wordpress Search Results
Using WPCode, apply the following code snippet to effectively disable certain pages from appearing in the…
Make Private Posts Visible to Subscribers
/* * Make Private Posts visible to Subscribers * Typically only visible to admin or editor…
Exibe preços (Parcelado e com desconto a vista), na página do produto e no looping do produto.
Esse Snippet permite adicionar simulação de descontos e parcelamento aos preços exibidos no looping do produto…
Super Socializer Signin with google style
.theChampLogin.theChampGoogleBackground.theChampGoogleLogin{ height: 44px; background-color: #4285F4; border-radius: 2px; box-shadow: 0 5px 10px 0 rgba(0,0,0,.5); width: 184px; }…
Set Minimum total purchase amount
add_action( 'woocommerce_check_cart_items', 'required_min_cart_subtotal_amount' ); function required_min_cart_subtotal_amount() { // HERE Set minimum cart total amount $minimum_amount =…
REMOVE PRODUCT LINKS FROM YOUR SHOPPING CART
add_filter( 'woocommerce_cart_item_permalink', 'custom_remove_cart_product_link', 10 ); function custom_remove_cart_product_link() { return __return_null(); }
remove 'X' remove button in cart
.woocommerce table.shop_table .product-remove { text-align: center !important; display: none; }
mobile sticky menu chatgpt html
Home Shop Cart Account
Disable Order Receipt Email Optimizations
In Easy Digital Downloads 3.2.0+, the Purchase Confirmation (or Receipt) email sent to customers is sent…
Increase After Order Actions Delay
By default, Easy Digital Downloads schedules a WP Cron event 30 seconds after a purchase is…
Elementor - Parallax
function jquery_parallax() { ?>
WP Simple Pay: Modify Customer Record Creation
Add custom parameters to the Stripe Customer creation request.
WP Simple Pay: Translate Stripe Error Messages
For more information about the available error codes and messages visit: https://stripe.com/docs/error-codes
WP Simple Pay: Change Custom Amount Field Input Type
Changes the `type` attribute on the `input` tag. This helps some mobile keyboards have a better…