This plugin stands out for its intuitive functionality, allowing visitors to conveniently revisit products they have previously shown interest in. By prominently featuring recent views, it encourages potential customers to reconsider items they may be interested in purchasing, thereby increasing the likelihood of conversions.
Moreover, the plugin’s compatibility with WooCommerce ensures seamless integration into your existing setup, requiring minimal configuration for maximum impact. Whether utilized on product detail pages or strategically placed throughout your site, it provides a valuable tool for enhancing navigation and guiding users towards completing their purchase journey.
In conclusion, “Recently Viewed Product for WooCommerce” is a commendable choice for website owners seeking to optimize user engagement and boost sales through effective product visibility. Its user-friendly implementation and versatile shortcode feature make it a valuable addition to any WooCommerce storefront.
]]>I am wondering if there is a way to upload certain new products and not have them appear on in the main catalog (which is the shop’s home page). I would like for them to only been seen if a customer browses to their specific category.
For example: I sell electronic music, and that is what people look for when they come to my shop. On some occasions I have a few things from other genres to sell (let’s say rock music in this case). I don’t want to have the rock music mixed in with the electronic music in the main catalog, since that is not what most people are there for. But, I will have a Rock Music category that can be clicked on and the products matching that genre will then be displayed.
Is it possible? And if so, what should I be inputting to note this visibility when I upload my products via CSV?
Thank you
I am tired of finding solutions for product visibility issues. It is a random issue sometimes it works and sometimes it completely broke the display of the product.
I am frustrated with this to make it work because my site has 5000 products and 500 categories.
Woocommerce support says to update the product lookup table every time you do update via import but this also does not work.
I have followed every step mentioned by woocommerce and all conflict mode tests but nothing works.
Hope you have a permanent solution for the issue in a future release.
Thanks
]]>We have a site that uses both product visibility by user role and shipping rules by user role and we can tell you that the “guest” user role does not work for logged out visitors.
To recreate take a product and include “guest” visibility then view the page as a site visitor the page will 404
Do the same for shipping rules and the shipping option will not show.
It seems to be an issue across all tools that use user roles and only on the “guest” option. This has not always been the case so seems a new bug.
Booster Plus for WooCommerce 5.3.2
]]>I cleared all cache and disabled the caching plugin completely, but that made no difference.. Both WP and WC are the latest versions.
Any ideas at all? Thanks!
Additional info.. What I noticed is if I search for a product in incognito mode to simulate a new visitor, it shows under search box (the theme I use has a preview function). If I click on that image, I can access the product. If I press enter instead of clicking product image, it takes me to search results and says nothing found. I tried this with SKU and also product name, both show product thumb as a preview but nothing in the search results. Also, if I go to the product category, the newly imported products are NOT visible there.
]]>The original code in the theme that generates this navigation is as such:
if ( ! function_exists( 'shopkeeper_product_nav' ) ) :
function shopkeeper_product_nav( $nav_id ) {
global $wp_query, $post;
// Don't print empty markup on single pages if there's nowhere to navigate.
if ( is_single() ) {
$previous = ( is_attachment() ) ? get_post( $post->post_parent ) : get_adjacent_post( false, '', true );
$next = get_adjacent_post( false, '', false );
if ( ! $next && ! $previous )
return;
}
// Don't print empty markup in archives if there's only one page.
if ( $wp_query->max_num_pages < 2 && ( is_home() || is_archive() || is_search() ) )
return;
$nav_class = ( is_single() ) ? 'product-navigation' : 'paging-navigation';
?>
<nav role="navigation" id="<?php echo esc_attr( $nav_id ); ?>" class="<?php echo esc_attr( $nav_class ); ?>">
<div class="product-nav-previous"><?php previous_post_link( '%link', '<i class="spk-icon spk-icon-left-small"></i><span>' . esc_html__( 'Previous Product', 'shopkeeper' ) . '</span>' ); ?></div>
<div class="product-nav-next"><?php next_post_link( '%link', '<span>' . esc_html__( 'Next Product', 'shopkeeper' ) . '</span><i class="spk-icon spk-icon-right-small"></i>' ); ?></div>
</nav><!-- #<?php echo esc_html( $nav_id ); ?> -->
<?php
}
endif; // shopkeeper_product_nav
Since this function can be overridden in my child theme, can you suggest what can be done to remove hidden products from the prev/next navigation for users not authorised to see particular products?
]]>