leadfoot1981
Forum Replies Created
-
Forum: Plugins
In reply to: [WHMCS Bridge] Affiliates blockchain.info gateway don't workHad to downgrade to 3.3.1 to solve these issues. BTW, thanks for great support and I really feel like buying a PRO version with a support like this 😉
Forum: Plugins
In reply to: [Conditional WooCommerce Checkout Field] Only being able to create 1 fieldI needed to attach the extra field to several PIDs so here’s a dirty fix:
Open conditional-woo-checkout.php and add the following:
foreach ( $woocommerce->cart->get_cart() as $cart_item_key => $values ) { $items = array(1186,1511,1512,1513,1514); if(in_array($values['product_id'],$items)){ /* $_product = $values['data']; if ( $_product->id == $product_id ) { */ $check_in_cart = true; } } return $check_in_cart;replace the PIDs in an array with your own.
Forum: Plugins
In reply to: [Conditional WooCommerce Checkout Field] Required field not turning off /The fix still isn’t working for me 🙁
Forum: Plugins
In reply to: [Bitcoin Payments for WooCommerce] HTML code on order pageOk, as it seems the support here doesn’t exist so I’ll be happy to share my solution. Go to plugin settings> Payment Instructions (HTML). In my case the html code was garbled inside the window so I had to copy and paste the original code from Payment Instructions, original template (for reference). Worked like a charm.
Forum: Plugins
In reply to: [Checkout Field Manager (Checkout Manager) for WooCommerce] Fields orderHi, thanks for this cool little plugin.
Unfortunately, I can’t find where exactly in plugin settings I can re-arrange checkout fields. Quote: “You can now re-order the fields in the options panel.” Can’t see the options panel anywhere, sorry 🙂
Sorry for hijacking this old thread.
BR,
Paul