Changeset 3341911
- Timestamp:
- 08/09/2025 07:08:33 AM (8 months ago)
- Location:
- anant-addons-for-elementor/trunk
- Files:
-
- 3 edited
-
anant-addons-for-elementor.php (modified) (4 diffs)
-
inc/templates/style-1/product-grid-template.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
anant-addons-for-elementor/trunk/anant-addons-for-elementor.php
r3330574 r3341911 5 5 * Author: Anantsites 6 6 * Author URI: https://anantsites.com/ 7 * Version: 1.2. 27 * Version: 1.2.3 8 8 * License: GPLv3 9 9 * License URI: https://opensource.org/licenses/GPL-3.0 … … 11 11 * Domain Path: /languages 12 12 * 13 * Elementor tested up to: 3.3 0.213 * Elementor tested up to: 3.31.1 14 14 * 15 15 */ … … 74 74 define( 'ANANT_PATH', plugin_dir_path( ANANT ) ); 75 75 define( 'ANANT_URL', plugin_dir_url( ANANT ) ); 76 define( 'ANANT_VERSION', '1.2. 2' ); //Plugin Version76 define( 'ANANT_VERSION', '1.2.3' ); //Plugin Version 77 77 define( 'ANANT_MIN_ELEMENTOR_VERSION', '3.0.0' ); //MINIMUM ELEMENTOR Plugin Version 78 78 define( 'ANANT_MIN_PHP_VERSION', '7.4' ); //MINIMUM PHP Plugin Version … … 238 238 } 239 239 add_action( 'plugins_loaded', 'anant_addons_register_function' ); 240 241 function anant_addons_activation() { 242 global $wp_rewrite; 243 $wp_rewrite->set_permalink_structure('/%postname%/'); 244 $wp_rewrite->flush_rules(); 245 } 246 register_activation_hook(__FILE__, 'anant_addons_activation'); 240 247 } 241 248 -
anant-addons-for-elementor/trunk/inc/templates/style-1/product-grid-template.php
r3189221 r3341911 33 33 <?php 34 34 foreach ($products as $product) { 35 if (!is_object($product) || !method_exists($product, 'get_id')) { 36 continue; 37 } 35 38 $product_id = $product->get_id(); 36 39 $terms = get_the_terms( $product_id , 'product_cat' ); -
anant-addons-for-elementor/trunk/readme.txt
r3330574 r3341911 5 5 Requires PHP: 7.4 6 6 Tested up to: 6.8 7 Stable tag: 1.2. 28 Version: 1.2. 27 Stable tag: 1.2.3 8 Version: 1.2.3 9 9 License: GPLv3 or later 10 10 License URI: https://opensource.org/licenses/GPL-3.0 … … 146 146 147 147 == Changelog == 148 = 1.2.3 = 149 * Fixed permalink issue. 148 150 = 1.2.2 = 149 151 * Fixed styling related issues.
Note: See TracChangeset
for help on using the changeset viewer.