Thomas Shellberg
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] How to add border on checkout table format?.woocommerce-checkout-review-order-table { border: 1px solid black; }Result:
This goes over how to use the
border:shorthand:https://developer.mozilla.org/en-US/docs/Web/CSS/border
You can add the CSS by going to Appearance->Customize->Additional CSS.
Forum: Plugins
In reply to: [WooCommerce] woocommerce mails going through actions?Hey @optimizingmatters – I’m pretty sure that email sending is not hooked into
template_redirectas that hook is for overriding the template that WordPress would normally choose to display something. The hook would be useful for displaying a custom archive page or a password reset form or something.The simplest test would be to add the following snippet:
add_action('template_redirect', 'custom_logging_woo'); function custom_logging_woo () { //add debug logging here }Then, use
tail -f debug.logto watch the log output and test by changing the order status in the backend which triggers emails.Forum: Plugins
In reply to: [WooCommerce] I have 2 Issues on my Woo site@rudyman43fl – as @seank123 mentioned, the site admin should automatically receive ‘New Order’ email notifications. If you’re not receiving them, make sure that they’re enabled on the WooCommerce->Settings->Emails page and check your SPAM/Junk mail folders.
They were also spot-on with the shipping setup, thanks for that @seank123!
Forum: Plugins
In reply to: [WooCommerce] Creating products during order process@josephgreen – it would be best to just spend the time to import your products, this can be done via a CSV import.
https://docs.woocommerce.com/document/product-csv-importer-exporter/
As @seank123 suggested, since you seem to use an in-store purchase process, using a POS system might be a good idea. For instance, you could add products using the Square App and have them synced to your WooCommerce store.
This sounds like it could be a hefty customization, but you might start by looking at the WC_Download_Handler class as you could specify the filepath from there. For instance, the
download()method has filters for modifying the path:
woocommerce_file_download_filename.https://docs.woocommerce.com/wc-apidocs/source-class-WC_Download_Handler.html#161
- This reply was modified 7 years, 10 months ago by Thomas Shellberg.
Forum: Plugins
In reply to: [WooCommerce] Structured data incorrect errors@janneke8incosi – any new information on this? We usually close forum posts after 7 days with no updates.
Forum: Plugins
In reply to: [WooCommerce] Alterar campo meta na pΓ‘gina de pedido no admin@felipe152 – what about using the transition hooks since you want to check them conditionally anyways?
For instance,
woocommerce_order_status_pending_to_processingfires when the order goes from Pending Payment to Processing. The hook can do the conditional checking for you.http://hookr.io/actions/woocommerce_order_status_pending_to_processing/
The hook doesn’t directly have the $order object but it can be found. This could be within your custom hooked function:
global $post; $order = new WC_Order( $post->ID ); $order_id = $order->get_order_number();- This reply was modified 7 years, 10 months ago by Thomas Shellberg.
Forum: Plugins
In reply to: [WooCommerce] How Link to Woocommerce Product Page by id@carbar – maybe I misunderstood? Is this external image gallery still on your WordPress site with WooCommerce installed? And you need to create a link to products based on the post ID? If so, the solution from here should help:
Forum: Plugins
In reply to: [WooCommerce] Integrate other payment options@sig06 – do you ultimately just need to route the transaction to a different First Data merchant account? If so, perhaps you could just dynamically change the recipient merchant account using a filter. The premium First Data plugin has a filter for overriding the request arguments:
wc_first_data_global_gateway_request_dataForum: Plugins
In reply to: [WooCommerce] Customer triggers Woocommerce order statusMaybe the
$base_urlvariable is not properly set up, perhaps it’s hard-coded or something. Is it dynamically set using something likeget_site_url?Forum: Plugins
In reply to: [WooCommerce] How to change breadcrumb second array?@princebhalani143 – I’m confused as to how your “attributes” are being displayed within the Breadcrumbs as they’re not part of the Breadcrumbs output by default. Are you using any kind of customizations for the Breadcrumbs or a plugin that modifies its behavior? If you’re not testing this with the default Storefront theme, please also test with it.
How exactly did you create this page? It doesn’t seem to be part of the standard Shop hierarchy, is it a custom page using a shortcode or something?
https://www.powderlife.com/find/collections/entertain-in-style/Forum: Plugins
In reply to: [WooCommerce] Pinterest Buyable PinsHey @natlia – this isn’t yet possible(although it might be possible with a third-party integration or through a customization). Please vote for this on our Ideas board to help our developers prioritize enhancements to WooCommerce.
Forum: Plugins
In reply to: [WooCommerce] Customer triggers Woocommerce order statusDuplicate of https://wordpress.org/support/topic/customer-triggers-woocommerce-order-status/
Closing.
Forum: Plugins
In reply to: [WooCommerce] Customer triggers Woocommerce order status@socialant – what is the output from that template on the site that isn’t working? What exactly is the generated link?
Forum: Plugins
In reply to: [WooCommerce] Woocommerce Proceed to Checkout has disappeared from cart.@timbamerchant – this definitely looks like a problem with your theme’s Cart template override. Hopefully, the theme developer can update the theme, allowing you to simply push the update button and resolve this. π