Changeset 1442969
- Timestamp:
- 06/24/2016 01:54:23 PM (10 years ago)
- Location:
- glofox/trunk
- Files:
-
- 2 edited
-
glofox.php (modified) (6 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
glofox/trunk/glofox.php
r1369352 r1442969 4 4 * Plugin URI: http://glofox.com 5 5 * Description: This plugin is for integrating Glofox with your site. 6 * Version: 1.0. 96 * Version: 1.0.10 7 7 * Author: Timmy Fisher 8 8 * Author URI: http://glofox.com … … 24 24 25 25 function auto_height_adjuster() { 26 wp_enqueue_script( 'glofox-script-1', 'http:// www.glofoxlogin.com/js/pages/websites/easyXDM.debug.js', '','1.0',true );27 wp_enqueue_script( 'glofox-script-2', 'http:// www.glofoxlogin.com/js/pages/websites/iframe_client.js' , '','1.0',true);26 wp_enqueue_script( 'glofox-script-1', 'http://app.glofox.com/js/pages/websites/easyXDM.debug.js', '','1.0',true ); 27 wp_enqueue_script( 'glofox-script-2', 'http://app.glofox.com/js/pages/websites/iframe_client.js' , '','1.0',true); 28 28 wp_enqueue_style( 'glofox-style', plugin_dir_url( __FILE__ ) . 'assets/css/glofox.css'); 29 29 } … … 135 135 136 136 function get_membership_code() { 137 $membership = "<iframe src='https:// www.glofoxlogin.com/websites/list_memberships/".esc_attr( get_option('branch_id') )."' class='glofox-iframe' ></iframe>";137 $membership = "<iframe src='https://app.glofox.com/websites/list_memberships/".esc_attr( get_option('branch_id') )."' class='glofox-iframe' ></iframe>"; 138 138 return $membership; 139 139 } … … 149 149 150 150 function get_courses_code() { 151 $membership = "<iframe src='https:// www.glofoxlogin.com/websites/schedule/".esc_attr( get_option('branch_id') )."/courses' class='glofox-iframe' ></iframe>";151 $membership = "<iframe src='https://app.glofox.com/websites/schedule/".esc_attr( get_option('branch_id') )."/courses' class='glofox-iframe' ></iframe>"; 152 152 return $membership; 153 153 } … … 163 163 164 164 function get_facilities_code() { 165 $facility = "<iframe src='https:// www.glofoxlogin.com/websites/schedule/".esc_attr( get_option('branch_id') )."/facilities' class='glofox-iframe' ></iframe>";165 $facility = "<iframe src='https://app.glofox.com/websites/schedule/".esc_attr( get_option('branch_id') )."/facilities' class='glofox-iframe' ></iframe>"; 166 166 return $facility; 167 167 } … … 178 178 179 179 function get_trainers_code() { 180 $trainer = "<iframe src='https:// www.glofoxlogin.com/websites/schedule/".esc_attr( get_option('branch_id') )."/users' class='glofox-iframe' ></iframe>";180 $trainer = "<iframe src='https://app.glofox.com/websites/schedule/".esc_attr( get_option('branch_id') )."/users' class='glofox-iframe' ></iframe>"; 181 181 return $trainer; 182 182 } -
glofox/trunk/readme.txt
r1369352 r1442969 43 43 == Changelog == 44 44 45 = 1.0.10 = 46 * The link is now app.glofox.com 47 45 48 = 1.0.9 = 46 49 * Adding courses, trainer appointments and facility appointments embed codes.
Note: See TracChangeset
for help on using the changeset viewer.