Simple Chained Products
/** * EDD_Chained_Products Class * * @since 1.0.0 */ class EDD_Chained_Products { public function __construct() { // Actions add_action( ‘init’, array( $this, ‘textdomain’ ) ); add_action( ‘edd_post_add_to_cart’, array( $this, ‘maybe_add_chained_product’ ), 10, 3 ); add_action( ‘edd_meta_box_settings_fields’, array( $this, ‘download_chained_setting’ ),…Continue reading