Changeset 931637
- Timestamp:
- 06/13/2014 07:16:45 AM (12 years ago)
- Location:
- woocommerce-add-form-to-product
- Files:
-
- 37 added
- 2 edited
-
tags/0.5.4 (added)
-
tags/0.5.4/LICENSE (added)
-
tags/0.5.4/css (added)
-
tags/0.5.4/css/style-admin.css (added)
-
tags/0.5.4/css/style.css (added)
-
tags/0.5.4/images (added)
-
tags/0.5.4/images/form-to-product-icon.png (added)
-
tags/0.5.4/includes (added)
-
tags/0.5.4/includes/class-wc-email-customer-preview-approved.php (added)
-
tags/0.5.4/includes/class-wc-email-customer-preview-submitted.php (added)
-
tags/0.5.4/includes/class-wc-email-customer-request-texts.php (added)
-
tags/0.5.4/includes/class-wc-email-preview-approved.php (added)
-
tags/0.5.4/includes/class-wc-email-send-report.php (added)
-
tags/0.5.4/includes/class-wc-email-text-submitted.php (added)
-
tags/0.5.4/js (added)
-
tags/0.5.4/js/script-admin.js (added)
-
tags/0.5.4/languages (added)
-
tags/0.5.4/languages/af2p_forms-it_IT.mo (added)
-
tags/0.5.4/languages/af2p_forms-it_IT.po (added)
-
tags/0.5.4/languages/af2p_forms.pot (added)
-
tags/0.5.4/readme.txt (added)
-
tags/0.5.4/templates (added)
-
tags/0.5.4/templates/emails (added)
-
tags/0.5.4/templates/emails/customer-preview-approved.php (added)
-
tags/0.5.4/templates/emails/customer-preview-submitted.php (added)
-
tags/0.5.4/templates/emails/customer-request-texts.php (added)
-
tags/0.5.4/templates/emails/plain (added)
-
tags/0.5.4/templates/emails/plain/customer-preview-approved.php (added)
-
tags/0.5.4/templates/emails/plain/customer-preview-submitted.php (added)
-
tags/0.5.4/templates/emails/plain/customer-request-texts.php (added)
-
tags/0.5.4/templates/emails/plain/preview-approved.php (added)
-
tags/0.5.4/templates/emails/plain/send-report.php (added)
-
tags/0.5.4/templates/emails/plain/text-submitted.php (added)
-
tags/0.5.4/templates/emails/preview-approved.php (added)
-
tags/0.5.4/templates/emails/send-report.php (added)
-
tags/0.5.4/templates/emails/text-submitted.php (added)
-
tags/0.5.4/woocommerce-add-form-to-product.php (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/woocommerce-add-form-to-product.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woocommerce-add-form-to-product/trunk/readme.txt
r930143 r931637 4 4 Requires at least: 3.5 5 5 Tested up to: 3.9.1 6 Stable tag: 0.5. 46 Stable tag: 0.5.5 7 7 License: GPLv2 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 13 13 14 14 Add a custom text form to an item. This is required when item in your shop need to get a custom text, for example wedding invitations, plates, serigraphs for pens and more 15 16 this plugin need Contact Form 7 15 17 16 18 = GET INVOLVED = … … 47 49 == Changelog == 48 50 51 = 0.5.5 - 13/06/2014 = 52 * Fix fatal error after install if Contact Form 7 missed 53 * Fix showing error on Front End 54 49 55 = 0.5.4 - 11/06/2014 = 50 56 * Fix send request email -
woocommerce-add-form-to-product/trunk/woocommerce-add-form-to-product.php
r930143 r931637 6 6 * Author: Michele Menciassi 7 7 * Author URI: https://plus.google.com/+MicheleMenciassi 8 * Version: 0.5. 48 * Version: 0.5.5 9 9 * License: GPLv2 or later 10 10 */ … … 33 33 */ 34 34 public function init() { 35 require_once WPCF7_PLUGIN_DIR . '/includes/controller.php'; 35 if (defined(WPCF7_PLUGIN_DIR)){ 36 require_once WPCF7_PLUGIN_DIR . '/includes/controller.php'; 37 } 36 38 if (is_admin()){ 37 39 // backend stuff … … 267 269 ); 268 270 //remove_filter('comments_clauses', 'woocommerce_exclude_order_comments'); 269 remove_filter('comments_clauses', array( 'WC_Comments' , 'exclude_order_comments' ));271 remove_filter('comments_clauses', array( 'WC_Comments' ,'exclude_order_comments'), 10, 1 ); 270 272 $notes = get_comments( $args ); 271 273 //add_filter('comments_clauses', 'woocommerce_exclude_order_comments'); 272 add_filter('comments_clauses', array( 'WC_Comments', 'exclude_order_comments' ) );274 add_filter('comments_clauses', array( 'WC_Comments', 'exclude_order_comments' ), 10, 1 ); 273 275 ?> 274 276 <ul class="order_notes" id="reports-container">
Note: See TracChangeset
for help on using the changeset viewer.