AZ
remove_action('woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart');Такой код мне дал результат, что корзина сместилась до упора влево, но не встала на место поиска. И не должна была, потому что там блочная вёрстка. Меня интересует, где я могу поменять ВЁРСТКУ header-а. Где они прописаны?
add_action("after_setup_theme", "storefront_child_header_remove");
function storefront_child_header_remove()
{
remove_action("storefront_header", "storefront_secondary_navigation", 30);
remove_action("storefront_header", "storefront_product_search", 40);
remove_action("storefront_header", "storefront_primary_navigation_wrapper", 42);
remove_action("storefront_header", "storefront_primary_navigation", 50);
remove_action("storefront_header", "storefront_primary_navigation_wrapper_close", 68);
}