IgniteWoo Team
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Check Out Page Terms & Conditions LinkNo – wrong file. And I gave the wrong path last time. Ooops. Here’s the correct path:
wp-content/plugins/woocommerce/templates/checkout/review-order.php
copy to
wp-content/themes/twentyeleven/woocommerce/checkout/review-order.php
then edit.
Forum: Plugins
In reply to: [WooCommerce] Hiding the yellow product count markJust add some CSS to the theme stylesheet to hide them. Post a URL and I will look at it and give you the CSS code
Forum: Plugins
In reply to: [WooCommerce] Cart doens't clear after paymentYou need v2.0 of the gateway ??
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Check Out Page Terms & Conditions Linkcopy wp-content/woocommerce/templates/checkout/review-order.php
to
wp-content/themes/twentyeleven/woocommerce/checkout/review-order.php
then edit the file, otherwise you’ll loose any edits you make to the plugin itself when you upgrade.
Forum: Plugins
In reply to: [WooCommerce] Cart doens't clear after paymentSounds like a payment gateway plugin problem to me. It is usually the payment plugin that handles updating the order status based on payment status.
As for emptying the cart, that can happen via WooCommerce itself during processing of checkout – or possibly via the payment plugin depending on whether the developer of the plugin decided to add code for that.
I’d say get the payment processing working first so that orders get the proper status after payment, and see if other related issues disappear on their own.
Note that if you’re testing on “localhost” and your payment processor sends a “post back” or payment notification to the site after payment is made then it won’t work for testing purposes because your “localhost” system is not accessible over the Internet by the name “localhost” ( e.g. localhost always resolves to 127.0.0.1, which is not a routable address thus no traffic destined for that address ever leaves the local system ).
Forum: Plugins
In reply to: [WooCommerce] WP-Piwik compatibility – methods callsLook in woocommerce-hooks.php and woocommerce-functions.php for “piwik” and you will find what you need to know.
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Check Out Page Terms & Conditions LinkThe code looks like this:
<label for="terms" class="checkbox"><?php _e( 'I have read and accept the', 'woocommerce' ); ?> <a href="<?php echo esc_url( get_permalink(woocommerce_get_page_id('terms')) ); ?>" target="_blank"> <?php _e( 'terms & conditions', 'woocommerce' ); ?> </a></label>
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Check Out Page Terms & Conditions LinkYour theme might have its own Woocommerce templates. If it does they’ll be in a subdirectory called “woocommerce”. Look in there for a checkout subdirectory. Then find the file I mentioned and edit it. There’s an “A” tag in it for terms and conditions. Add this:
target=”_blank”
If your theme doesn’t have WooCommerce templates then you will have to copy them from the plugin directory. I can’t explain all of this step by step, and you do need to know a little HTML to get it done.
Here’s a place to start:
Forum: Plugins
In reply to: [WooCommerce] Change Cart text to Basket sitewideEasiest way is to use a language translation file where “cart” is changed to “basket”.
https://docs.woothemes.com/document/woocommerce-localization/
Forum: Plugins
In reply to: [WooCommerce] Variable products not workingYou might be missing some Javascript, or have the wrong IDs or class names in your HTML. The expected divs are in the page, but they’re hidden as they should be until a variation is selected. But, when a variation IS selected the divs don’t unhide.
The class name of the hidden div us “single_variation_wrap”
Forum: Plugins
In reply to: [WooCommerce] could you make something like this using woocommerce ?I know there’s one out there somewhere because I’ve seen it. Just can’t remember the name of it or where it’s at.
Maybe this thread will help:
Forum: Plugins
In reply to: [WooCommerce] WooCommerce Check Out Page Terms & Conditions LinkWooCommerce 2.x already has this “open in a tab” feature in the plugin templates, but maybe your template doesn’t? The link code is in the checkout/review-order.php template.
Forum: Plugins
In reply to: [WooCommerce] Is it possible to funnel % of payment to multiple accountsGoogle is often more useful than posting and waiting ??
Forum: Plugins
In reply to: [WooCommerce] Is it possible to funnel % of payment to multiple accountsUnless you want to completely modify the checkout process to be cumbersome, or do backend processing after a sale to facilitate sending money to someone else ( ala affiliate program style ), then it cannot be done at the point of sale in real time with any degree of accuracy because many factors have to be taken into consideration – like refunds, transaction reversals, fraudulent payments, etc etc etc.
On the other hand, if you’re Ok with the potential risks, and/or delaying percentage payments to a 3rd party, then just get an affiliate plugin that works with WooCommerce and tweak it a little bit and you’re good to go.
Forum: Plugins
In reply to: [WooCommerce] Is it possible to funnel % of payment to multiple accountsCalm down. I originally wrote “Again, it depends on the payment gateway in use” — and as you can see based on my explanation above, this is absolutely true. I did not say it can’t be done at all …