Changeset 2068290
- Timestamp:
- 04/13/2019 04:55:47 PM (7 years ago)
- Location:
- super-transactional-emails-for-woocommerce
- Files:
-
- 3 added
- 5 edited
-
assets/screenshot-1.jpg (added)
-
assets/screenshot-2.jpg (added)
-
assets/screenshot-3.jpg (added)
-
trunk/assets/js/stewoo_customizer_controls_scripts.js (modified) (1 diff)
-
trunk/inc/class-stewoo-api.php (modified) (1 diff)
-
trunk/inc/class-stewoo-settings.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/super-transactional-email.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
super-transactional-emails-for-woocommerce/trunk/assets/js/stewoo_customizer_controls_scripts.js
r2063115 r2068290 18 18 return false; 19 19 } 20 $('.stewoo_send_test_email_message').removeClass('updated').html(''); 20 21 $('.stewoo_send_test_email').addClass('loading'); 21 22 var data = { -
super-transactional-emails-for-woocommerce/trunk/inc/class-stewoo-api.php
r2063115 r2068290 178 178 179 179 ob_start(); 180 if ( isset( $_GET[ $this->stewoo_trigger ] ) ) { 181 $show_image = true; 182 } else { 183 $show_image = get_option( 'stewoo_display_order_items_images', false ); 184 } 180 $show_image = get_option( 'stewoo_display_order_items_images', false ); 185 181 186 182 $defaults = array( -
super-transactional-emails-for-woocommerce/trunk/inc/class-stewoo-settings.php
r2063115 r2068290 30 30 $wp_customize->add_setting( 'stewoo_display_order_items_images', array( 31 31 'type' => 'option', 32 'transport' => ' postMessage',32 'transport' => 'refresh', 33 33 ) ); 34 34 /**** Settings from WooCommerce ****/ -
super-transactional-emails-for-woocommerce/trunk/readme.txt
r2063115 r2068290 1 === Super Transactional Emails for WooCommerce === 1 === STEWoo - Super Transactional Emails for WooCommerce === 2 3 Plugin Name: Super Transactional Emails for WooCommerce (STEWoo) 4 Plugin URI: https://stewoo.com/ 5 Description: STEWoo allows you to customize and enhance WooCommerce emails. 2 6 Contributors: BorisColombier, freemius 3 Tags: woocommerce, email, e mails, ecommerce, transactional, marketing7 Tags: woocommerce, email, ecommerce, transactional, marketing, emails 4 8 Requires at least: 4.7 5 9 Tested up to: 4.9.8 6 10 Requires PHP: 5.6 7 11 8 This plugin allows you to customize your WooCommerce transactional emails with the WordPress Customizer 12 == Description == 13 14 > Design your WooCommerce transactional emails with the WordPress Customizer 15 16 With STEWoo you can preview, modify and test your WooCommerce transactional Emails. 17 18 By adding your custom CSS code you can create infinity designs 19 20 == Installation == 21 22 Once STEWoo is activated a new menu item 'Super Emails' is available under the WooCommerce menu 23 24 == Screenshots == 25 26 1. Access STEWoo via the WooCommerce menu 27 2. Use the WordPress Customizer to design your emails 28 3. Add your custom CSS code 9 29 10 30 == Changelog == -
super-transactional-emails-for-woocommerce/trunk/super-transactional-email.php
r2063295 r2068290 37 37 ), 38 38 'has_affiliation' => 'selected', 39 'menu' => array(40 'slug' => 'stewoo_options',41 'override_exact' => true,42 'support' => false,43 'parent' => array(44 'slug' => 'options-general.php',45 ),46 ),39 'menu' => array( 40 'slug' => 'stewoo_options', 41 'override_exact' => true, 42 'support' => false, 43 'parent' => array( 44 'slug' => 'options-general.php', 45 ), 46 ), 47 47 'is_live' => true, 48 48 ) );
Note: See TracChangeset
for help on using the changeset viewer.