I am using the paid version of the Pimwick Gift Card plugin, and it seems to be working normally, except that I randomly (sometimes it generates the .pdf correctly but there seems to be no pattern) get a “critical error” page when trying to preview/print a gift card, this is from the link within the designer in the backend and also the frontend when purchasing a card.
My wordpress is up to date, as is my theme (Enfold) and the plugin. I have the same problem even when I de-activate all the plugins except for woocommerce and PW Gift cards.
Thanks in advance for any help.
]]>function pw_gift_card_payment_methods( $available_gateways ) {
global $pw_gift_cards_redeeming;
if ( is_admin() ) {
return $available_gateways;
}
if ( isset( $pw_gift_cards_redeeming ) && $pw_gift_cards_redeeming->cart_contains_gift_card() ) {
// Cash on Delivery
unset( $available_gateways[‘cod’] );
// Direct Bank Transfer
unset( $available_gateways[‘bacs’] );
}
return $available_gateways;
}
add_filter( ‘woocommerce_available_payment_gateways’, ‘pw_gift_card_payment_methods’ );
Although I’ve set everything right it still doesn’t work. I don’t have any gateway rules set and for all the other items on my site the payment gateways are working fine. The Gift Card is the only product that when chosen gives the message that there is no payment method available. Can you please help me?
Thank you !!
Is it possible to remove the to, from and message when using the PW Gift Card?
The gift card would just get emailed to which ever email address is used at checkout.
Thanks
David
]]>I had a customer make a purchase. His order total, including shipping and fees, was $224.78. He used a gift card with a balance of $150. It looks like the gift card only applied to the shipping amount of $74.78, but he didn’t get charged at all for the remaining order balance of $150.
I did an order myself to see if it would work right for me. The total for the order, including shipping and fees, was $216. I applied a gift card that I had created for $50, and when I checked out, it said the final amount was $156, which is accurate. The problem, however, is that it only charged me $116. It looks like it somehow applied the $50 gift card twice.
As I said, I don’t know if these issues are connected at all, but I need to find a way to solve both of them.
Thank you!
Larry