how to create woocommerce subscription for 5$ price using wordpress subscription plugin without creating the product. the price can be passed to that page using shortcode already
[woocommerce_checkout]
short code to pay one time payment. requirement is to convert one time into daily payment using woosubscription plugin.code to make subscription using shortcode: this is my already working code for one time payment:
`<!-- wp:shortcode -->
<p>[woocommerce_checkout]</p>
<!-- /wp:shortcode -->
<div class="custom-button">
<a href="http://turntogether.itfhrm.com/donate/">Go to Donation</a>
</div>
<div class="custom-ccheckout-right-text">[xyz-ips snippet="Donate-Checkout"]</div>`
I want to create subscription for the same. Please tell some ideas and share code to work subscription payment
I tried the following code for subscription payment:
`[subscription_price price=”$1″ interval=”day” subscription_name=”Daily Subscription”]`
But its not working as expected.