Changeset 2575264
- Timestamp:
- 07/30/2021 11:35:28 AM (5 years ago)
- Location:
- oribi-analytics-for-woocommerce/trunk
- Files:
-
- 3 edited
-
css/style.css (modified) (1 diff)
-
oribi-analytics-ecommerce.php (modified) (3 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
oribi-analytics-for-woocommerce/trunk/css/style.css
r2550222 r2575264 172 172 margin-top: 80px; 173 173 } 174 175 #wpfooter { 176 bottom: -100px; 177 } -
oribi-analytics-for-woocommerce/trunk/oribi-analytics-ecommerce.php
r2565217 r2575264 6 6 * Author: Oribi 7 7 * Author URI: https://oribi.io 8 * Version: 1.8. 18 * Version: 1.8.2 9 9 * Text Domain: oribi 10 10 * WC requires at least: 2.2 … … 18 18 function oribi_add_stylesheet() 19 19 { 20 wp_enqueue_style( 'oribi-styles', plugins_url( 'css/style.css', __FILE__ ) ); 21 wp_enqueue_style( 'roboto', 'https://fonts.googleapis.com/css?family=Roboto:400,500' ); 20 if(get_current_screen()->base === 'settings_page_oribi') { 21 wp_enqueue_style('oribi-styles', plugins_url('css/style.css', __FILE__)); 22 wp_enqueue_style('roboto', 'https://fonts.googleapis.com/css?family=Roboto:400,500'); 23 } 22 24 } 23 25 add_action( 'admin_print_styles', 'oribi_add_stylesheet' ); … … 225 227 226 228 public static function trackIntegratePurchase() { 227 if ( function_exists( 'WC' ) && !empty(WC()->session) ) {229 if ( function_exists( 'WC' ) && !empty(WC()->session) ) { 228 230 $data = WC()->session->get( 'trackIntegratePurchase_data' ); 229 231 $user_email = WC()->session->get( 'trackIntegratePurchase_email'); -
oribi-analytics-for-woocommerce/trunk/readme.txt
r2565217 r2575264 5 5 Requires at least: 5.0 6 6 Tested up to: 5.7.2 7 Stable tag: 1.8. 17 Stable tag: 1.8.2 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.