D Smith a11n
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Move “Add to cart” buttonHi Jordan!
It looks like it’s already in line with the product name– good work!
To align it right, I’d change this
ul.products li.product .button { padding: 2px 10px; }
in your theme’s custom CSS to
ul.products li.product .button { padding: 2px 10px; float: right; }
and maybe add some padding, depending how you want it laid out.
Forum: Plugins
In reply to: [WooCommerce] Custom product attributes (like brands)Hello!
The always-amazing Remi Corson has a superb post that explain how to add custom attributes to products within WooCommerce:
https://www.remicorson.com/mastering-woocommerce-products-custom-fields/
If you did want to add custom product fields to variable products, he explains that here: https://www.remicorson.com/woocommerce-custom-fields-for-variations/
WooCommerce itself provides some code snippets that allow you to filter products by custom attributes.
Hope this helps!
Forum: Plugins
In reply to: [WooCommerce] Allow x-framing of secure checkout page in WoocommerceHave you tried modifying your .htaccess file?
https://stackoverflow.com/questions/17092154/x-frame-options-on-apache
Also note that ALLOW-FROM isn’t supported by all browsers…
Forum: Plugins
In reply to: [WooCommerce] Product Revisions?Hey there!
It’s a cool idea– lots of people on the Woo Ideas board here think so too: https://github.com/woocommerce/woocommerce/issues/2178
Unfortunately, the revisions for posts built into WordPress don’t cover most of the categories of data associated with a WooCommerce product, so the standard “post revisions” wouldn’t be much use.
Forum: Plugins
In reply to: [WooCommerce] Allow customer to add UPS/FedEx account info at checkout?Hey there!
My understanding of these mailing services is that the rates and charges are attached to the shipper, not the receiver. I’ve searched through a bunch of UPS & FedEx plugins, and that seems to be the case with all of them: the account used to ship must be the account associated with the origin of the package, not its destination.
Forum: Plugins
In reply to: [WooCommerce] Plain html in order mailsHey there!
Does this only happen while Fooevents is installed and activated? If so, it might be worth checking with their support!
Forum: Plugins
In reply to: [WooCommerce] im getting dizzy of that checkout page spinnerSounds like an AJAX or PHP issue… have you tried disabling other plugins and making sure your version of PHP is up to date?
Hey there!
https://demo.aetasfn.co.za/ isn’t reachable for me… can you add a password or make it so we can take a look? This is definitely an interesting problem.
Forum: Plugins
In reply to: [WooCommerce] Checkout AJAX returns full pageHi Patryk!
What version of PHP is your site running on? If it’s an outdated one, I recommend asking your host about updating to a current version; that will often correct issues of this nature.
Can you post a System Status Report in here for diagnostic purposes?
Forum: Plugins
In reply to: [WooCommerce] Wocoomerce Layerd Nav ERROR (product filter)Hey bud!
Are you using the Ajax Layered Navigation plugin? If so, you can get support directly from WooCommerce via their ticket system.
If you’re using the built-in WooCommerce Layered Nav, have you tried resetting your permalinks? You can do this by going to Admin page > Settings > Permalinks, and clicking “Save changes” twice.
Forum: Plugins
In reply to: [WooCommerce] Categories & Subcategories Taxonomy DisplayHey rebelfire!
If you are down to purchase an extension, WooCommerce Nested Category Layout is a fairly deluxe implementation of what I think you’re asking for.
On the free/DIY side of things, this code example might be useful!
Forum: Plugins
In reply to: [WooCommerce] The plugin at the time of deliveryHey djforce!
This may not be a simple as I’m making it, but for each Shipping Zone you could create multiple instances of Flat Rate shipping method… one titled “delivery 8am-10pm” at one price and another at “10pm-8am” at a different price.
Does that work?
Forum: Plugins
In reply to: [WooCommerce] Display Product when inventory is zerohey John!
This sounds like a good feature to suggest at Woo Ideas.
In the meantime, there are workarounds depending how and where you want to display those products. For instance, you could create a new category, “Show When Out of Stock,” add certain items to it, use this code, add a category filter to it, then run it on whatever page you wanted those to show up.
Forum: Plugins
In reply to: [WooCommerce] Thumbnails display in a non-linear “fashion” :)Fascinating!
Are you using any other plugins (for instance, one that creates ‘columns’) that might be interfering? Does disabling other plugins solve the issue?
If not, do you mind providing a link to the page so I can look at the code the shortcode’s generating?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce – Use product as homepageHello!
You can create a page that has just that product on it (just put the shortcode
[product_page id="WHATEVER THE PRODUCT ID IS" sku="ITS SKU"]
on a page)then go to your WordPress install’s Settings -> Reading and under “Front page displays” select “A Static Page” and select that page you created.
- This reply was modified 8 years ago by D Smith a11n.