Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
Hello every one,
I want change the widget "products" display (woocommerce) in the right lateral bar of the forum.
But as you see, the title is not center under the product image, and the price is on the extrem right
Can i delete the text and the price ?
Or can i put the text under the image, and center the price ?
How can i do.
Thanks for the help.
Best regards,
L.
My forum : https://www.lamethodestreet.fr/forum-musculation/
Hi @street,
This is not wpForo widget so we can't customize it. I can help you display as it's designed in WooCommerce. Please navigate to Dashboard > Forums > Settings > Styles Tab and put this CSS code in Custom CSS Code textarea. Then fix it, delete all caches, delete all optimizer plugins caches, then navigate to forum front-end and press Ctrl+F5 twice to delete browser cache:
#wpforo #wpforo-wrap ul.product_list_widget li img{
 float: left;
  margin-right: 20px !important;
}
#wpforo #wpforo-wrap ul.product_list_widget li span {
   font-weight: inherit;
}
It should look like this:
As I said we I can't help you customize this widget. You should contact to the WooCommerce support team. For the CSS code I provided please add !important statement, and again delete all caches and press Ctrl+F5 on forum front:
#wpforo #wpforo-wrap ul.product_list_widget li img{
float: left !important;
  margin-right: 20px !important;
}
#wpforo #wpforo-wrap ul.product_list_widget li span {
  font-weight: inherit !important;
}
Okay, i understand, i will do that.
Perfect, the code worked 😉
It's better now, more clean.
Thanks you Robert.
