Changeset 1163444
- Timestamp:
- 05/19/2015 03:28:01 PM (11 years ago)
- Location:
- lazyload-woocommerce
- Files:
-
- 2 edited
-
tags/1.0/lazyload-woocommerce.php (modified) (3 diffs)
-
trunk/lazyload-woocommerce.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lazyload-woocommerce/tags/1.0/lazyload-woocommerce.php
r1163402 r1163444 2 2 3 3 /* 4 Plugin Name: LazyLoad WooCommerce5 Plugin URI: 6 Description: LazyLoad WooCommerce includes the functionality to properly append LazyLoad into the image loop for WooCommerce in product listings (i.e. category). This does not apply to the individual product image, but anywhere they are used in the loop (by default, the unordered list). Includes a fallback if JavaScript is not active. Does not call in jQuery (you must have this already in use).4 Plugin Name: LazyLoad for WooCommerce 5 Plugin URI: https://wordpress.org/plugins/lazyload-woocommerce/ 6 Description: LazyLoad for WooCommerce includes the functionality to properly append LazyLoad into the image loop for WooCommerce in product listings (i.e. category). This does not apply to the individual product image, but anywhere they are used in the loop (by default, the unordered list). Includes a fallback if JavaScript is not active. Does not call in jQuery (you must have this already in use). 7 7 Version: 1.0.0 8 8 Author: Edge Webware … … 37 37 38 38 function lazyload_woo_add_section($sections) { 39 $sections['lazywoo'] = __('Lazy Load', 'lazyload-woo');39 $sections['lazywoo'] = __('LazyLoad', 'lazyload-woo'); 40 40 return $sections; 41 41 } … … 47 47 $settings_slider = array(); 48 48 // Add Title to the Settings 49 $settings_slider[] = array('name' => __('Lazy Load Image Settings', 'lazyload-woo'), 'type' => 'title', 'desc' => __('The following options are used to configure LazyLoad for WooCommerce. It is recommended that these match your set catalog image dimensions under Display.', 'lazyload-woo'), 'id' => 'lazywoo');49 $settings_slider[] = array('name' => __('LazyLoad Image Settings', 'lazyload-woo'), 'type' => 'title', 'desc' => __('The following options are used to configure LazyLoad for WooCommerce. It is recommended that these match your set catalog image dimensions under Display.', 'lazyload-woo'), 'id' => 'lazywoo'); 50 50 // Add first checkbox option 51 51 $settings_slider[] = array( -
lazyload-woocommerce/trunk/lazyload-woocommerce.php
r1163402 r1163444 2 2 3 3 /* 4 Plugin Name: LazyLoad WooCommerce5 Plugin URI: 6 Description: LazyLoad WooCommerce includes the functionality to properly append LazyLoad into the image loop for WooCommerce in product listings (i.e. category). This does not apply to the individual product image, but anywhere they are used in the loop (by default, the unordered list). Includes a fallback if JavaScript is not active. Does not call in jQuery (you must have this already in use).4 Plugin Name: LazyLoad for WooCommerce 5 Plugin URI: https://wordpress.org/plugins/lazyload-woocommerce/ 6 Description: LazyLoad for WooCommerce includes the functionality to properly append LazyLoad into the image loop for WooCommerce in product listings (i.e. category). This does not apply to the individual product image, but anywhere they are used in the loop (by default, the unordered list). Includes a fallback if JavaScript is not active. Does not call in jQuery (you must have this already in use). 7 7 Version: 1.0.0 8 8 Author: Edge Webware … … 37 37 38 38 function lazyload_woo_add_section($sections) { 39 $sections['lazywoo'] = __('Lazy Load', 'lazyload-woo');39 $sections['lazywoo'] = __('LazyLoad', 'lazyload-woo'); 40 40 return $sections; 41 41 } … … 47 47 $settings_slider = array(); 48 48 // Add Title to the Settings 49 $settings_slider[] = array('name' => __('Lazy Load Image Settings', 'lazyload-woo'), 'type' => 'title', 'desc' => __('The following options are used to configure LazyLoad for WooCommerce. It is recommended that these match your set catalog image dimensions under Display.', 'lazyload-woo'), 'id' => 'lazywoo');49 $settings_slider[] = array('name' => __('LazyLoad Image Settings', 'lazyload-woo'), 'type' => 'title', 'desc' => __('The following options are used to configure LazyLoad for WooCommerce. It is recommended that these match your set catalog image dimensions under Display.', 'lazyload-woo'), 'id' => 'lazywoo'); 50 50 // Add first checkbox option 51 51 $settings_slider[] = array(
Note: See TracChangeset
for help on using the changeset viewer.