Changeset 3464418
- Timestamp:
- 02/18/2026 02:40:38 PM (3 weeks ago)
- Location:
- short-description-and-attribute-show-loop-for-woocommerce/trunk
- Files:
-
- 4 edited
-
includes/GMWPDL_Admin.php (modified) (1 diff)
-
includes/GMWPDL_Frontend.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
short-description-and-attribute-show-loop-for-woocommerce.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
short-description-and-attribute-show-loop-for-woocommerce/trunk/includes/GMWPDL_Admin.php
r3429415 r3464418 49 49 'nonce' => wp_create_nonce('wp_rest'), 50 50 'moreplugin' => rest_url('gmwpdl/v1/moreplugin'), 51 'getsettings' => add_query_arg('rand', rand(), rest_url('gmwpdl/v1/get-settings')),51 'getsettings' => add_query_arg('rand', wp_rand(), rest_url('gmwpdl/v1/get-settings')), 52 52 'savedata' => rest_url('gmwpdl/v1/save-settings'), 53 53 'gmwpdl_translation' => $gmwpdl_translation, -
short-description-and-attribute-show-loop-for-woocommerce/trunk/includes/GMWPDL_Frontend.php
r3384626 r3464418 244 244 245 245 if ( $stock_quantity !== null ) { 246 echo esc_html( $stock_quantity ) . ' ' . esc_html__( 'in stock', ' woocommerce' );246 echo esc_html( $stock_quantity ) . ' ' . esc_html__( 'in stock', 'short-description-and-attribute-show-loop-for-woocommerce' ); 247 247 } else { 248 248 if ( $product->is_in_stock() ) { 249 echo esc_html__( 'In stock', ' woocommerce' );250 } else { 251 echo esc_html__( 'Out of stock', ' woocommerce' );249 echo esc_html__( 'In stock', 'short-description-and-attribute-show-loop-for-woocommerce' ); 250 } else { 251 echo esc_html__( 'Out of stock', 'short-description-and-attribute-show-loop-for-woocommerce' ); 252 252 } 253 253 } -
short-description-and-attribute-show-loop-for-woocommerce/trunk/readme.txt
r3429415 r3464418 2 2 Tags: display product details, product detail in product loop, product loop customization 3 3 Tested up to: 6.9 4 Stable tag: 2.04 Stable tag: 4.0 5 5 Requires PHP: 5.0 6 6 License: GPLv2 or later -
short-description-and-attribute-show-loop-for-woocommerce/trunk/short-description-and-attribute-show-loop-for-woocommerce.php
r3429415 r3464418 3 3 * Plugin Name: Product Description and Attributes Loop For Woocommerce 4 4 * Description: Show Description On shop and category page 5 * Version: 2.05 * Version: 4.0 6 6 * Author: Gravity Master 7 7 * License: GPLv2 or later
Note: See TracChangeset
for help on using the changeset viewer.