Home Forums Basel support forum Review Reply To: Review

#36318

Artem Temos
Keymaster

Hello,

1. We see some JS error in the console that is caused by some of the extra code added or by some plugins installed

2. Try to add the following code snippet to the Custom CSS area in Theme Settings to fix this issue.

.single-product-content .comment-form .stars span a:hover, .single-product-content .comment-form .stars span a.active {
    color: #dec90d;
}

3. By default, the WooCommerce plugin doesn’t have products next/previous arrows functionality at all. To implement this feature we use standard WordPress PHP get_next_post and get_prev_post functions that can obtain adjacent posts from the database. Unfortunately, it takes products from the whole table and depends only on the shop page order. Yes, it would be much better to show next/prev product from the same category.

We spent a lot of time investigating this issue but, unfortunately, there is no solution for this problem. You can check any other theme for WooCommerce and you will see the same issue.