only logged in customer see inventory 'only X left in stock' in the product pag
-
Hi,
I see that stock left in the product page only display for logged in customers.
For non logged in customers stock left is not displayed.
Attacched screenshot
Attachments:
You must be
logged in to view attached files.
Hi,
Does it happen with our theme only? Could you please check how it works with default WordPress theme to check is it related to Basel?
Regards
We have fixed but I need to know how to show more than 3 results in the search bar.
It’s important for us because we have 5 products named Retinol
Thank you!
Please copy the exact code
is this included? ‘`’ function basel_header_block_search() {
Sorry, wrong code
function basel_header_block_search() {
$header_search = basel_get_opt( 'header_search' );
if( $header_search == 'disable' ) return;
$classes = 'search-button';
$classes .= ' basel-search-' . $header_search;
if ( basel_get_opt( 'mobile_search_icon' ) ) $classes .= ' mobile-search-icon';
?>
<div class="<?php echo esc_attr( $classes ); ?>">
<a href="#">
<i class="fa fa-search"></i>
</a>
<div class="basel-search-wrapper">
<div class="basel-search-inner">
<span class="basel-close-search"><?php esc_html_e('close', 'basel'); ?></span>
<?php basel_header_block_search_extended( false, true, array('thumbnail' => 1, 'price' => 1, 'count' => 5), false ); ?>
</div>
</div>
</div>
<?php
}