awpulley
Forum Replies Created
-
Update: I reverted to 2.3.6 again and cleared caches brutally. Got a test transaction to go through. I’ll be keeping the live site on that version for now.
Installed your update. Looks like my problem’s fixed! Thanks.
We have reproduced it with several people/workstations on my end.
When you follow the link, you should be at a WooCommerce category page entitled “Research Products”. Note there are two “Baffle Hood Filters” products listed on the page.
Hover over the image for either of them, and you will see the link displayed in the bottom-left of the browser (in Chrome). Click on these images, and they will work properly with no 404s.
Go back to the “Research Products” category page. Now find the same two products and hover over the “Select options” buttons below their images. The links displayed will be the same as for their images, except with the parameter “&quantity=2” added at the end. Click these buttons, and you will get a 404.
Please try this and see what you find. Again, I can toggle this error on and off by enabling and disabling the min/max quantities for the product.
Forum: Plugins
In reply to: [Simple Custom Post Order] Interferes with default WooCommerce sortIt was not checked. I tried checking it, and I also checked Categories, Tags, Product categories, and Product tags. I then saved and tested, but it did not fix the issue.
Forum: Plugins
In reply to: [Google Analytics for WooCommerce] 1.4.13 breaks credit card entry1.4.14 just came out and seems to fix this issue.
Forum: Reviews
In reply to: [Advanced Product Labels for WooCommerce] Custom CSS gives it some power“The free version of this plugin seems limited in capacity” – it only seems able to make circles, rectangles, and rounded rectangles, all horizontal, unless you use custom CSS. I will edit the review for clarity.
::before and ::after – Using the <span> element as a test case, I was easily able to add a class of “test” in your plugin settings. I then tried adding the following to the <span>’s custom CSS field in your plugin settings:
.test::after {
height: 30px;
width: 30px;
background: red;
display: block;
}I then cleared my cache and refreshed my page front-end (in Chrome), and as I suspected, it tried to put that code inside the span’s existing selector, and it did not work:
.br_alabel.berocket_alabel_id_83352 > span {
.test: :after {;
height: 30px;
width: 30px;
background: red;
display: block;
}: ;
}I tried the following selectors in the <span>’s custom CSS field, and none worked:
.test::after
test::after
::after
:afterI can probably use my child theme’s style.css to do it, using the selector
.br_alabel.berocket_alabel_id_83352 > span::after
That’s not a real problem, but it does look like this can’t be done in your plugin’s settings like you describe.Forum: Plugins
In reply to: [WP WooCommerce Mailchimp] MailChimp doesn’t see we’re connectedHm. I’m new to MailChimp, but I thought the WP.org page for your free plugin said it could let MailChimp see when a customer placed an order. Can you please clarify what the free version can and cannot do?
Forum: Plugins
In reply to: [Simple Minimum and Maximum Quantity Limit for WooCommerce] Double buttonsJust tested the 2.0.5 update, and all appears to be well!
Forum: Plugins
In reply to: [Simple Minimum and Maximum Quantity Limit for WooCommerce] Double buttonsI’m chiming in a bit late, but if you need to roll back a theme or plugin version in the future, I used WP Rollback to do this:
https://ww.wp.xz.cn/plugins/wp-rollback/I keep this plugin deactivated on my site, standing by just in case.
Ah. I just tried that. It breaks in different ways.
Using the DataTables FixedHeader Extension, everything works fine on desktop. But on mobile, the header does not scroll with the contents and can extend past the ends of the table.
Using the DataTables JS library, columns align but there is a large space between the table and the scrollbar. This seems to be bacause the table is constrained to a fixed width, but when I remove it in Firefox Element Inspector, the columns no longer reliably align. And on mobile, the header cells cease to align with the columns and still do not scroll with them.
For now, I intend to use the extension while looking for a better solution.
I’ve been able to accomplish that with just a CSS statement setting the table height. But I was hoping to keep the header visible, which that does not accomplish. Thank you for your response, though.