Changeset 2307017
- Timestamp:
- 05/18/2020 09:20:15 AM (6 years ago)
- Location:
- woomotiv
- Files:
-
- 3 edited
- 1 copied
-
tags/2.10.0/trunk (copied) (copied from woomotiv/trunk)
-
trunk/index.php (modified) (3 diffs)
-
trunk/lib/class-backend.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
woomotiv/trunk/index.php
r2264300 r2307017 4 4 * Plugin Name: Woomotiv - Sales Popups for Woocommerce 5 5 * Description: Laverage social proof to increase truct, traffic and sales. 6 * Version: 2.10. 06 * Version: 2.10.1 7 7 * Author: Sabri Taieb 8 8 * Author Uri: https://delabon.com … … 18 18 19 19 # Defined 20 define( 'WOOMOTIV_VERSION', '2.10. 0' );20 define( 'WOOMOTIV_VERSION', '2.10.1' ); 21 21 define( 'WOOMOTIV_URL', plugins_url( '', __FILE__ ) ); 22 22 define( 'WOOMOTIV_DIR', __DIR__ ); … … 52 52 * 53 53 * @var Woomotiv 54 */ 54 */ 55 55 private static $_instance; 56 56 -
woomotiv/trunk/lib/class-backend.php
r2230061 r2307017 21 21 if( ! current_user_can( 'level_8' ) ) return; 22 22 23 add_action( 'admin_notices', array( $this, 'adminNotices' ) ); 23 24 add_action( 'admin_menu', array( $this, 'adminMenuAction' ) ); 24 25 add_action( 'admin_enqueue_scripts', array( $this, 'loadAssets' ) ); … … 33 34 34 35 /** 36 * Admin notices 37 * Using this hook prevents headers already sent warning 38 */ 39 function adminNotices() { 40 41 if( ! woomotiv()->request->post('woomotiv_nonce') ) return; 42 43 echo Alert::success( __('Options Saved Successfuly','woomotiv') ); 44 } 45 46 /** 35 47 * Add admin menu 36 48 */ … … 44 56 } 45 57 46 echo Alert::success( __('Options Saved Successfuly','woomotiv') );47 58 } 48 59 -
woomotiv/trunk/readme.txt
r2264300 r2307017 1 === Woomotiv - Sales Popups for Woocommerce===1 === Sales Popups for Woocommerce - Woomotiv === 2 2 Contributors: delabon 3 3 Requires at least: 4.6 4 4 Tested up to: 5.4 5 Stable tag: 2.10. 05 Stable tag: 2.10.1 6 6 Requires PHP: 5.6 7 7 Tags: woocommerce notification, woocommerce sales notification, woocommerce sales popup, marketing, boost sales, boost conversion … … 101 101 == Changelog == 102 102 103 = 2.10.1 = 104 105 * Fixed headers already sent warning 106 103 107 = 2.10.0 = 104 108
Note: See TracChangeset
for help on using the changeset viewer.