Changeset 2466436
- Timestamp:
- 02/01/2021 01:39:47 PM (5 years ago)
- Location:
- quick-call-button/trunk
- Files:
-
- 2 edited
-
quick-call-button.php (modified) (4 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quick-call-button/trunk/quick-call-button.php
r2367106 r2466436 7 7 Author URI: https://longvietweb.com/ 8 8 Author: LongViet 9 Version: 1.2. 59 Version: 1.2.6 10 10 License: GPL2 11 11 Text Domain: quickcallbutton 12 12 */ 13 13 14 define('QUICK_CALL_BUTTON_VERSION', '1.2. 5');14 define('QUICK_CALL_BUTTON_VERSION', '1.2.6'); 15 15 define('QUICK_CALL_BUTTON_DIR', plugin_dir_path(__FILE__)); 16 16 define('QUICK_CALL_BUTTON_URL', plugins_url('/', __FILE__)); … … 79 79 80 80 if (get_current_screen()->base == 'settings_page_lv_quick_call_button') { 81 wp_register_script( 'lv_js', plugins_url('assets/js/quick-call-button-admin.js', __FILE__), array('jquery'), '1.2. 5', true );81 wp_register_script( 'lv_js', plugins_url('assets/js/quick-call-button-admin.js', __FILE__), array('jquery'), '1.2.6', true ); 82 82 wp_enqueue_script( 'lv_js' ); 83 wp_register_style( 'lv_css', plugins_url('/assets/css/quick-call-button-admin.css', __FILE__) , false, '1.2. 5' );83 wp_register_style( 'lv_css', plugins_url('/assets/css/quick-call-button-admin.css', __FILE__) , false, '1.2.6' ); 84 84 wp_enqueue_style( 'lv_css'); 85 85 … … 313 313 314 314 // adding the enque here will setup the style. 315 wp_register_style( 'lv_css', QUICK_CALL_BUTTON_URL."assets/css/quick-call-button.css",array(),"1.2. 5" );315 wp_register_style( 'lv_css', QUICK_CALL_BUTTON_URL."assets/css/quick-call-button.css",array(),"1.2.6" ); 316 316 wp_enqueue_style( 'lv_css'); 317 317 if ( empty( $this->lv_options['disabled_drag_drop'] ) ){ … … 371 371 <div> 372 372 <p class='call-text'> {$this->lv_options['call_text']} </p> 373 <a href='tel:".$phone_number__id."' id='quickcallbutton' ".$tracking." 'title='Call Now' >373 <a href='tel:".$phone_number__id."' id='quickcallbutton' ".$tracking." title='Call Now' > 374 374 <div class='quick-alo-ph-circle {$this->lv_options['call_wave_effect']}'></div> 375 375 <div class='quick-alo-ph-circle-fill {$this->lv_options['call_wave_effect']}'></div> -
quick-call-button/trunk/readme.txt
r2367106 r2466436 4 4 Tags: call button, quick call button, call now button, ipad, mobile, responsive, buttons, phone, call, contact, 5 5 Requires at least: 4.6 6 Tested up to: 5. 57 Stable tag: 1.2. 56 Tested up to: 5.6 7 Stable tag: 1.2.6 8 8 Requires PHP: 5.6 9 9 License: GPLv3 … … 68 68 == Changelog == 69 69 70 = 1.2.6 = 71 * Small bug fixes make it more stable. 72 70 73 = 1.2.5 = 71 74 * jquery decompression update reported malicious code by google ads. … … 115 118 = 1.2.5 = 116 119 120 = 1.2.5 = 121 117 122 = 1.2.4 = 118 123
Note: See TracChangeset
for help on using the changeset viewer.