• Resolved jfritsch

    (@jfritsch)


    For one-time donations, I set the “Subscription expires after” field to “1 day”. On checkout page this text is shown: “Test – einmalig? CHF?1.00 for 1 day” How can I change Text for 1 day for example to Einmalzahlung ?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter jfritsch

    (@jfritsch)

    found a solution:

    add_filter( 'woocommerce_subscriptions_product_price_string',function( $subscription_string, $product, $include ){
    if (strpos($subscription_string, ' 1 ')) {
    return substr_replace($subscription_string, ' style="display:none"', strpos($subscription_string, 'class="subscription-details"'), 0);
    }
    return $subscription_string;

    },10,3);
    Plugin Author Jonas

    (@flinnn)

    Good to see that you found a solution ??

    Best, Jonas

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.