Check out this website link:
I attempted to rearrange the best seller product section below the category section in the sidebar. I enabled Layout editor mode from the admin end, dragged the best seller products below the category sections, and saved it. It appeared to work, but upon refreshing the page, the best sellers were still showing at the top of the sidebar.
Trying a different approach, I moved the code for best selling products below the category section but nothing appeared on the page. My x-cart 5 site's homepage currently displays the most wanted products as best sellers in the sidebar. Interestingly, moving new arrivals below the category section worked fine, but the best seller section did not budge.
The best seller module in x-cart 5 only has one option to set how many products are displayed on the frontend. Below is the code snippet for displaying best seller products in the sidebar:
<div class="{{ this.getBlockClasses() }}">
{% if this.getHead() %}
<h3>MOST WANTED</h3>
<div class="tag_line3">These are the hot sellers Look Below to see the most Wanted items on the site are.</div>
{% endif %}
<div class="content">{% include this.getBody() %}</div>
</div>
Any experts familiar with x-cart 5 who can assist me with this issue?