abyssaquatics
Forum Replies Created
-
Hi Ewout,
Yes to clarify, some of the orders auto generate the the invoice number and these are auto printing through WooCommerce Print Orders, but the majority are not.
Here is how orders are coming in (pic on link). The top is a new order and the bottom one is after I have pressed on the PDF button in the actions section.
https://shop.abyssaquatics.co.uk/images/invoice_number.png
Kind regards.
Lee.
Hi Ewout,
I have tried enabling and disabling this option but no change. I have also checked the php error log and the only entry in it is from 1 Dec 2017 which we knew about and was linked to cpanel.
Since the last message, we have had orders in and again the invoice number is missing until clicking the PDF button on the admin screen.
Is there a way to give you access to our site so you can look at the files and the settings first hand?
Kind regards.
Lee.
Hi Ewout,
The emails that should have attachments are New order (Admin email), Processing order and
Completed order. All the emails are being sent ok, I use WP Mail Log to keep a track of this.I have just checked the emails and some of the New order (Admin email) do not have the invoice attached. These seem to match the ones that did not generate the number.
We use the latest version 2.1.10 and updated from 2.1.09. I generally update as soon as one is available.
Kind regards.
Lee.
Forum: Plugins
In reply to: [WooCommerce] Stock stays ‘In Stock’ when 0 quantity.Marked as resolved.
Forum: Plugins
In reply to: [WooCommerce] Stock stays ‘In Stock’ when 0 quantity.I have managed to fix it!
From what you said it hinted me to look at the integration that was done for us and this was only setting the ‘_stock’ not the ‘_stock_status’. I corrected it and right away the out of stock items were removed from the shop.
Thank you for the hint ??
Regards.
Lee.
Forum: Plugins
In reply to: [WooCommerce] Stock stays ‘In Stock’ when 0 quantity.Hi Mike,
We have always had the following settings set.Low stock threshold = 2
Out of stock threshold = 0
Hide out of stock items from the catalog = YesAll our products are simple products and the levels update from our epos system which also pulls orders from the site.
Here is a snapshot of what’s now happening.
Thank you in advance for your help on this.
Regards.
Lee.
Forum: Plugins
In reply to: [WooCommerce] Wrong shipping on basket totals pageADDITION:
I have managed to figure this out. some of the rules needed tweaking.
Thank you.
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Hide empty brandsHello,
Thank you for the reply. I have changed this but it does not seem to do anything, I have managed to (i think) solve it however and also implement it into the settings admin tab in PWB. Please feel free to use my addition (below) to your plugin if you like, it is the least I could do to say thank you for this plugin!
I’m not a great coder so please alter if it is wrong, but it seems to work.
Regards
Lee.
In file
wp-content/plugins/perfect-woocommerce-brands/classes/class-perfect-woocommerce-brands.php
changepublic static function get_brands()
from line 713 topublic static function get_brands(){ $result = array(); $hide_empty_brands = get_option('wc_pwb_admin_tab_hide_empty_brands'); if( $hide_empty_brands !== 'no'){ $brands = get_terms('pwb-brand',array( 'hide_empty' => true ));} else { $brands = get_terms('pwb-brand',array( 'hide_empty' => false )); } if(is_array($brands) && count($brands)>0){ $result = $brands; } return $result; }
In file
wp-content/plugins/perfect-woocommerce-brands/classes/class-pwb-admin-tab.php
add'hide_empty_brands' => array( 'name' => __( 'Hide empty brands', 'perfect-woocommerce-brands' ), 'type' => 'checkbox', 'default' => 'yes', 'desc' => __( 'Hide empty brands if they contain no products', 'perfect-woocommerce-brands' ), 'id' => 'wc_pwb_admin_tab_hide_empty_brands' ),
at line 124 before
section_end
- This reply was modified 8 years ago by abyssaquatics.
Forum: Plugins
In reply to: [Perfect Brands for WooCommerce] Brands Description paragraph breaksHi, I have solved this as it is something that I needed to add into my site.
Go to the file /wp/wp-content/plugins/perfect-woocommerce-brands/classes/class-perfect-woocommerce-brands.php
On line 163 in the ‘public function show_brand_description()’ section change
echo $queried_object->description;
toecho nl2br($queried_object->description);
Hope this helps.
Lee.
- This reply was modified 8 years, 1 month ago by abyssaquatics.
Forum: Plugins
In reply to: [Advanced Woo Search] Getting 404 when pressing enter.Thank you. Works great!
Forum: Plugins
In reply to: [Advanced Woo Search] Getting 404 when pressing enter.to add:
this is the link that is generated from pressing enter
https://shop.abyssaquatics.co.uk/wp/?s=jbl&post_type=product
if this is shortened to
https://shop.abyssaquatics.co.uk/?s=jbl&post_type=product
this works.
Hope this helps.