skip to Main Content

Empty Cart Redirect to Specific Page – Woocommerce

I want to redirect to page with URL slug 'join' or post-id 471, what should I put behind wc_get_page_id? add_action("template_redirect", 'redirection_function'); function redirection_function(){ global $woocommerce; if( is_cart() && WC()->cart->cart_contents_count == 0){ wp_safe_redirect( get_permalink( wc_get_page_id( 'join' ) ) ); exit; }…

VIEW QUESTION

Hover image issue – Woocommerce

I have a link in text on this page, https://melodylakerart.com/product/sun-on-skin-mask-duplicate-1/ which when hovered over produces a pop up image. As you can see, the text is broken - all the text between "sensitive' and 'off" should be on one line…

VIEW QUESTION
Back To Top
Search