Product packaging/size question

I am in need of some help. I have recently taken back from my previous web designer (long story). I am in the process of adding new products and for the life of me cannot figure out where to change the packaging size.

When I add the new product, it defaults to displaying it like this: $PRICE / packaging size

The packaging size is what I need to change and have no idea where to do it. I have looked everywhere in the products options but cannot find it. Currently, it defaults to 2 lb bag and my new products are in the 5 lb bags and bulk quantity boxes. My URL is here: https://inlandempireraw.com/product/performance-dog/

Your help if very much appreciated.

Not that there was any help to be offered here, but I figured that I would post the solution to my original issue. After MANY hours of searching, I decided that it had to be hard coded into the site, and it was.

A search of the functions.php file led me to this little bit of nastiness that my previous designer had placed into it in response to a request from me to have it display this info.

function bbloomer_price_prefix_suffix( $price, $product ){
$price = $price . ’ / 2 lb bag’;
return apply_filters( ‘woocommerce_get_price’, $price );

Your code will probably look very similar to this, with the exception of the ’ / 2 lb bag ’ text string that (at least on my install) was located on line 62 of the functions.php file.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.