Changeset 2339353
- Timestamp:
- 07/12/2020 05:40:46 PM (6 years ago)
- Location:
- exchange-paypal-to-satoshi/trunk
- Files:
-
- 2 added
- 2 deleted
- 2 edited
-
assets/exchange-paypal-to-satoshi.css (added)
-
assets/exchange-paypal-to-satoshi.js (added)
-
assets/paypal-satoshi-exchange.css (deleted)
-
assets/paypal-satoshi-exchange.js (deleted)
-
exchange-paypal-to-satoshi.php (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
exchange-paypal-to-satoshi/trunk/exchange-paypal-to-satoshi.php
r2339271 r2339353 4 4 * Description: Exchange USD to Satoshi instantly at your rate, keep the profit. 5 5 * Author: Alexey Trofimov 6 * Version: 1.0. 06 * Version: 1.0.1 7 7 * License: GPLv2 8 8 * Text Domain: exchange-paypal-to-satoshi … … 32 32 add_action( 'parse_request', array($this,'serve_exchange') ); 33 33 add_filter( "plugin_action_links_" . plugin_basename( __FILE__ ), array( $this,'add_settings_link') ); 34 add_action( 'wp_enqueue_scripts', array( $this, 'register_plugin_styles' ),99999 );//trying to connect last because of ugly themes35 add_action( 'admin_enqueue_scripts', array( $this, 'register_plugin_styles' ),99999 );34 // add_action( 'wp_enqueue_scripts', array( $this, 'register_plugin_styles' ),99999 );//trying to connect last because of ugly themes 35 // add_action( 'admin_enqueue_scripts', array( $this, 'register_plugin_styles' ),99999 ); 36 36 add_shortcode('PayPal_Satoshi_Exchange', array( $this, 'exchange_shortcode') ); 37 37 } … … 379 379 $current_url = get_permalink( $obj_id ); 380 380 381 $this->register_plugin_styles(); 381 382 382 383 $url_sep .= strpos($current_url,'?') === FALSE ? '?' : '&'; … … 591 592 jQuery(document).ready(function() {PPSE1990F_show_system_status();}); 592 593 </script>'); 594 $this->register_plugin_styles(); 593 595 $this->render_payment_gateway_settings(); 594 596 $this->admin_api_key_js(); … … 1194 1196 1195 1197 public function enqueue_scripts_and_styles(){ 1196 wp_enqueue_style(' integrated-donations-css', plugin_dir_url(__FILE__) . 'assets/paypal-satoshi-exchange.css');1197 wp_enqueue_script(' integrated-donations-js', plugin_dir_url(__FILE__) . 'assets/paypal-satoshi-exchange.js',array('jquery'));1198 wp_enqueue_style('exchange-paypal-to-satoshi', plugin_dir_url(__FILE__) . 'assets/exchange-paypal-to-satoshi.css'); 1199 wp_enqueue_script('exchange-paypal-to-satoshi', plugin_dir_url(__FILE__) . 'assets/exchange-paypal-to-satoshi.js',array('jquery')); 1198 1200 }//enqueue_scripts_and_styles() 1199 1201 -
exchange-paypal-to-satoshi/trunk/readme.txt
r2339271 r2339353 5 5 Requires at least: 2.0 6 6 Tested up to: 5.4 7 Stable tag: 1.0. 07 Stable tag: 1.0.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 102 102 == Changelog == 103 103 104 = V1.0.1 - 12.07.2020 = 105 Bootstrap compatibility fixed.<br> 106 104 107 = V1.0.0 - 12.07.2020 = 105 Initial public release <br>108 Initial public release.<br> 106 109 107 110
Note: See TracChangeset
for help on using the changeset viewer.