Changeset 3266658
- Timestamp:
- 04/04/2025 02:41:58 AM (12 months ago)
- Location:
- caseyak/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (3 diffs)
-
caseyak.php (modified) (2 diffs)
-
includes/class-caseyak.php (modified) (1 diff)
-
public/class-caseyak-public.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
caseyak/trunk/README.txt
r3266404 r3266658 6 6 Tested up to: 6.7.2 7 7 Requires PHP: 7.0 8 Stable tag: 1. 68 Stable tag: 1.7 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 83 83 * Bug fixes & misc improvements 84 84 85 = 1.7 = 86 * Bug fixes & misc improvements 87 85 88 == Upgrade Notice == 86 89 … … 108 111 = 1.6 = 109 112 * Bug fixes & misc improvements 113 114 = 1.7 = 115 * Bug fixes & misc improvements -
caseyak/trunk/caseyak.php
r3266404 r3266658 17 17 * Plugin URI: https://caseyak.com/wordpress 18 18 * Description: The CaseYak AI Case Value Calculator. 19 * Version: 1. 619 * Version: 1.7 20 20 * Author: CaseYak 21 21 * Author URI: https://caseyak.com … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'CASEYAK_VERSION', '1. 6' );38 define( 'CASEYAK_VERSION', '1.7' ); 39 39 40 40 /** -
caseyak/trunk/includes/class-caseyak.php
r3065572 r3266658 173 173 $plugin_public = new Caseyak_Public( $this->get_plugin_name(), $this->get_version() ); 174 174 175 $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' );176 175 $this->loader->add_action( 'wp_footer', $plugin_public, 'addScript' ); 177 176 } -
caseyak/trunk/public/class-caseyak-public.php
r3263545 r3266658 56 56 57 57 /** 58 * Register the stylesheets for the public-facing side of the site.59 *60 * @since 1.0.061 */62 public function enqueue_styles() {63 64 wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/caseyak-public.css', array(), $this->version, 'all' );65 66 }67 68 /**69 58 * Adds the public CaseYak script to the body 70 59 * … … 74 63 $file = plugin_dir_path( dirname( __FILE__ ) ) . 'public/partials/caseyak-script.php'; 75 64 $t = time(); 76 $mvaScript = plugin_dir_url( __FILE__ ) . 'js/mva.js?v=' . $t;65 $mvaScript = 'https://caseyak.com/assets/js/mva.js?v=' . $t; 77 66 if (file_exists($file)) { 78 67 // get instance settings
Note: See TracChangeset
for help on using the changeset viewer.