Plugin Directory

Changeset 2135058


Ignore:
Timestamp:
08/06/2019 02:36:06 PM (7 years ago)
Author:
reality66
Message:

2.3.2 release

Location:
cart66-cloud/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • cart66-cloud/trunk/cart66-cloud.php

    r2113688 r2135058  
    33Plugin Name: Cart66 Cloud
    44Plugin URI: http://cart66.com
    5 Description: Secure Ecommerce For WordPress.
    6 Version: 2.3.1
     5Description: Ecommerce Without The Clutter
     6Version: 2.3.2
    77Author: Reality66
    88Author URI: http://www.reality66.com
     
    1010-------------------------------------------------------------------------
    1111Cart66 Cloud
    12 Copyright 2017  reality66
     12Copyright 2019  reality66
    1313
    1414This program is free software: you can redistribute it and/or modify
  • cart66-cloud/trunk/includes/class-cc-page-slurp.php

    r1815908 r2135058  
    8181            $title = $new_title;
    8282        }
     83
     84        // Look for All In One SEO plugin and set the title if it's in use
     85        add_filter( 'aioseop_title', function() {
     86            $title_value = cc_get( 'cc_page_title', 'text_field' );
     87            return $title_value;
     88        });
    8389
    8490        CC_Log::write( 'set_page_title result: ' . print_r( $title, true ) );
  • cart66-cloud/trunk/includes/class-cc-product.php

    r2108304 r2135058  
    2727
    2828        foreach($skus as $sku) {
     29            if (strlen($sku) <= 0) {
     30                continue;
     31            }
     32
    2933            $product = new CC_Product();
    3034            $product->update_info( $sku );
  • cart66-cloud/trunk/includes/cloud/class-cc-cloud-product.php

    r2108304 r2135058  
    158158            } else {
    159159                CC_Log::write( "Product search failed: $url :: " . print_r( $response, true ) );
    160                 throw new CC_Exception_API( "Failed to retrieve products from Cart66 Cloud" );
    161160            }
    162161        }
  • cart66-cloud/trunk/readme.txt

    r2113688 r2135058  
    44Tags: ecommerce, e-commerce, shopping, cart, store, cart66, download, digital, downloadable, sell, inventory, shipping, tax, donations products, sales
    55Requires at least: 4.0
    6 Requires PHP: 5.4
    7 Tested up to: 5.2.1
    8 Stable tag: 2.3.1
     6Requires PHP: 7.0
     7Tested up to: 5.2.2
     8Stable tag: 2.3.2
    99License: GPLv3
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    139139== Changelog ==
    140140
     141= 2.3.2 =
     142- New: When All In One SEO is installed, use the aioseop_title hook to set title of slurp page
     143- Fix: Refresh Product Info button sometimes failed when Products didn't have a
     144  product associated with it or an unknown SKU
     145
    141146= 2.3.1 =
    142147- Fix: Issue with product selection when inserting shortcode into page from the
Note: See TracChangeset for help on using the changeset viewer.