我有一个无法解决的怪异问题。我使用此功能在大小文本https://www.yeswedress.fr/produit/jovani-robe-cocktail-trapeze/
旁边显示链接。 add_action( 'woocommerce_before_add_to_cart_form',
'bbloomer_custom_action', 5
);
function bbloomer_custom_action() {
echo '<a href="' . get_site_url() . '/guide-des-tailles/" target="_blank"
class="link5">Guide des tailles</a>';
}
.link5 {
float:left;
margin-top:-70px;
margin-left:80px;
}
实际上,链接在产品说明的底部显示,我想显示在“ Taille:”部分的旁边,并且我希望显示在下面的图像中:
https://i.imgur.com/rzyLDmy.png
有帮助吗?