'; } endif; /** * Woocommerce shop/product/checkout ul close tag. */ if ( ! function_exists( 'astra_woocommerce_ul_close' ) ) : /** * Woocommerce shop/product/checkout ul close tag. * * @return void */ function astra_woocommerce_ul_close() { echo ''; } endif; /** * Woocommerce shop/product/checkout li close tag. */ if ( ! function_exists( 'astra_woocommerce_li_close' ) ) : /** * Woocommerce shop/product/checkout li close tag. * * @return void */ function astra_woocommerce_li_close() { echo ''; } endif; /** * Two step checkout wrapper */ if ( ! function_exists( 'astra_two_step_checkout_form_wrapper_div' ) ) : /** * Used to wrap the checkout form in a div and include navigation links * * @return void */ function astra_two_step_checkout_form_wrapper_div() { echo '
'; ?> '; } endif; /** * Two step checkout li wrapper */ if ( ! function_exists( 'astra_two_step_checkout_address_li_wrapper' ) ) : /** * Used to wrap the address fields on the ckecout in an li * * @return void */ function astra_two_step_checkout_address_li_wrapper() { echo '
  • '; } endif; /** * Two step checkout li wrapper */ if ( ! function_exists( 'astra_two_step_checkout_order_review_wrap' ) ) : /** * Used to wrap the order review in an li * * @return void */ function astra_two_step_checkout_order_review_wrap() { echo '
  • '; echo '

    ' . esc_html__( 'Your order', 'astra-addon' ) . '

    '; } endif; /** * Remove shop page description */ if ( ! function_exists( 'astra_woo_remove_shop_page_description' ) ) : /** * Remove desription * * @param string $description Description. * @param obj $post_type_obj Post object. * * @return string */ function astra_woo_remove_shop_page_description( $description, $post_type_obj ) { if ( is_shop() ) { $description = ''; } return $description; } endif; /** * Array of order review toggler text. * * @param string $text array key to get specific value. * * @return string */ function order_review_toggle_texts( $text = 'show_text' ) { $order_summary_show_text = astra_get_option( 'checkout-show-summary-text' ); $order_summary_hide_text = astra_get_option( 'checkout-hide-summary-text' ); $toggle_texts = apply_filters( 'astra_addon_order_review_toggle_texts', array( 'show_text' => esc_html( $order_summary_show_text ), 'hide_text' => esc_html( $order_summary_hide_text ), ) ); return $toggle_texts[ $text ]; }