Plugin Directory

Changeset 2378799


Ignore:
Timestamp:
09/10/2020 02:45:17 PM (6 years ago)
Author:
restaumatic
Message:

Tagging release 1.0.2.

Location:
wp-restaumatic/tags/1.0.2
Files:
3 edited
5 copied

Legend:

Unmodified
Added
Removed
  • wp-restaumatic/tags/1.0.2/public/class-wp-restaumatic-public.php

    r2289222 r2378799  
    9797        }
    9898
    99         $am_url     = ( ! empty( $atts['restaurant'] ) ) ? 'https://' . $atts['slug'] . '.skubacz.pl/restauracja/' . $atts['restaurant'] : 'https://' . $atts['slug'] . '.skubacz.pl/restauracje';
    100         $script_url = 'https://' . $atts['slug'] . '.skubacz.pl/menu_widget.js';
     99        if ( empty( $atts['restaurant'] ) ) {
     100            $am_url     = 'https://' . $atts['slug'] . '.skubacz.pl/restauracje';
     101            $script_url = 'https://' . $atts['slug'] . '.skubacz.pl/menu_widget.js';
     102        } else {
     103            $am_url     = 'https://' . $atts['slug'] . '.skubacz.pl/restauracja/' . $atts['restaurant'];
     104            $script_url = 'https://' . $atts['slug'] . '.skubacz.pl/menu_widget.js?restaurant=' . $atts['restaurant'];
     105        }
    101106
    102107        $output .= '<div id="restaumatic_menu_widget_wrapper">';
  • wp-restaumatic/tags/1.0.2/readme.txt

    r2303183 r2378799  
    55Tested up to: 5.4
    66Requires PHP: 5.2
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7070= Where can I get more information? =
    7171
    72 Please visit the [official plugin website](https://www.restaumatic.com) or contact us [here](https://www.restaumatic.com/en/contact/).
     72Please visit the [official plugin website](https://www.restaumatic.com/) or contact us [here](https://www.restaumatic.com/en/contact/).
    7373
    7474== Screenshots ==
     
    8585== Changelog ==
    8686
     87= 1.0.2 =
     88* Menu widget URL optimization.
     89
    8790= 1.0.1 =
    8891* UX improvements.
  • wp-restaumatic/tags/1.0.2/wp-restaumatic.php

    r2295305 r2378799  
    1616 * Plugin URI:        https://www.restaumatic.com/en/ordering-system/
    1717 * Description:       Restaumatic Active Menu integration. Fully featured food ordering system for your WordPress website.
    18  * Version:           1.0.1
     18 * Version:           1.0.2
    1919 * Author:            Restaumatic
    2020 * Author URI:        https://www.restaumatic.com
     
    3535 * Update it as you release new versions.
    3636 */
    37 define( 'WP_RESTAUMATIC_VERSION', '1.0.1' );
     37define( 'WP_RESTAUMATIC_VERSION', '1.0.2' );
    3838
    3939/**
Note: See TracChangeset for help on using the changeset viewer.