Plugin Directory

Changeset 3053576


Ignore:
Timestamp:
03/18/2024 01:51:04 PM (2 years ago)
Author:
modelthemes
Message:

version 1.0.3

Location:
qrmenu-lite
Files:
516 added
2 edited

Legend:

Unmodified
Added
Removed
  • qrmenu-lite/trunk/qrmenu-lite.php

    r3035673 r3053576  
    44 * Plugin URI:        https://qrmenu.modeltheme.com/qrmenu-lite/
    55 * Description:       The Lite version of our Restaurant QR Menu Generator
    6  * Version:           1.0.2
     6 * Version:           1.0.3
    77 * Requires at least: 4.6
    88 * Tested up to:      6.4.3
     
    2828}
    2929
     30
     31
     32
     33
    3034define('QRLITE_PLUGIN_FILE', __FILE__);
    3135DEFINE('QRLITE_PLUGIN_URL', plugin_dir_url( __FILE__ ));
     
    5256require_once('view/frontend.parts.php');
    5357require_once( 'inc/functions-admin.php' );
     58
     59
     60// Code for plugins
     61function qrlite_plugin_activate() {
     62    // register taxonomies/post types here
     63    flush_rewrite_rules();
     64}
     65register_activation_hook( __FILE__, 'qrlite_plugin_activate' );
     66
     67function qrlite_plugin_deactivate() {
     68    flush_rewrite_rules();
     69}
     70register_deactivation_hook( __FILE__, 'qrlite_plugin_deactivate' );
     71
    5472
    5573add_action( 'init', 'qrlite_load_textdomain' );
  • qrmenu-lite/trunk/readme.txt

    r3049187 r3053576  
    11=== QRMenu Restaurant QR Menu Lite ===
    22Contributors: modelthemes, cristianstaan
    3 Tags: digital menu, menu generator, online menu, online qr menu, qr code, qr menu builder, qr menu generator, qr scan, qr menu
     3Tags: digital menu, online qr menu, qr menu builder, qr menu generator, qr menu
    44Donate link: https://modeltheme.com/
    55Requires at least: 4.6
    66Tested up to: 6.4.3
    77Requires PHP: 7.0
    8 Stable tag: 1.0.2
     8Stable tag: 1.0.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1111
    12 QRMenu Lite is an advanced online menu tool for restaurants, cafes, bars, and various other food establishments to effortlessly craft and administer digital menus right on your websites.
     12QRMenu Lite is an advanced online menu tool for restaurants and other food establishments to manage digital menus right on your websites.
    1313
    1414== Description ==
     
    103103== Frequently Asked Questions ==
    104104
     105= The menu page returns 404 error. How to solve it? =
     106
     107Go to Settings - Permalinks and hit the Save button, to reset the permalinks. This will solve the problem.
     108
    105109= How do I install QRMenu Lite? =
    106110
Note: See TracChangeset for help on using the changeset viewer.