Plugin Directory

Changeset 3384422


Ignore:
Timestamp:
10/25/2025 11:12:03 AM (4 months ago)
Author:
owthub
Message:

Updated "Upgrade to Pro" Screen

Location:
library-management-system/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • library-management-system/trunk/README.txt

    r3383002 r3384422  
    16116122. Pro: All LMS Books on Frontend
    16216223. Pro: Single Book view Page
     16324. Free: Books listing on Public Page via Shortcode
     16425. Free: Shortcode to Display Books
    163165
    164166== Frequently Asked Questions ==
     
    197199* Shortcode is available to display books on Frontend
    198200* Single book page is also available
     201* Added More Plugin Screenshots
     202* Updated "Upgrade to Pro" Screen
    199203
    200204= 3.2 =
  • library-management-system/trunk/admin/views/lms/owt7_library_free_vs_pro.php

    r3223054 r3384422  
    1818                    <h2 class="comparison-title"><?php esc_html_e("Free Version", "library-management-system"); ?></h2>
    1919                    <ul class="feature-list">
    20                         <li><span class="icon">✔️</span> <?php esc_html_e("Manage Categories (Up to 5)", "library-management-system"); ?></li>
    21                         <li><span class="icon">✔️</span> <?php esc_html_e("Manage Bookcases (Up to 5)", "library-management-system"); ?></li>
     20                        <li><span class="icon">✔️</span> <?php esc_html_e("Manage Categories (Up to ".base64_decode(LMS_FREE_VERSION_LIMIT).")", "library-management-system"); ?></li>
     21                        <li><span class="icon">✔️</span> <?php esc_html_e("Manage Bookcases (Up to ".base64_decode(LMS_FREE_VERSION_LIMIT).")", "library-management-system"); ?></li>
    2222                        <li><span class="icon">✔️</span> <?php esc_html_e("Manage Sections (Up to 15)", "library-management-system"); ?></li>
    2323                        <li><span class="icon">✔️</span> <?php esc_html_e("Manage Books (Up to 15)", "library-management-system"); ?></li>
    24                         <li><span class="icon">✔️</span> <?php esc_html_e("Manage User Branches (Up to 5)", "library-management-system"); ?></li>
     24                        <li><span class="icon">✔️</span> <?php esc_html_e("Manage User Branches (Up to ".base64_decode(LMS_FREE_VERSION_LIMIT).")", "library-management-system"); ?></li>
    2525                        <li><span class="icon">✔️</span> <?php esc_html_e("Manage LMS Users (Up to 15)", "library-management-system"); ?></li>
    2626                        <li><span class="icon">✔️</span> <?php esc_html_e("Borrow a Single Book", "library-management-system"); ?></li>
  • library-management-system/trunk/library-management-system.php

    r3382981 r3384422  
    4343define( 'LIBRARY_MANAGEMENT_SYSTEM_PLUGIN_URL', plugin_dir_url(__FILE__));
    4444define( 'LIBRARY_MANAGEMENT_SYSTEM_BASE_NAME', plugin_basename(__FILE__) );
    45 define( 'OWT7_LMS_DEFAULT_SHOW_BOOKS', 6 );
     45define( 'OWT7_LMS_DEFAULT_SHOW_BOOKS', 10 );
    4646define( 'OWT7_LMS_DEFAULT_PAGE_NUMBER', 1 );
    4747define( 'LMS_FREE_VERSION_LIMIT', 'NDA=' );
  • library-management-system/trunk/public/class-library-management-system-public.php

    r3382981 r3384422  
    108108            }
    109109        }else{
    110            
    111             $books_per_page = 10;
     110             
     111            $books_per_page = OWT7_LMS_DEFAULT_SHOW_BOOKS;
    112112
    113113            $current_page = isset($_GET['p_no']) ? (int)$_GET['p_no'] : OWT7_LMS_DEFAULT_PAGE_NUMBER;
Note: See TracChangeset for help on using the changeset viewer.