Skip to content

Instantly share code, notes, and snippets.

@DxDiagDx
Created August 7, 2020 07:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DxDiagDx/ffc1f27a3615e7206a7e7414ae2fcfeb to your computer and use it in GitHub Desktop.
Save DxDiagDx/ffc1f27a3615e7206a7e7414ae2fcfeb to your computer and use it in GitHub Desktop.
WOO: условия вывода на страницах корзины или оформления заказа
add_action( 'woocommerce_sidebar', 'bbloomer_cart_checkout' );
function bbloomer_cart_checkout() {
if ( is_cart() ) {
echo 'This will show on the Cart sidebar';
} elseif ( is_checkout() ) {
echo 'This will show on the Checkout sidebar';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment