Changeset 2378799
- Timestamp:
- 09/10/2020 02:45:17 PM (6 years ago)
- Location:
- wp-restaumatic/tags/1.0.2
- Files:
-
- 3 edited
- 5 copied
-
. (copied) (copied from wp-restaumatic/trunk)
-
public/class-wp-restaumatic-public.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
-
trunk (copied) (copied from wp-restaumatic/trunk)
-
trunk/public/class-wp-restaumatic-public.php (copied) (copied from wp-restaumatic/trunk/public/class-wp-restaumatic-public.php)
-
trunk/readme.txt (copied) (copied from wp-restaumatic/trunk/readme.txt)
-
trunk/wp-restaumatic.php (copied) (copied from wp-restaumatic/trunk/wp-restaumatic.php)
-
wp-restaumatic.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-restaumatic/tags/1.0.2/public/class-wp-restaumatic-public.php
r2289222 r2378799 97 97 } 98 98 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 } 101 106 102 107 $output .= '<div id="restaumatic_menu_widget_wrapper">'; -
wp-restaumatic/tags/1.0.2/readme.txt
r2303183 r2378799 5 5 Tested up to: 5.4 6 6 Requires PHP: 5.2 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 70 70 = Where can I get more information? = 71 71 72 Please visit the [official plugin website](https://www.restaumatic.com ) or contact us [here](https://www.restaumatic.com/en/contact/).72 Please visit the [official plugin website](https://www.restaumatic.com/) or contact us [here](https://www.restaumatic.com/en/contact/). 73 73 74 74 == Screenshots == … … 85 85 == Changelog == 86 86 87 = 1.0.2 = 88 * Menu widget URL optimization. 89 87 90 = 1.0.1 = 88 91 * UX improvements. -
wp-restaumatic/tags/1.0.2/wp-restaumatic.php
r2295305 r2378799 16 16 * Plugin URI: https://www.restaumatic.com/en/ordering-system/ 17 17 * Description: Restaumatic Active Menu integration. Fully featured food ordering system for your WordPress website. 18 * Version: 1.0. 118 * Version: 1.0.2 19 19 * Author: Restaumatic 20 20 * Author URI: https://www.restaumatic.com … … 35 35 * Update it as you release new versions. 36 36 */ 37 define( 'WP_RESTAUMATIC_VERSION', '1.0. 1' );37 define( 'WP_RESTAUMATIC_VERSION', '1.0.2' ); 38 38 39 39 /**
Note: See TracChangeset
for help on using the changeset viewer.