Plugin Directory

Changeset 2621083


Ignore:
Timestamp:
10/28/2021 12:10:11 AM (4 years ago)
Author:
rezgo
Message:

committing version 4.1.1

Location:
rezgo/trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • rezgo/trunk/3ds_return_url.php

    r2578352 r2621083  
    44
    55        <script>
    6             <?php echo LOCATION_WINDOW?>.postMessage('3DS-authentication-complete');
     6           window.top.postMessage('3DS-authentication-complete');
    77        </script>
    88
  • rezgo/trunk/readme.txt

    r2618089 r2621083  
    66Tested up to: 5.8.1
    77Requires PHP: 5.2
    8 Stable tag: 4.1
     8Stable tag: 4.1.1
    99
    1010Sell your tours, activities, and events on your WordPress website using Rezgo.
     
    136136== Changelog ==
    137137
     138= 4.1.1 =
     139* Bug fixes for Stripe
     140
    138141= 4.1 =
    139142* Added ability to sort and order through review ratings on review list page
  • rezgo/trunk/rezgo.php

    r2618089 r2621083  
    55    Plugin URI: https://wordpress.org/plugins/rezgo/
    66    Description: Connect WordPress to your Rezgo account and accept online bookings directly on your website.
    7     Version: 4.1
     7    Version: 4.1.1
    88    Author: Rezgo
    99    Author URI: http://www.rezgo.com
     
    5656define('REZGO_PLUGIN_NAME', 'rezgo');
    5757define('REZGO_PLUGIN_DIR', plugin_dir_path(__FILE__));
    58 define('REZGO_PLUGIN_VERSION', '4.1');
     58define('REZGO_PLUGIN_VERSION', '4.1.1');
    5959
    6060require_once('rezgo/include/page_header.php');
  • rezgo/trunk/rezgo/include/config.rezgo.php

    r2582657 r2621083  
    5353// The number of results per search page, this is used exclusively by the templates
    5454define("REZGO_RESULTS_PER_PAGE", get_option('rezgo_result_num'));
     55
     56define( "LOCATION_HREF",                    "top.location.href" );
     57define( "LOCATION_REPLACE",                 "top.location.replace" );
     58define( "LOCATION_WINDOW",                  "window.top" );
     59define( "REZGO_FRAME_TARGET",               "parent" );
    5560
    5661// gift cards to use for honeypot
  • rezgo/trunk/rezgo/templates/default/calendar_day.php

    r2618089 r2621083  
    447447                                                                    <span class="rezgo-strike-price">
    448448                                                                        <?php echo $site->formatCurrency($show_this)?>
    449                                                                     </span>
     449                                                                    </span><br>
    450450                                                                       
    451451                                                                <?php } else if(!$site->isVendor() && $site->exists($price->strike)) { ?>
     
    455455                                                                            <span class="rezgo-strike-price">
    456456                                                                                <?php echo $site->formatCurrency($strike_price)?>
    457                                                                             </span>
     457                                                                            </span><br>
    458458                                                                        <?php } ?>
    459459                                                                        <span class="rezgo-strike-extra"><span>
     
    463463                                                                        <span class="discount">
    464464                                                                            <?php echo $site->formatCurrency($price->base)?>
    465                                                                         </span>
     465                                                                        </span><br>
    466466
    467467                                                                <?php } ?>
  • rezgo/trunk/rezgo/templates/default/confirm.php

    r2618089 r2621083  
    18241824                                    }
    18251825                                },
    1826                                 return_url: window.top.origin + '/3ds_return_url.php'
     1826                                return_url: window.top.origin + '<?php echo $site->base?>' + '/3ds_return_url'
    18271827                            },
    18281828                            // Disable the default next action handling because we want to use an iframe
  • rezgo/trunk/rezgo_plugin_logic.php

    r2618089 r2621083  
    203203        '(.+?)/3DS/?$'
    204204        => 'index.php?pagename=$matches[1]&mode=3DS',
     205
     206        '(.+?)/3ds_return_url/?$'
     207        => 'index.php?pagename=$matches[1]&mode=3ds_return_url',
    205208    );
    206209
Note: See TracChangeset for help on using the changeset viewer.