How to put ''Monthly'' next to your price tag on featured product section?

Topic summary

A user is seeking help adding the word “monthly” next to the price tag for a subscription product on their homepage and product pages.

Problem:

  • Subscription item pricing lacks the “monthly” indicator
  • Desired format: price followed by “/Month”

Solution Provided:
Another user offered a CSS-based fix:

  • Add custom CSS code to the end of the styles.scss file
  • The code uses a pseudo-element (:after) to append “per month” text after the price
  • Note: Backslash () doesn’t work in pseudo CSS, so the format was adjusted to “per month” instead of “/Month”

Code snippet:
Targets .t_price.transcy-price-item:after with content: "per month"

The discussion appears resolved with a working CSS customization, though the exact formatting differs slightly from the original request.

Summarized with AI on November 24. AI used: claude-sonnet-4-5-20250929.

Hello,

I’m selling a monthly subscribtion item and its been bugging me that I can’t add the word ‘‘monthly’’ next to my products price tag on homepage & product page.

Is there any solution for this?

URL is: jasaoslaj.com

Check on mobile for better experience

Thanks and happy new year!

@jasa11 - you want like this?

Yes, but if its possible for it to be after the price like this

‘’/Month’’

@jasa11 - add this css to the very end of your styles.scss file and check, \ not working in pseudo css, so I made it per month

span.current_price.transcy-price-item:after {content: "\ per month";}