ele
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 Database Addon - CFDB7] textarea bug excel exportyes, if i upload the file to google drive its correctly. Thanks
@zhannak hello,
on the subject of the email is the bug.
I use the V: 2.13.21@infomesidees i use another plugin: WC Fields Factory
and i insert the customs field before of variablewhen the product have variations, is when the duplicate addons
https://www.francisdiamond.com/tienda/anillo-maldini-diamond/
yes, thanks ! ?? @ashinacowebs
- This reply was modified 4 years, 3 months ago by ele.
Forum: Plugins
In reply to: [PDF Invoices & Packing Slips for WooCommerce] pdf invoices a specific emailumm and how i can send a copy of email new order with the pdf invoices ? thanks
its work ! thanksss
i try this code:
<?php /* Plugin Name: WooCommerce PDF Invoices & Packing Slips Desactivar PDF Plugin URI: https://www.advancedcustomfields.com Description: Desactivamos el generador de Facturas en PDF para los productos que NO son de OAT Version: 1.0 Author: Luishgc93 Author URI: https://www.oatobservatorio.com */ add_filter( 'wpo_wcpdf_custom_attachment_condition', 'wpo_wcpdf_exclude_products', 100, 4 ); function wpo_wcpdf_exclude_products( $condition, $order, $status, $template_type ) { // only apply check on invoices if ($template_type != 'invoice') { return $condition; } // define product IDs which shouldn't get an invoice here $no_invoice_products = array( 1573, 2217 ); // loop through order items and cancel attachment if one of the products present $items = $order->get_items(); foreach ($items as $item_id => $item) { if (in_array($item->get_product_id(), $no_invoice_products)) { // matching product, don't attach invoice return false; } } // if we got here, there were no matching products return $condition; }
but on the order , on panel of control, the order is generated.
Forum: Plugins
In reply to: [WooCommerce] add onChange on select@conschneider resolved!
Forum: Plugins
In reply to: [WooCommerce] add onChange on select@conschneider thanks ! its works , but on my web dont work great with this javascript,
on checkout, region and pais are bugged.
- This reply was modified 4 years, 8 months ago by ele.
Forum: Plugins
In reply to: [WooCommerce] add onChange on select@conschneider hello, and thanks for help me.
I try insert onChange=”ponPaises(this.form)”
on select.If my code es:
<span class="select2-selection select2-selection--single" role="combobox" aria-haspopup="true" aria-expanded="false" tabindex="0" aria-labelledby="select2-region-container"><span class="select2-selection__rendered" id="select2-region-container" title="Europa"><span class="select2-selection__clear">×</span>Europa</span><span class="select2-selection__arrow" role="presentation"><b role="presentation"></b></span></span>
and i need add onChange=”ponPaises(this.form)” on this span. Because i use a javascript.
- This reply was modified 4 years, 8 months ago by ele.
yes, the token its work.
@cedcommerce thxx ! but i need send the mail when the order is completed ??
i said for emails of details new account
@cedcommerce let me see your code plss. My code is correct but dont work
- This reply was modified 5 years ago by ele.