Please submit a private ticket if you need to share sensitive information, such as license details and admin credentials.

Okay
  Public Ticket #4511371
Can't add product (subscription)
Open

Comments

  •  1
    Thomas started the conversation

    Hi

    I really need to be able to add subscription to Bought together, but am unable. Same subscription can be added using Smart Grouped products plugin, but here I have to select at least 1 extra, which is not ideal for stuff like this. What to do, can you update to allow for subscriptions?

    Attached files:  Screenshot From 2025-10-30 22-46-22.png

  •  1,565
    Dustin replied

    Hi Thomas,

    Please add the custom code below. (How to add custom code? ↗):

    add_filter( 'woobt_product_types', function ( $types ) {
    	$types[] = 'subscription';
    	$types[] = 'variable-subscription';
    	$types[] = 'subscription_variation';
    	$types[] = 'reepay_simple_subscriptions';
    
    	return $types;
    }, 99 );

    If it doesn't work, please provide your website credentials (wp-admin link, username, and password) or create a development or staging site with identical configurations so that I can check for any issues.

    I also want to inform you that your support for the WPC Frequently Bought Together — Single site (purchased on Mar 19, 2024) has expired. To keep receiving support, please renew your license as soon as possible: https://wpclever.net/downloads/frequently-bought-together/ 

    Best regards,
    Dustin

  •  1
    Thomas replied

    Thanks, works perfectly!