Ido Friedlander
Forum Replies Created
-
Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] BUGHi,
Do you have any technical reference indicating that the limit is 40 and not 30 chars?
I used to follow these instructions: http://img.zap.co.il/PDFs/ZapTechnicalRequirements.pdfBTW, since version 1.3 you could easily bypass these saved-settings using filter-hooks.
Regards,
Ido- This reply was modified 8 years, 8 months ago by Ido Friedlander.
Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] בעיה עדין עם זאפAlternatively, upgrade to version 1.3.5 and then clear cache.
Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] בעיה עדין עם זאפSimply prevent the mirror-site from being cached by excluding it:
From the admin-panel: Settings => Advanced => Accepted Filenames & Rejected URIs
https://snag.gy/bayvVH.jpgForum: Plugins
In reply to: [Mirror Zap for WooCommerce] בעיה עדין עם זאפAs I said, The XML is valid.
If Zap is having trouble reading it because of it’s misleading headers – You’ll have to fix it on your website/server.
@pm me.Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] בעיה עדין עם זאפThe Document is A valid XML.
The problem is that your web-server is serving these documents with HTML instead of XML headers like it should.Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] עדיין יש בעיהThanks for the bug report.
Upgrade to version 1.3.4 and see if it solves the problem.
Please keep me posted.Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] עדיין יש בעיהWhats the link for the mirror-site?
Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] errorThat’s not the problem at all actually.
Please update to latest version (1.3.3).
Thanks for the bug report.Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] בעיה בגרסה 1.3.0 ומעלהThe objective of this filter-hook is to process the XML on-the-fly while bypassing the manageable custom-fields.
This way, duplicated values are prevented from being saved into the database.Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] בעיה בגרסה 1.3.0 ומעלהThere’s A general issue with your website caused by your theme and/or plugins.
Please notice first 3 empty lines at the beginning of document:
http://prntscr.com/h7f96d
That’s what causing the XML to malfunction.Secondly, use this filter-hook to automate data-fetching for your store products:
https://gist.github.com/1do/d68c8163720aa8df2892f0b9a31285a9Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] XML והתחלת עבודהPlease upgrade.
Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] new version NOT workingCould you please provide me with a link to the questioned mirror-site?
Found the problem, and theres the fix:
https://gist.github.com/1do/a884e936acaa2129b372da9f705ef015
Just add the following piece of code to your themes functions.php file.Forum: Plugins
In reply to: [Pelecard Gateway] manually token insertion into admin1) And which token is that? Tokens are meant to be private and not manageable by admins.
There’s always A way, But I’m not sure if the feature you’re asking-for is universal enough to be included in the plugin.
2) Settings are shared throughout the payment forms, but you could easily override them on the ‘add payment method’ page. Please use this snippet on your theme’s functions.php file:add_filter( 'wc_pelecard_gateway_my_account_iframe_args', function( $args ) { $args['CardHolderName'] = $args['CustomerIdField'] = 'hide'; return $args; } );* Not sure it’ll work though, CC companies usually require this field for extra security.
Forum: Plugins
In reply to: [Pelecard Gateway] Tokenization using Pelecard pluginYou could use this filter to force token creation upon successful transaction:
add_filter( 'wc_pelecard_gateway_iframe_args', function( $args ) { if ( is_user_logged_in() ) { $args['CreateToken'] = true; } return $args; } );