Changeset 1959824
- Timestamp:
- 10/20/2018 03:25:06 PM (7 years ago)
- Location:
- pixel-de-facebook-para-wocommerce/trunk
- Files:
-
- 2 edited
-
fb-conf.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
pixel-de-facebook-para-wocommerce/trunk/fb-conf.php
r1819926 r1959824 4 4 Plugin URI: https://www.labschool.es 5 5 Description: Agrega fácilmente el pixel de Facebook, además de eventos estándar y personalizados a tu Woocommerce (ViewShop, ViewCategory, ViewTag, ViewContent, AddToCart, InitiateCheckout y Purchase). 6 Version: 1.1. 26 Version: 1.1.3 7 7 Requires at least: 3.0 8 Tested up to: 4.9 8 Tested up to: 4.9.8 9 9 WC requires at least: 3.0 10 10 WC tested up to: 3.3 … … 93 93 content_category: '<?php echo $product_category ?>', 94 94 content_ids: ['<?php echo (isset($options['product_ref']) && $options['product_ref']) ? $content_id : $content_sku; ?>'], 95 value: <?php echo (isset($options['taxes']) && $options['taxes']) ? $price : $price_ex; ?>,95 value: <?php echo (isset($options['taxes']) && $options['taxes']) ? number_format($price,2,'.','') : number_format($price_ex,2,'.',''); ?>, 96 96 currency:'<?php echo $options['currency'];?>' 97 97 }); … … 196 196 content_type: 'product', 197 197 content_ids: [<?php echo (isset($options['product_ref']) && $options['product_ref']) ? implode( ', ',$content_id) : implode( ', ',$content_sku); ?>], 198 value: <?php echo (isset($options['taxes']) && $options['taxes']) ? $cart_total : $cart_total_ex; ?>,198 value: <?php echo (isset($options['taxes']) && $options['taxes']) ? number_format($cart_total,2,'.','') : number_format($cart_total_ex,2,'.',''); ?>, 199 199 currency:'<?php echo $options['currency'];?>' 200 200 }); … … 224 224 content_type: 'product', 225 225 content_ids: [<?php echo (isset($options['product_ref']) && $options['product_ref']) ? implode( ', ',$content_id) : implode( ', ',$content_sku); ?>], 226 value: <?php echo (isset($options['taxes']) && $options['taxes']) ? $cart_total : $cart_total_ex; ?>,226 value: <?php echo (isset($options['taxes']) && $options['taxes']) ? number_format($cart_total,2,'.','') : number_format($cart_total_ex,2,'.',''); ?>, 227 227 currency:'<?php echo $options['currency'];?>' 228 228 }); … … 257 257 content_type: 'product', 258 258 content_ids: [<?php echo (isset($options['product_ref']) && $options['product_ref']) ? implode( ', ',$content_id) : implode( ', ',$content_sku); ?>], 259 value: <?php echo (isset($options['taxes']) && $options['taxes']) ? $order_total : $order_total_ex; ?>,259 value: <?php echo (isset($options['taxes']) && $options['taxes']) ? number_format($order_total,2,'.','') : number_format($order_total_ex,2,'.',''); ?>, 260 260 currency:'<?php echo $options['currency'];?>' 261 261 }); -
pixel-de-facebook-para-wocommerce/trunk/readme.txt
r1819926 r1959824 4 4 Tags: woocommerce, ecommerce, facebook, pixel, facebook pixel, events, tracking, facebook tracking, facebook events, viewcontent, addtocart, initiatecheckout, purchase, remarketing 5 5 Requires at least: 3.0 6 Tested up to: 4.9 6 Tested up to: 4.9.8 7 7 Stable tag: 4.3 8 8 License: GPLv2 or later … … 39 39 40 40 == Changelog == 41 = Version 1.1.3 = 42 Disponible 20/10/2018 43 44 - Solucionado error menor gracias a la detección y solución propuesta por @shojen. Gracias 45 41 46 = Version 1.1.2 = 42 47 Disponible 11/02/2018
Note: See TracChangeset
for help on using the changeset viewer.