Home > Back-end >  I want to replace text in my WordPress site
I want to replace text in my WordPress site

Time:11-07

Kindly look at this this here you can see here is mentioned (8 left) i want to replace (left with places left) means in simple i want to show 8 places left…

https://digitalrise.website/product/kayak-lisbon/?date=2022-11-07

Here is link below

CodePudding user response:

you can try this-

<div >
<span>8 Left</span>
</div>

Please try this code, if you still facing issue just lemme know, i will help you more.

Thanks

CodePudding user response:

In your HTML code for that page, find the following code:

<small >8 left</small>

It is contained inside this class: <div >

Change the part of that HTML that says "8 left" and change it to what you wish the page to display.

For example: <small >Places Left: 8</small>

  • Related