Plugin Directory

Changeset 1442969


Ignore:
Timestamp:
06/24/2016 01:54:23 PM (10 years ago)
Author:
Glofox
Message:

1.0.10

Location:
glofox/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • glofox/trunk/glofox.php

    r1369352 r1442969  
    44 * Plugin URI: http://glofox.com
    55 * Description: This plugin is for integrating Glofox with your site.
    6  * Version: 1.0.9
     6 * Version: 1.0.10
    77 * Author: Timmy Fisher
    88 * Author URI: http://glofox.com
     
    2424
    2525function 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);
    2828    wp_enqueue_style( 'glofox-style', plugin_dir_url( __FILE__ ) . 'assets/css/glofox.css');
    2929}
     
    135135
    136136function 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>";
    138138  return $membership;
    139139}
     
    149149
    150150function 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>";
    152152  return $membership;
    153153}
     
    163163
    164164function 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>";
    166166  return $facility;
    167167}
     
    178178
    179179function 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>";
    181181  return $trainer;
    182182}
  • glofox/trunk/readme.txt

    r1369352 r1442969  
    4343== Changelog ==
    4444
     45= 1.0.10 =
     46* The link is now app.glofox.com
     47
    4548= 1.0.9 =
    4649* Adding courses, trainer appointments and facility appointments embed codes.
Note: See TracChangeset for help on using the changeset viewer.