I would like to embed the WooCommerce add-in shortcode [woocommerce_accepted_payment_methods] into the secondary menu between the social media links (LHS) and the menu(RHS).
Please advise.
Hi pack10natural!
Please try adding following code to functions.php file in Appearance > Editor
add_action('ava_after_main_menu','header_shortcode');
function header_shortcode() {
echo do_shortcode("[woocommerce_accepted_payment_methods]");
}
Best regards,
Yigit