Changeset 3384422
- Timestamp:
- 10/25/2025 11:12:03 AM (4 months ago)
- Location:
- library-management-system/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
admin/views/lms/owt7_library_free_vs_pro.php (modified) (1 diff)
-
library-management-system.php (modified) (1 diff)
-
public/class-library-management-system-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
library-management-system/trunk/README.txt
r3383002 r3384422 161 161 22. Pro: All LMS Books on Frontend 162 162 23. Pro: Single Book view Page 163 24. Free: Books listing on Public Page via Shortcode 164 25. Free: Shortcode to Display Books 163 165 164 166 == Frequently Asked Questions == … … 197 199 * Shortcode is available to display books on Frontend 198 200 * Single book page is also available 201 * Added More Plugin Screenshots 202 * Updated "Upgrade to Pro" Screen 199 203 200 204 = 3.2 = -
library-management-system/trunk/admin/views/lms/owt7_library_free_vs_pro.php
r3223054 r3384422 18 18 <h2 class="comparison-title"><?php esc_html_e("Free Version", "library-management-system"); ?></h2> 19 19 <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> 22 22 <li><span class="icon">✔️</span> <?php esc_html_e("Manage Sections (Up to 15)", "library-management-system"); ?></li> 23 23 <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> 25 25 <li><span class="icon">✔️</span> <?php esc_html_e("Manage LMS Users (Up to 15)", "library-management-system"); ?></li> 26 26 <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 43 43 define( 'LIBRARY_MANAGEMENT_SYSTEM_PLUGIN_URL', plugin_dir_url(__FILE__)); 44 44 define( 'LIBRARY_MANAGEMENT_SYSTEM_BASE_NAME', plugin_basename(__FILE__) ); 45 define( 'OWT7_LMS_DEFAULT_SHOW_BOOKS', 6);45 define( 'OWT7_LMS_DEFAULT_SHOW_BOOKS', 10 ); 46 46 define( 'OWT7_LMS_DEFAULT_PAGE_NUMBER', 1 ); 47 47 define( 'LMS_FREE_VERSION_LIMIT', 'NDA=' ); -
library-management-system/trunk/public/class-library-management-system-public.php
r3382981 r3384422 108 108 } 109 109 }else{ 110 111 $books_per_page = 10;110 111 $books_per_page = OWT7_LMS_DEFAULT_SHOW_BOOKS; 112 112 113 113 $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.