Changeset 3438027
- Timestamp:
- 01/12/2026 05:30:59 PM (6 weeks ago)
- Location:
- analogwp-library
- Files:
-
- 6 edited
- 1 copied
-
tags/1.8.0 (copied) (copied from analogwp-library/trunk)
-
tags/1.8.0/analogwp-library.php (modified) (4 diffs)
-
tags/1.8.0/inc/class-utils.php (modified) (1 diff)
-
tags/1.8.0/languages/analogwp-library.pot (modified) (2 diffs)
-
trunk/analogwp-library.php (modified) (4 diffs)
-
trunk/inc/class-utils.php (modified) (1 diff)
-
trunk/languages/analogwp-library.pot (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
analogwp-library/tags/1.8.0/analogwp-library.php
r3423181 r3438027 4 4 * 5 5 * @package AnalogWP/CustomLibrary 6 * @copyright 202 5SmallTownDev6 * @copyright 2026 SmallTownDev 7 7 * @link https://analogwp.com/analogwp-library 8 8 * … … 11 11 * Plugin URI: https://analogwp.com/custom-library-for-elementor 12 12 * Description: Custom Library for Elementor creates the foundation for a design framework that will help you create better, more consistent websites with Elementor. 13 * Version: 1. 7.013 * Version: 1.8.0 14 14 * Author: AnalogWP 15 15 * Author URI: https://analogwp.com/ … … 19 19 * Requires at least: 6.0 20 20 * Requires PHP: 7.4 21 * Elementor tested up to: 3.3 3.622 * Elementor Pro tested up to: 3.3 3.221 * Elementor tested up to: 3.34.1 22 * Elementor Pro tested up to: 3.34.0 23 23 */ 24 24 … … 28 28 define( 'AGWP_LIBRARY_PHP_MINIMUM', '7.4' ); 29 29 define( 'AGWP_LIBRARY_WP_MINIMUM', '6.0' ); 30 define( 'AGWP_LIBRARY_VERSION', '1. 7.0' );30 define( 'AGWP_LIBRARY_VERSION', '1.8.0' ); 31 31 define( 'AGWP_LIBRARY_PLUGIN_FILE', __FILE__ ); 32 32 define( 'AGWP_LIBRARY_PLUGIN_URL', plugin_dir_url( AGWP_LIBRARY_PLUGIN_FILE ) ); -
analogwp-library/tags/1.8.0/inc/class-utils.php
r3393156 r3438027 163 163 // Hide Elementor Library icon. 164 164 $hide_elementor_library_icon = $options->get( 'hide_elementor_template_library' ); 165 $hide_elementor_library_icon = $hide_elementor_library_icon ? 'none ' : 'inherit';165 $hide_elementor_library_icon = $hide_elementor_library_icon ? 'none !important' : ''; 166 166 167 167 $hide_elementor_library_popup = $options->get( 'hide_elementor_library_popup' ); 168 $hide_elementor_library_popup = $hide_elementor_library_popup ? 'none' : 'inherit';168 $hide_elementor_library_popup = $hide_elementor_library_popup ? 'none !important' : ''; 169 169 170 170 $library_popup_style = $options->get( 'library_popup_style' ); 171 171 172 172 $css .= ".elementor-add-template-button { 173 display: {$hide_elementor_library_icon} !important;173 display: {$hide_elementor_library_icon}; 174 174 }"; 175 175 176 176 $css .= " #elementor-template-library-modal.dialog-widget.elementor-templates-modal { 177 display: {$hide_elementor_library_popup} !important;177 display: {$hide_elementor_library_popup}; 178 178 }"; 179 179 -
analogwp-library/tags/1.8.0/languages/analogwp-library.pot
r3423181 r3438027 1 # Copyright (C) 202 5analogwp-library1 # Copyright (C) 2026 analogwp-library 2 2 # This file is distributed under the GPL2 license. 3 3 #: assets/js/app/index.js:1 4 4 msgid "" 5 5 msgstr "" 6 "Project-Id-Version: analogwp-library 1. 7.0\n"6 "Project-Id-Version: analogwp-library 1.8.0\n" 7 7 "Report-Msgid-Bugs-To: AnalogWP <EMAIL>\n" 8 8 "MIME-Version: 1.0\n" … … 10 10 "Content-Type: text/plain; charset=iso-8859-1\n" 11 11 "Plural-Forms: nplurals=2; plural=(n!=1);\n" 12 "POT-Creation-Date: 202 5-12-18T18:40:27.845Z\n"13 "PO-Revision-Date: 202 5-MO-DA HO:MI+ZONE\n"12 "POT-Creation-Date: 2026-01-12T17:30:45.335Z\n" 13 "PO-Revision-Date: 2026-MO-DA HO:MI+ZONE\n" 14 14 "Last-Translator: AnalogWP <EMAIL>\n" 15 15 "Language-Team: AnalogWP <EMAIL>\n" -
analogwp-library/trunk/analogwp-library.php
r3423181 r3438027 4 4 * 5 5 * @package AnalogWP/CustomLibrary 6 * @copyright 202 5SmallTownDev6 * @copyright 2026 SmallTownDev 7 7 * @link https://analogwp.com/analogwp-library 8 8 * … … 11 11 * Plugin URI: https://analogwp.com/custom-library-for-elementor 12 12 * Description: Custom Library for Elementor creates the foundation for a design framework that will help you create better, more consistent websites with Elementor. 13 * Version: 1. 7.013 * Version: 1.8.0 14 14 * Author: AnalogWP 15 15 * Author URI: https://analogwp.com/ … … 19 19 * Requires at least: 6.0 20 20 * Requires PHP: 7.4 21 * Elementor tested up to: 3.3 3.622 * Elementor Pro tested up to: 3.3 3.221 * Elementor tested up to: 3.34.1 22 * Elementor Pro tested up to: 3.34.0 23 23 */ 24 24 … … 28 28 define( 'AGWP_LIBRARY_PHP_MINIMUM', '7.4' ); 29 29 define( 'AGWP_LIBRARY_WP_MINIMUM', '6.0' ); 30 define( 'AGWP_LIBRARY_VERSION', '1. 7.0' );30 define( 'AGWP_LIBRARY_VERSION', '1.8.0' ); 31 31 define( 'AGWP_LIBRARY_PLUGIN_FILE', __FILE__ ); 32 32 define( 'AGWP_LIBRARY_PLUGIN_URL', plugin_dir_url( AGWP_LIBRARY_PLUGIN_FILE ) ); -
analogwp-library/trunk/inc/class-utils.php
r3393156 r3438027 163 163 // Hide Elementor Library icon. 164 164 $hide_elementor_library_icon = $options->get( 'hide_elementor_template_library' ); 165 $hide_elementor_library_icon = $hide_elementor_library_icon ? 'none ' : 'inherit';165 $hide_elementor_library_icon = $hide_elementor_library_icon ? 'none !important' : ''; 166 166 167 167 $hide_elementor_library_popup = $options->get( 'hide_elementor_library_popup' ); 168 $hide_elementor_library_popup = $hide_elementor_library_popup ? 'none' : 'inherit';168 $hide_elementor_library_popup = $hide_elementor_library_popup ? 'none !important' : ''; 169 169 170 170 $library_popup_style = $options->get( 'library_popup_style' ); 171 171 172 172 $css .= ".elementor-add-template-button { 173 display: {$hide_elementor_library_icon} !important;173 display: {$hide_elementor_library_icon}; 174 174 }"; 175 175 176 176 $css .= " #elementor-template-library-modal.dialog-widget.elementor-templates-modal { 177 display: {$hide_elementor_library_popup} !important;177 display: {$hide_elementor_library_popup}; 178 178 }"; 179 179 -
analogwp-library/trunk/languages/analogwp-library.pot
r3423181 r3438027 1 # Copyright (C) 202 5analogwp-library1 # Copyright (C) 2026 analogwp-library 2 2 # This file is distributed under the GPL2 license. 3 3 #: assets/js/app/index.js:1 4 4 msgid "" 5 5 msgstr "" 6 "Project-Id-Version: analogwp-library 1. 7.0\n"6 "Project-Id-Version: analogwp-library 1.8.0\n" 7 7 "Report-Msgid-Bugs-To: AnalogWP <EMAIL>\n" 8 8 "MIME-Version: 1.0\n" … … 10 10 "Content-Type: text/plain; charset=iso-8859-1\n" 11 11 "Plural-Forms: nplurals=2; plural=(n!=1);\n" 12 "POT-Creation-Date: 202 5-12-18T18:40:27.845Z\n"13 "PO-Revision-Date: 202 5-MO-DA HO:MI+ZONE\n"12 "POT-Creation-Date: 2026-01-12T17:30:45.335Z\n" 13 "PO-Revision-Date: 2026-MO-DA HO:MI+ZONE\n" 14 14 "Last-Translator: AnalogWP <EMAIL>\n" 15 15 "Language-Team: AnalogWP <EMAIL>\n"
Note: See TracChangeset
for help on using the changeset viewer.