Caleb Burks
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Tax Rounding IssueRounding calculations and display are two separate concepts. When you have it set to display 2 decimals places, while doing math it will be rounding all values to 4 decimal places at a minimum.
The
WC_ROUNDING_PRECISIONdefaults to 6, thus if you have it set to show 2 decimal places, it will actually round to 6 places when doing math in most places. You can make this value larger or smaller.Forum: Plugins
In reply to: [WooCommerce] Import products attributes issuesThe bug I mentioned has a patch in the master branch now (will be in WC 3.4).
The temporarily workaround should be to export/import all products though, not just variable ones. Does that work for you when you try that?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Shop Displays HomepageDo any shortcodes work? Try out some of the default WordPress ones: https://codex.wordpress.org/shortcode#Built-In_and_Additional_Shortcodes
[caption width="300"]<img src="https://s.w.org/images/home/screen-themes.png?3" /> Image Caption[/caption]This is quite odd. If that shortcode doesn’t parse when only the default WordPress theme is active and no other plugins, you should contact your web hosts.
Forum: Plugins
In reply to: [WooCommerce] Single Product Images Won’t ResizeThe images are 650: http://cld.wthms.co/iEBy1t. So the settings work. Your theme’s styling is the problem.
This CSS rule in particular is limiting the site: http://cld.wthms.co/EW6187. Like you said, it’s treating the page like there is a sidebar I think.
Try this as a temp fix, but you should contact the theme authors.
body.single-product #primary { width: 100%; float: none; }Forum: Plugins
In reply to: [WooCommerce] Problem whit product variable and custom themeThe Cookies console error is still there. It’s possibly not directly related to the variations issue, though I’m not ruling that out. Just saying you should leave the fixes in place regardless if you see change.
IF you can’t get the workarounds to resolve the javascript error, you will need to contact your web hosts and go with option 1 in the above guide.
Forum: Plugins
In reply to: [WooCommerce] Force register after Proceed To CheckoutGotcha. Well like I said, certainly possible – just going to need customization (especially for the grouping and discounts part anyway).
If you’re not sure how to accomplish this, I would recommend hiring a developer:
– http://jobs.wordpress.net/
– https://codeable.io/
– https://woocommerce.com/experts/Forum: Plugins
In reply to: [WooCommerce] Product page and private pageThere are lots of plugins that will restrict pages based on the user’s role. Groups plugin above has a “Registered” group that should do the trick.
Forum: Plugins
In reply to: [WooCommerce] Custom script doesn’t work in adminRight, so that’s the second thing I mentioned above.
Your script runs when the page is first loaded (or when the script is first loaded rather). Variations are loaded later, after your script has already turned things colors. JavaScript isn’t like CSS. Speaking of, might want to try CSS: https://stackoverflow.com/questions/8619406/css-selected-pseudo-class-similar-to-checked-but-for-select-elements
For the JavaScript approach, you need to watch for changes in the variations area and re-apply your changes, or search for what action WC uses to switch out variations and run after that.
Forum: Plugins
In reply to: [WooCommerce] Size of Single product image in woocommerceRight, you should not edit the theme directly. Use a child theme https://codex.wordpress.org/Child_Themes
Forum: Plugins
In reply to: [WooCommerce] Cant Integrate paypal to my woocommerceHard to say by just looking at one settings screen. Turn on debug logging, then take a look at the PayPal error logs at WC > Status > Logs.
Forum: Plugins
In reply to: [WooCommerce] Separate the Variation with Product name in Email templateIf attributes aren’t shown in the title, they should be shown underneath the product. See the uses of
wc_is_attribute_in_product_name(): https://github.com/woocommerce/woocommerce/blob/c38e0e69e9c72935f1c2507d629368d67e4154f9/includes/wc-template-functions.php#L2961May just need to clear cache after the change.
Forum: Plugins
In reply to: [WooCommerce] Showing percentage discounted under priceI’m not seeing that on a variable product w/ sale prices on my test site, so there is quite possibly something intefering on your site (like another plugin or the theme).
That said, I don’t see an extra sale price on the variable product – it just shows a range instead. So this enhancement may need extra work for variable products.
If you can’t quite figure out what code you need and this is a must-have change, I would recommend hiring a developer:
– http://jobs.wordpress.net/
– https://codeable.io/
– https://woocommerce.com/experts/- This reply was modified 8 years, 1 month ago by Caleb Burks.
Forum: Plugins
In reply to: [WooCommerce] Endpoints reloading the pageCould you paste the system status report for the troublesome site here?
Forum: Plugins
In reply to: [WooCommerce] Link to separate page for full WooCommerce registrationThat will require some customization. Adding fields is a bit easy, but making them relate to the main address / account fields will take more work.
Why not just let them sign up first though, then add address information if they want from the My Account area after?
Forum: Plugins
In reply to: [WooCommerce] PyaPal Standard problem after WooCommerce 3.3.3 updateThanks for reporting back, and nice digging 🙂
I’ve opened up a new issue so we can discuss this. Going to go ahead and close out this post, as all conversation can continue in the issue.
https://github.com/woocommerce/woocommerce/issues/19404
- This reply was modified 8 years, 1 month ago by Caleb Burks.