Changeset 2448358
- Timestamp:
- 12/31/2020 06:49:06 AM (5 years ago)
- Location:
- lifeline-donation/trunk
- Files:
-
- 9 edited
-
config/donation_settings.php (modified) (1 diff)
-
languages/lifeline-donation.pot (modified) (1 diff)
-
lifeline-donation.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
webinane-commerce/includes/Classes/Emails.php (modified) (2 diffs)
-
webinane-commerce/includes/Classes/Webinane.php (modified) (2 diffs)
-
webinane-commerce/readme.txt (modified) (2 diffs)
-
webinane-commerce/templates/emails/layouts/template.php (modified) (1 diff)
-
webinane-commerce/webinane-commerce.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
lifeline-donation/trunk/config/donation_settings.php
r2410287 r2448358 95 95 Switcher::make( 96 96 esc_html__( 'Enable recurring payments', 'lifeline-donation' ), 97 'donation_ custom_amount'97 'donation_recurring_payments' 98 98 )->setHelp(esc_html__( 'Enable recurring payments', 'lifeline-donation' )) 99 99 ->withMeta(array( -
lifeline-donation/trunk/languages/lifeline-donation.pot
r2440499 r2448358 6 6 "Report-Msgid-Bugs-To: " 7 7 "https://wordpress.org/support/plugin/lifeline-donation\n" 8 "POT-Creation-Date: 2020-12- 16 09:58:32+00:00\n"8 "POT-Creation-Date: 2020-12-31 06:24:09+00:00\n" 9 9 "MIME-Version: 1.0\n" 10 10 "Content-Type: text/plain; charset=utf-8\n" -
lifeline-donation/trunk/lifeline-donation.php
r2440499 r2448358 8 8 * Text Domain: lifeline-donation 9 9 * Domain Path: /languages 10 * Version: 1.2. 310 * Version: 1.2.4 11 11 * 12 12 * @package Lifeline_Donation -
lifeline-donation/trunk/readme.txt
r2440499 r2448358 4 4 Tags: giving, donation, charity, ngo, nonprofit, non profit 5 5 Requires at least: 5.0 6 Tested up to: 5. 57 Stable tag: 1.2. 36 Tested up to: 5.6 7 Stable tag: 1.2.4 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 78 78 == Changelog == 79 79 80 = Version 1.2.4 = 81 - Fixed: Corrected the key for recurring payment enable. 82 - Updated: Webinane Commerce. 83 80 84 = Version 1.2.3 = 81 85 - Fixed: Donation success page, label replaced with Donation. -
lifeline-donation/trunk/webinane-commerce/includes/Classes/Emails.php
r2440499 r2448358 18 18 add_action('wpcommerce_order_action_email_invoice', array(__CLASS__, 'email_invoice'), 10, 2); 19 19 20 //add_action('wpcm_owner_new_order_email', array(__CLASS__, 'owner_email_template'), 10, 2);20 add_action('wpcm_owner_new_order_email', array(__CLASS__, 'owner_email_template'), 10, 2); 21 21 } 22 22 … … 50 50 $email = get_option('admin_email'); 51 51 return array( 52 'From: '.$name.' < '.$email.'>',52 'From: '.$name.' < '.$email.' >', 53 53 'Content-Type: text/html; charset=UTF-8', 54 54 ); -
lifeline-donation/trunk/webinane-commerce/includes/Classes/Webinane.php
r2440499 r2448358 59 59 60 60 // Creating table whenever a new blog is created 61 add_action( 'wp mu_new_blog', [__CLASS__, 'network_create'], 10, 6);61 add_action( 'wp_insert_site', [__CLASS__, 'network_create'], 10); 62 62 63 63 // Deleting the table whenever a blog is deleted … … 173 173 * @return [type] [description] 174 174 */ 175 static function network_create( $ blog_id, $user_id, $domain, $path, $site_id, $meta) {175 static function network_create( $wp_site ) { 176 176 $current_plugin_path_name = plugin_basename( WNCM_FILE ); 177 177 if ( is_plugin_active_for_network( $current_plugin_path_name ) ) { 178 switch_to_blog( $ blog_id );178 switch_to_blog( $wp_site->blog_id ); 179 179 \WebinaneCommerce\Admin\Install::init(true); 180 180 restore_current_blog(); -
lifeline-donation/trunk/webinane-commerce/readme.txt
r2440499 r2448358 148 148 You can find the detailed documentation about developing extensions and payment gateways [http://plugins.webinane.com/docs/WP-commerce-documentation/](http://plugins.webinane.com/docs/WP-commerce-documentation/) 149 149 150 Want to hire us, [Please visit](https://www.webinane.com/tasks/new) 151 150 152 == Credits == 151 153 - The plugin uses vuejs components from [Element UI](https://element.eleme.io/#/en-US/component/quickstart) … … 168 170 169 171 == Changelog == 172 **Version 2.2.4** 173 - Fixed: Donation success page, label replaced with Donation. 174 - Fixed: Admin donations donor address issue. 175 - Fixed: Admin donations, Donation detail issue is fixed. 176 170 177 **Version 2.2.3** 171 178 - Added: Settings to manage email Templates -
lifeline-donation/trunk/webinane-commerce/templates/emails/layouts/template.php
r2427727 r2448358 62 62 <td align="left" valign="top"> 63 63 <span style="font-family: 'Barlow', sans-serif; color: #8b8b8b; font-weight: 500; font-size: 15px;">{{price_label}}</span> 64 <span style="font-family: 'Barlow', sans-serif; color: #1aa0e6; font-weight: 600; font-size: 20px;">{{ order_total}}</span>64 <span style="font-family: 'Barlow', sans-serif; color: #1aa0e6; font-weight: 600; font-size: 20px;">{{total_amount}}</span> 65 65 </td> 66 66 </tr> -
lifeline-donation/trunk/webinane-commerce/webinane-commerce.php
r2440499 r2448358 17 17 */ 18 18 function webincom_load_textdomain() { 19 load_plugin_textdomain( ' webinane-commerce', false, basename( dirname( __FILE__ ) ) . '/languages' );19 load_plugin_textdomain( 'lifeline-donation', false, basename( dirname( __FILE__ ) ) . '/languages' ); 20 20 } 21 22 add_action( 'plugins_loaded', 'webincom_load_textdomain' ); 23 21 24 22 25 // Include the main WPCommerce class.
Note: See TracChangeset
for help on using the changeset viewer.