Bắt buộc cài Plugin ACF
/************************** Thêm nút bổ sung ***************************/ add_action('woocommerce_after_add_to_cart_button', 'add_custom_buttons', 30); function add_custom_buttons() { global $product; // Danh sách nút bổ sung $buttons = [ 'shopee' => [ 'label' => 'Mua qua Shopee', 'color' => '#ff7600', 'hover_color' => '#ff8e2d', 'field' => 'link_shopee', ], 'lazada' => [ 'label' => 'Mua qua Lazada', 'color' => '#464998', 'hover_color' => '#5d61b9', 'field' => 'link_lazada', ], 'tiki' => [ 'label' => 'Mua qua Tiki', 'color' => '#00b3fd', 'hover_color' => '#46d4fe', 'field' => 'link_tiki', ], ]; // Lặp qua các nút và hiển thị foreach ($buttons as $key => $button) { $link = get_field($button['field']); if ($link) { echo '<style> .' . $key . '_button { margin: 10px 0; background-color: ' . $button['color'] . '; border: none; color: white; padding: 5px 15px; text-align: center; text-decoration: none; display: inline-block; font-size: 16px; } .' . $key . '_button:hover { background-color: ' . $button['hover_color'] . '; color: white; } </style>'; echo '<a class="' . $key . '_button" href="' . esc_url($link) . '" target="_blank">' . esc_html($button['label']) . '</a><br>'; } } }