Georgia
Forum Replies Created
-
Forum: Plugins
In reply to: [Woo Credits] Does Premium Version Work With WooCommerce Appointments?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.
Forum: Plugins
In reply to: [Woo Credits] Does Premium Version Work With WooCommerce Appointments?Hi Jenny. Once I purchased the premium version of Woo Credits, it worked great with Appointments with zero issues.
Forum: Plugins
In reply to: [Woo Credits] Does Premium Version Work With WooCommerce Appointments?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?
Forum: Plugins
In reply to: [Woo Credits] Does Premium Version Work With WooCommerce Appointments?You bet! Sorry, I didn’t realize you had responded. I created an account for you. Thank you!
Forum: Plugins
In reply to: [Woo Credits] Does Premium Version Work With WooCommerce Appointments?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, 11 months ago by Georgia.
Forum: Plugins
In reply to: [Woo Credits] User_credits shortcode not workingWhat shortcode are you supposed to use, then? I can’t evaluate this free version to see if I want the paid version if I can’t even test it out with a shortcode.
- This reply was modified 4 years, 11 months ago by Georgia.
I second this. I love the plugin for many of my clients, however, when I server larger clients they need emails to send from Gsuite alias emails.
Forum: Plugins
In reply to: [Plugin Load Filter] unable to activate plugins on woocommerce shop pageI, too, am wondering how to load the woof plugin on only the product archive pages, but I don’t see this as an option. Can you help?
Forum: Fixing WordPress
In reply to: Featured Image block not showing in classic…Steven, you were right! It was a plugin conflicting with the theme that was causing every issue. This plugin was built for this particular theme, so they’ve obviously got things to work out. I’ll email their support. Thanks for your help!
- This reply was modified 6 years, 1 month ago by Georgia.
Forum: Fixing WordPress
In reply to: Featured Image block not showing in classic…I’ll try that. Thanks!
Forum: Fixing WordPress
In reply to: Featured Image block not showing in classic…Hi Steven. Yes, it does, but in this case it’s not a custom post type, it’s just the standard post, I’ve just added a bunch of programming to it. This problem started occurring with the latest WordPress update. I am able to display the featured post admin box, I just have to uncheck it and then re-check it every time. It’s a usability pain for my non-technical clients.
Forum: Fixing WordPress
In reply to: Comment box not appearing on posts when date is changedYou completely rock! How did I not know about this setting??? At any rate, you’ve saved me.