Ido Friedlander
Forum Replies Created
-
Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] XML not showingGo to your Admin-panel
Settings => Autoptimize => Show advanced settings => JavaScript Options
Now add “dtree.js” to the “Exclude scripts from Autoptimize” fieldForum: Plugins
In reply to: [Mirror Zap for WooCommerce] עדכון לאלגוריתם של זאפ?Just released version 1.3.7
Enjoy.Forum: Plugins
In reply to: [Pelecard Gateway] iframe isnt showingAs I’ve explained to Pelecard support team, your website hosting company is the one to blame. Probably some sort of faulty config on their side.
Forum: Plugins
In reply to: [Pelecard Gateway] iframe isnt showingI’ll need admin access to further investigate the issue.
Forum: Plugins
In reply to: [Pelecard Gateway] iframe isnt showingWhat am I supposed to do with this fake URL?…
Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] איך מחברים בין התוסף לאתר של זאפI don’t know, you’ll have to ask them that.
Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] איך משנים את כתובת המוצר באתר המראה?In your case, try adding the following code-snippet to your theme’s functions.php file:
add_action( 'wc_zap_mirror_xml_node_326', function( $node ) { $node->PRODUCT_URL = home_url(); } );Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] הוספת שדה ל- xml זאפYou could add this filter (just to be on the safe side) and then remove it when new version comes-up.
Worst case? you’ll have the filter overwriting XML-properties with the same data.. Wouldn’t affect anything.. It’s not even considered to be A waste of resources.Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] הוספת שדה ל- xml זאפForum: Plugins
In reply to: [Mirror Zap for WooCommerce] עדכון לאלגוריתם של זאפ?Yeah, the change is basically just adding another field to the XML.
I’ll get around to it later this week probably, In the meanwhile you could use the following snippet in your theme’s functions.php file:add_action( 'wc_zap_mirror_xml_node', function( $node, $product ) { $node->PRODUCTCODE = $product->get_id(); }, 10, 2 );Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] English-Hebrew CompatibilityPM @ facebook dot com forward-slash id0fri
Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] כותרת מוגבלת ל40 תוויןTry adding the following action-hook to your theme’s functions.php file:
add_action( 'woocommerce_process_product_meta', function( $post_id ) { if ( isset( $_POST['_wc_zap_product_name'] ) ) { update_post_meta( $post_id, '_wc_zap_product_name', wc_clean( $_POST['_wc_zap_product_name'] ) ); } }, 15 );Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] English-Hebrew CompatibilitySorry for the delayed response.
Is this still relevant?Forum: Plugins
In reply to: [Pelecard Gateway] thank you page – redirectionRedirection to the thank-you page is WooCommerce default behavior.
Try WooCommerce Conversion Tracking.Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] סטאפ ראשוני@vltansky, your code is wasteful.
The filter-action is executed after the meta has already being fetched.
If you wanna make sure you’re not overwriting the existing values, use it like this:add_action( 'wc_zap_mirror_xml_node', function( &$node, $product ) { $node->PRODUCT_NAME = $node->PRODUCT_NAME ? $node->PRODUCT_NAME : $product->get_name(); $node->DETAILS = $node->DETAILS ? $node->DETAILS : $product->get_description(); $node->CATALOG_NUMBER = $node->CATALOG_NUMBER ? $node->CATALOG_NUMBER : $product->get_sku(); $node->PRICE = $node->PRICE ? $node->PRICE :$product->get_price(); }, 10, 2 );