Plugin Directory

Changeset 1163444


Ignore:
Timestamp:
05/19/2015 03:28:01 PM (11 years ago)
Author:
edgewebware
Message:

Improved text for the plugins legibility (cohesive). Not a major update

Location:
lazyload-woocommerce
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • lazyload-woocommerce/tags/1.0/lazyload-woocommerce.php

    r1163402 r1163444  
    22
    33/*
    4   Plugin Name: LazyLoad WooCommerce
    5   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).
    77  Version: 1.0.0
    88  Author: Edge Webware
     
    3737
    3838function lazyload_woo_add_section($sections) {
    39     $sections['lazywoo'] = __('Lazy Load', 'lazyload-woo');
     39    $sections['lazywoo'] = __('LazyLoad', 'lazyload-woo');
    4040    return $sections;
    4141}
     
    4747        $settings_slider = array();
    4848        // 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 Lazy Load 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');
    5050        // Add first checkbox option
    5151        $settings_slider[] = array(
  • lazyload-woocommerce/trunk/lazyload-woocommerce.php

    r1163402 r1163444  
    22
    33/*
    4   Plugin Name: LazyLoad WooCommerce
    5   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).
    77  Version: 1.0.0
    88  Author: Edge Webware
     
    3737
    3838function lazyload_woo_add_section($sections) {
    39     $sections['lazywoo'] = __('Lazy Load', 'lazyload-woo');
     39    $sections['lazywoo'] = __('LazyLoad', 'lazyload-woo');
    4040    return $sections;
    4141}
     
    4747        $settings_slider = array();
    4848        // 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 Lazy Load 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');
    5050        // Add first checkbox option
    5151        $settings_slider[] = array(
Note: See TracChangeset for help on using the changeset viewer.