You can set the thank you redirect page in Divi > Woo Divi > Checkout but in the case you need different ones for different scenarios you an use a variation of the following code in your functions.php file: // Filter thank you page function example_callback(...
WooCommerce
Remove Additional Information heading from product tabs
Add to functions.php file in Child Theme: // Remove the Additional Information title from tab content on products add_filter('woocommerce_product_additional_information_heading','__return_null');
Remove zoom effect on WooCommerce product image
Add to functions.php file in Child Theme: // Remove zoom effect on WooCommerce product image function remove_image_zoom_support() { remove_theme_support( 'wc-product-gallery-zoom' ); } add_action( 'wp', 'remove_image_zoom_support', 100 );
How to resend WooCommerce admin order notification
Editing My Account page layout
From where is the layout controlled? Edit My Account layout in Divi Library: Control which Account areas (navigation buttons) are displayed: Edit style of My Account navigation buttons: > CSS Tweaks for My Account page
My Account page CSS tweaks
/* Orders table styling */ /* Adjust button letter spacing and padding on hover */ .woocommerce-orders-table__cell-order-actions > a:hover { letter-spacing: 0 !important; padding: 0.3em 1em !important; } /* Remove button icon */...
Editing Single Product Layout on WooCommerce website
General - Editing the template layout: Extras: AfterPay info
Complete Ecommerce Request Form
Adding sale prices and sale schedules to products with WooCommerce
This video covers both simple and variable products: Note If you wish to send these instructions to a client, the video is available publicly here: https://makeweb.com.au/sale-prices-schedules-products-woocommerce/
Style “View” button on WooCommerce orders list
/* View Order button styling */ /* Remove icon from hover */ .woocommerce-orders-table__cell-order-actions > a:hover { padding: 0.3em 1em !important; } .woocommerce-orders-table__cell-order-actions > a:hover::after { display: none !important; }