adryyy
Forum Replies Created
-
After 3.0.1 it’s seems to be fixed.
You should see at last the title of product if you use Tag Assistant Legacy (by Google) extension.
@jpdavy1 You can download older version at the bottom of Advanced View of each plugin.
https://www.ads-software.com/plugins/enhanced-e-commerce-for-woocommerce-store/advanced/For the first one, yes, it’s annoying, also happens when edit general settings. A method to bypass this is to delete
disabled="disabled"
from button HTML in the inspector.I found saving bugs also, but you can bypass them by let the default attributes untouched when you create a new feed, or use standard field mapping, not custom ones.
- This reply was modified 6 years, 7 months ago by adryyy.
Okey, fixed it by implementing two methods from WC_CSV_Exporter
Would be nice to see this implemented in an official update. Also ability to disable Home >, as i think you can put it easy as a prefix, in admin menu.
Results look like this
<category>Accesorii generale > Acumulatori</category>
<category>Sisteme de supraveghere video > Pachete complete de supraveghere video</category>Which is what i need :).
Found the problem. Many of my products doesn’t have meta key _yoast_wpseo_primary_product_cat completed, and this block your plugin from create a category path.
It’s pretty hard to complete Yoast meta key, as they don’t offer a good solution for bulk complete.
Would be nice to add an option to use category path generated by Woocommerce (ex. when export products in Woocommerce, you get something like this Sisteme de alarm? antiefrac?ie > Detectoare > Detectoare de mi?care), as it’s good.
Also, please make a bit more clear in specify you use Yoast to determine the category. Put a parenthesis at category option, at mapping, to make things clear for users :)./** * Add checkbox field to the checkout **/ add_action('woocommerce_checkout_after_terms_and_conditions', 'my_custom_checkout_field'); function my_custom_checkout_field() { ?> <div id="field-publicitate"> <p class="form-row input-checkbox" id="check_publicitate_field" data-priority=""> <span class="woocommerce-input-wrapper"><label class="checkbox "> <input type="checkbox" class="woocommerce-form__input woocommerce-form__input-checkbox input-checkbox" name="check_publicitate" id="check_publicitate" value="1"> Doresc s? primesc mesaje publicitare ?i de marketing.</label> </span> </p> </div> <?php } /** * Update the order meta with field value **/ add_action('woocommerce_checkout_update_order_meta', 'my_custom_checkout_field_update_order_meta'); function my_custom_checkout_field_update_order_meta( $order_id ) { if ($_POST['check_publicitate']){ $subs_email = esc_attr($_POST['billing_email']); $subs_name = esc_attr($_POST['billing_last_name']); $form['es_email_name'] = $subs_name; $form['es_email_mail'] = $subs_email; $form['es_email_group'] = "Subs"; $form['es_email_status'] = "Confirmed"; $form['es_nonce'] = wp_create_nonce( 'es-subscribe' ); $action = es_cls_dbquery::es_view_subscriber_ins($form, "insert"); } }
Use this in functions.php
Forum: Plugins
In reply to: [WPC Product Bundles for WooCommerce] Bundles on single product pageYes, that’s great :).