Hi @sreecharansree,
In the next version (1.2.10), I’ll be adding the ability to make the coupon code field always visible, without the need to click the “Add coupon code” link button.
To do so, you’ll need to add the code snippet below to your functions.php
:
add_filter( 'fc_coupon_code_field_initially_expanded', '__return_true' );
You can find a beta version of the next version with this change in the link below:
https://t2449427.p.clickup-attachments.com/t2449427/3951d022-60db-4ab7-94a4-bb528b2ad165/fluid-checkout.1.2.10-beta-1.zip
However, I do not recommend making the coupon code always open and visible like that for the reasons outlined in the article from the Nielsen Norman Group on the subject: Applying Discounts and Promotions on Ecommerce Websites.
The most relevant part being:
If you must support coupon codes in situations when a coupon may not be available on the site, it’s best not to provide an open text field. A better solution is to provide a text link to expose a text field. This design is less likely to prime users and send them on a coupon quest as many shoppers will not notice it. The tradeoff, of course, is that it’s less findable for those with a coupon code.
Best,
Diego