Hi @gimmechefs,
Now that I’ve imported this demo on my local dev to see what was really going on. The two things that you mentioned above was not really an issue but intentional, the Crafty demo is minimalistic in design so hiding the “remove item” and “sorting dropdown” make sense.
Now if you want to have the “remove item” and “sorting dropdown” back, please navigate to Theme Options > CSS, first please remove the temporary fix I provided above.
Then find this block:
/* Hidden Elements
// ------------------------ */
.description_tab,
a.entry-thumb:hover:before,
.woocommerce .product-remove,
.x-recent-posts .x-recent-posts-date,
.woocommerce li.product .entry-header .button,
.woocommerce li.product:hover .entry-header .button,
.x-recent-posts a:hover .has-post-thumbnail .x-recent-posts-img:after,
.x-recent-posts a:hover .has-post-thumbnail .x-recent-posts-img:before,
.blog .x-main.full > article:not(:first-child) .entry-wrap .entry-content.excerpt {
display: none !important;
}
From that block remove or comment out the line .woocommerce .product-remove,
that for the “remove item (x)”
Next find this block:
.woocommerce-result-count,
.woocommerce-ordering {
opacity: 0;
}
And remove or comment out that block, that is for the sorting dropdown.
Now, I notice on your screenshot that there is customization going on your site that is not part of the Crafty demo, for example that orange background on remove (x) icon, in the actual demo that is not how it looks. In the demo its a simple little x icon.
Hope it helps,
Cheers!