Custom Field Available/ Available in 1-3 days etc
-
Hi support,
Im using ACF field to appears on each product the availability.
Is there any way to appears also the availability in products grid ?
Now appears if you click in the product.
best regards
Hello,
Sorry, there are no options available in Theme Settings for it. You can try to use our Waitlist functionality, which help automatically notify customers when a product becomes available for purchase.
https://xtemos.com/docs-topic/waitlist/
Kind Regards
Problem solved after used the below code :
function buytech_show_availability_on_archive() {
global $product;
$availability = get_field(‘product_availability’, $product->get_id());
if ($availability) {
echo ‘<p class=”product-availability”>’ . esc_html($availability) . ‘</p>’;
}
}
add_action(‘woocommerce_after_shop_loop_item_title’, ‘buytech_show_availability_on_archive’, 15);
Hello,
Glad that you found a solution.
Always remember that you can reach out to us with any questions you may have.
Wish you all the best.
Kind Regards
The topic ‘Custom Field Available/ Available in 1-3 days etc’ is closed to new replies.