Viewing 10 replies - 1 through 10 (of 10 total)
  • Plugin Author brandonmuth

    (@brandonmuth)

    Thanks for the post! We have not integrated with that plugin. If you want to send temporary WP Admin to [email protected] we can look at their code and see what would be required to implement. Thanks and hope you had a nice Christmas!

    Hi Brandon. I have the same exact request. Did you figure this out? Looks like the only thing keeping it from integrating is the product type (in this case it’s called an “Appointable Product”. If we can get this to work I’ll buy woo Credits. They provided this function to integrate (3 years ago), however, it no longer works. Either that, or it only works with the platinum version. If that’s the case, please let me know and I’ll purchase the Platinum version:

    // Compatibility with Woo Credits plugin.
    add_action( 'woocommerce_product_options_general_product_data', 'add_custom_general_credit_field' );
    function add_custom_general_credit_field() {
    	global $woocommerce, $post;
    	$product_id = $post->ID;
    	$_product = wc_get_product( $product_id );
    	if ( 'appointment' == $_product->product_type ) {
    		echo '<div class="options_group">';
    		woocommerce_wp_text_input(
    			array(
    				'id'          => '_credits_amount',
    				'label'       => __( 'Credit Required For Download ', 'mwdcp' ),
    				'placeholder' => '',
    				'desc_tip'    => 'true',
    				'description' => __( 'The credits for this product to download.', 'mwdcp' ),
    				'type'        => 'text',
    			)
    		);
    		echo '</div>';
    	}
    }
    • This reply was modified 4 years, 8 months ago by Georgia.
    Plugin Contributor pankajagrawal

    (@pankajagrawal-1)

    Thanks for the post! If you want to send temporary WP Admin to [email protected] we can look into it and see what would be required to implement.

    You bet! Sorry, I didn’t realize you had responded. I created an account for you. Thank you!

    I got an email from you, but it was forwarded from my client. I re-generated a password and sent it to you. Have you had a chance to look at it?

    Hello! I have the same exact question. I’ve already purchased WooCommerce Appointments and would like to know if Woo Credits is compatible with it.

    We sell bundles like this: https://timnutrition.com/product/4-follow-up-bundle/, which will ideally give the users credits that can be used to book follow up consultations here: https://timnutrition.com/product/follow-up-consultation/. Right now we’re taking note of everything manually and was hoping that everything can be automated online.

    • This reply was modified 4 years, 8 months ago by jennylapus.

    Hi Jenny. Once I purchased the premium version of Woo Credits, it worked great with Appointments with zero issues.

    Thanks Georgia! ?? You think it will work with the case I specified?

    It’s hard to say. It’s really nice for the clients to book things. It’s a little more difficult to use WooCredits when it comes to staff booking things. But for the client, yes, it seems to work just great! From what I can see, however, clients can EITHER use credits to pay OR a regular payment method, but you can’t combine both “payment methods” in the Woocommerce shopping cart.

    Plugin Contributor pankajagrawal

    (@pankajagrawal-1)

    Hi Georgia,

    @ limitation of either credits or regular payment method

    if you process with credits, products which can not be bought with credits will be saved and added to new cart as soon as current one processed, vice versa.

    also we have been looking for solution to this issue and will be implemented as soon as we find it.

    Thanks

Viewing 10 replies - 1 through 10 (of 10 total)
  • The topic ‘Does Premium Version Work With WooCommerce Appointments?’ is closed to new replies.