skip to Main Content

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

2

Answers


  1. you can try this-

    <div class="text-align: left">
    <span>8 Left</span>
    </div>
    

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

    Thanks

    Login or Signup to reply.
  2. In your HTML code for that page, find the following code:

    <small class="spaces-left">8 left</small>

    It is contained inside this class: <div class="form-field form-field-wide">

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

    For example: <small class="spaces-left">Places Left: 8</small>

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search