Alex Musial
Forum Replies Created
-
is there another hook or a way i can trigger a function upon make primary?
Do you know if Make Primary will call the Hook: woocommerce_after_save_address_validation.
ok, it started working after renaming function, appreciate your time.
Hi Matt,
I have added the field with the following:
add_filter( ‘woocommerce_shipping_fields’, ‘misha_add_shipping_field’ );
function misha_add_shipping_field( $fields ) {
$fields[‘shipping_address_nickname_identifier’] = array(
‘label’ => ‘shipping_address_nickname_identifier’,
‘required’ => false,
‘class’ => array( ‘form-row-wide’, ‘my-custom-class’ ),
‘priority’ => -2,
‘placeholder’ => ‘shipping identifier’,
);return $fields;
}
Forum: Plugins
In reply to: [WooCommerce Address Book] how to identify the shipping addressI was able to get it off the ?address-book=shipping2
thnx
Forum: Plugins
In reply to: [Side Cart Woocommerce | Woocommerce Cart] Side cart auto openIs there a way to turn it off, without using ajax?
Forum: Plugins
In reply to: [Quotes for WooCommerce] Double Header and Double Footer – Send Quote emailHi Pinal,
I have done testing with this in all scenario’s, and this is working.
I changed
new WC_Emails();
toWC_Emails::instance();
wp-content/plugins/quotes-for-woocommerce/includes/class-email-manager.php : Line 41
wp-content/plugins/quotes-for-woocommerce/quotes-woocommerce.php : Line 601
Thanks,
Forum: Plugins
In reply to: [Quotes for WooCommerce] Attach file to emailHi Pinal,
can you tell me what is the wc order object i need to use?
Forum: Plugins
In reply to: [Quotes for WooCommerce] Double Header and Double Footer – Send Quote email@pinalshah I noticed in your screencast, you do not have a header image and footer text.
You would need to set the header image, and footer text under the “Email template” heading.
Woocommerce->Settings->Emails {scroll to the bottom}
Forum: Plugins
In reply to: [Quotes for WooCommerce] Double Header and Double Footer – Send Quote email@pinalshah The emails are fine for products that are not enabled for quotes.
I think i have found the issue.
In /quotes-for-woocommerce/quotes-woocommerce.php
line 601:
new WC_Emails();I commented that out, and when I send quote, the header/footer are no longer duplicated.
Same for the initial email:
/quotes-for-woocommerce/includes/class-email-manager.php
line 41
new WC_Emails();This solved the issue of having the emails with double header/footer.
Forum: Plugins
In reply to: [WooCommerce] Settings – TAX – Tax Options – Cannot Save 301 redirectwhen i add this to .htaccess i could save again.
<IfModule mod_security.c>
SecFilterEngine Off
#SecFilterScanPOST Off <
</IfModule>HI @richardgabriel,
This happened after using it for some time already (more than 6months)
THanks,
AlexForum: Plugins
In reply to: [Quotes for WooCommerce] Double Header and Double Footer – Send Quote email@pinalshah it also seems to be on NEW ORDERS as well.
- This reply was modified 5 years, 4 months ago by Alex Musial.
Forum: Plugins
In reply to: [Quotes for WooCommerce] Double Header and Double Footer – Send Quote email@klloyd86 I have not.
@pinalshah The theme i am using is Fametheme Onepress. WC Version 3.7.1 WP Version: 5.2.4
Quotes for WooCommerce: Version 1.6.2
Thanks,
Alex
- This reply was modified 5 years, 4 months ago by Alex Musial.
Forum: Plugins
In reply to: [Quotes for WooCommerce] Customer contact details on quote emailYou can modify the template, but ultimately your sales team needs access. They would need access to finalize the quote anyway. Get a role plugin to limit their access to quotes and sales.