Questions tagged [woocommerce-subscriptions]

To be used for WooCommerce Subscriptions plugin related questions only

Third party official WooCommerce Subscriptions plugin.

This powerful extension allows you to create and manage products with recurring payments — payments that will give you residual revenue you can track and count on.

WooCommerce Subscriptions allows you to introduce a variety of subscriptions for physical or virtual products and services. Create product of the month clubs, weekly service subscriptions or even yearly software billing packages. Add sign-up fees, offer free trials or set expiration periods.

392 questions
0
votes
2 answers

Woocommerce Subscriptions Product Price String

I have a function that can change the text of the subscription details. function wc_subscriptions_custom_price_string( $pricestring ) { global $product; $products_to_change = array( 2212 ); if ( in_array( $product->id, $products_to_change ) ) { …
Paul VI
  • 515
  • 1
  • 8
  • 25
0
votes
1 answer

Woocommerce subscription: seperate tax rate, one for the signup fee and second for the recurring payment

We have a website that sells subscriptions. The customer will get a physical product and then will be charged each month for the service. We use WooCommerce Subscriptions plugin. We set the subscription product so the "Signup fee" will be used to…
Shir Gans
  • 1,976
  • 3
  • 23
  • 40
0
votes
1 answer

How to have two registration forms in WooCommerce? one for regular customer and two for membership

As per subject line, I want to have two forms in my WordPress website that has a WooCommerce store integrated. I want one of the form(billing form) as a default and two for membership. I am using YITH WooCommerce Subscription plugin for…
0
votes
0 answers

Add Multiple Products To Cart at Once in Woocommerce

In bundle like select any of 3 products with subscription And not like T-shirt size color Use case - hair gel three different types of hair Hair lotion - three different types of lotion Shaving gel - three different varity They are all different…
0
votes
1 answer

Pair normal products with subscriptions based on item count in Woocommerce

In my website I use WooCommerce v3.1+ and Woocommerce Subscriptions. My products that contains items like video cameras and subscription plans. What I would like to do is: when purchasing a camera and subscription plan, at cart page(before…
0
votes
1 answer

WooCommerce Subscription plugin emits warning: "class 'WC_CDP' does not have a method 'get_subscription_price_string'"

I am using the WooCommerce Subscriptions plugin for managing subscription products on my website. When I add a subscription product to the cart, then go to the cart page, I see the following error when I expect to see the…
0
votes
0 answers

Can I take one product payment at a time when I have two subscription products in the woo-commerce cart?

I am working on E-commerce site and I have an issue, is it possible that I have a two subscription product in the woo-commerce cart when I go on the checkout page it's take one product payment and apply subscription for only one product?
0
votes
1 answer

How to change woocommerce each product total only in cart

I have my checkout cart like this product price quantity total apple 50 1 50 orange 40 1 40 I need to change the total on the right side to say 20 Code I tried i will put on comment box but it…
0
votes
1 answer

Woocommerce subscriptions hook scheduled_subscription_payment_ passes parent order instead of a renewall one

I'm trying Paymaster Recurring payments into exsisting payment gateway. the standart hook calling looks like this add_action('scheduled_subscription_payment_'. $this->id , array($this, 'scheduled_subscription_payment'), 10, 2); It's fine and…
0
votes
2 answers

woocommerce subscription switched action doesn't work

Based on the information in woocommerce documentation: https://docs.woocommerce.com/document/subscriptions/develop/action-reference/ The action: woocommerce_subscription_status_changed, Should be triggered also when the subscription upgraded or…
Shlomi
  • 337
  • 1
  • 6
  • 19
0
votes
1 answer

Add 12 months to a Date in PHP

We have a "start date" echoed out in a WooCoomerce email like so: get_time( 'start', 'site' ) ) ); ?> The output looks like this: March 29, 2017 How would I go about adding 12 months…
sc2015
  • 123
  • 13
0
votes
1 answer

Change Recurring Total Shipping Label to not include "FREE"

I am having a hard time finding any documents based on the WooCommerce Subscription plugin to adjust shipping label names. I would like to remove the word: FREE at the end. I have tried using this function from another Stack Overflow user, but…
Justin
  • 2,502
  • 7
  • 42
  • 77
0
votes
0 answers

Change Woocommerce endpoint url

I need help with a little problem. I've installed the woocommerce subscription plugin to give my customers the option to subscribe something. Because it looks and sounds better I've changed all strings form "subscriptions" to "flatrates" but the url…
0
votes
2 answers

WooCommerce Subscription with Stripe Gateway

I have set-up a WooCommerce Subscription with Stripe Gateway. First payment for subscription is working fine, but automatic recurring billing/payment Monthly is not working with stripe, I also noticed that on the Woocommerce->Subscriptions total…
0
votes
2 answers

How to get logged in users membership plan in WooCommerce

Currently I am working on membership site where their are two types of membership 1) Free Membership 2) Premium membership Based on these membership I want to change content of any pages For this I am using WooCommerce, WooCommerce Subscription and…