Ido Friedlander
Forum Replies Created
-
Forum: Plugins
In reply to: [Pelecard Gateway] גוגל אנליטיקסForum: Plugins
In reply to: [Pelecard Gateway] גוגל אנליטיקסHow could the traffic-source be Pelecard? the payment-form is iframe-based.
Could you provide more details or demonstrate the situation?Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] גרסה 3 של ווקומרסSoon…
Forum: Plugins
In reply to: [Pelecard Gateway] can it be matched with WC payment token API?Upcoming new version will fully support Tokenization.
Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] לא עובדWrong plugin… Please create a new thread @ https://wordpress.org/support/plugin/woo-pelecard-gateway
Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] where XML?New version is soon to be released, I’ll try making myself more available in the future.
Sorry guys.Forum: Plugins
In reply to: [Pelecard Gateway] automatic language detection With WPMLYou could accomplish that with the following snippet of code:
add_filter( 'wc_pelecard_gateway_iframe_args', function( $args ) { if ( defined( 'ICL_LANGUAGE_CODE' ) && in_array( ICL_LANGUAGE_CODE, array( 'he', 'en', 'ru' ) ) ) { $args['Language'] = strtoupper( ICL_LANGUAGE_CODE ); } return $args; });Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] למה הפלייס הולדר לא כבר מהווה ערך ברירת מחדל ?אם הטמעת את הפונקציה כמו שצריך, אין סיבה שזה לא יעבוד.
אפשר להמשיך את ההתכתבות ב- idofri at gmail dot comForum: Plugins
In reply to: [Mirror Zap for WooCommerce] למה הפלייס הולדר לא כבר מהווה ערך ברירת מחדל ?תבצע רענון בתוך ממשק הניהול.
Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] למה הפלייס הולדר לא כבר מהווה ערך ברירת מחדל ?היי,
1) אין טעות.
2) תוסיף את הפונקציה הזאת לקובץ functions.php של התבנית:
function woo_zap_update_product_name() { if ( ! is_admin() ) { return; } $zap_query = new WP_Query( array( 'post_type' => 'product', 'posts_per_page' => -1 ) ); if ( $zap_query->have_posts() ) { global $post; while ( $zap_query->have_posts() ) { $zap_query->the_post(); update_post_meta( $post->ID, '_wc_zap_product_name', $post->post_title ); } wp_reset_postdata(); } } add_action( 'init', 'woo_zap_update_product_name' );@עידו
Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] למה הפלייס הולדר לא כבר מהווה ערך ברירת מחדל ?היי,
אפשרות לעריכה ב-bulk עדיין אינה אפשרית לצערי ולא אוכל לנקוב בתאריך יעד לפיתוח.
כתבתי עבורך שאילתת SQL פשוטה שתבצע את עדכון שם המוצר באופן גורף:UPDATE wp_postmeta a INNER JOIN wp_posts b on a.post_id=b.ID SET a.meta_value=b.post_title WHERE a.meta_key='_wc_zap_product_name'* יש לעדכן את ה-db_prefix לפי הצורך (_wp)
אם אין לך גישה לבסיס-הנתונים ניתן להמיר את השאילתא בפונקציית php.
בהצלחה,
@עידוForum: Reviews
In reply to: [Mirror Zap for WooCommerce] איזה מלך ! תודה רבה רבה
Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] נתוני מוצר לא מועברים אוטומטיתNo bulk editing of products & fields is available @ the moment.
Next version will present some advanced features.
Schedule is yet to be known.Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] בעיה בתוסףDid you update the values on the other producs?
Notice that some of the fields are filled with placeholders – NOT values.Forum: Plugins
In reply to: [Mirror Zap for WooCommerce] page not found when https enabledI’ve just released another version (1.2.2) – please apply latest update.
(Still wondering what’s considered to be best practice for template redirection).