Plugin Directory

Changeset 1988358


Ignore:
Timestamp:
12/07/2018 10:25:35 PM (7 years ago)
Author:
defcronyke
Message:

Update the installation instructions in readme.txt to make the setup process more clear. Add Storefront css fix to FAQ.

Location:
shipping-canada-post-woocommerce
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • shipping-canada-post-woocommerce/trunk/readme.txt

    r1987442 r1988358  
    66Tested up to: 5.0
    77Requires PHP: 5.6
    8 Stable tag: 0.1.4
     8Stable tag: 0.1.5
    99License: GPLv3 or later License
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    2525You can specify that certain items should stack together, saving space in the box and leading to much more accurate estimates.
    2626
     27It shows the customer the estimated number of days it will take for the item to ship, and you can add extra handling time that will increase the estimates if needed.
     28
    2729Gives a more accurate estimate than any other free WooCommerce Canada Post shipping plugin we could find.
    2830
     
    31332. The settings will be available in "WooCommerce -> Settings -> Shipping -> Shipping Canada Post WooCommerce".
    32343. Make some shipping zones, and add "Shipping Canada Post WooCommerce" as the shipping method.
     354. Add some boxes and set their dimensions and weight properties on the plugin settings page (see FAQ for instructions).
     365. Read the FAQ for info about more features that are available.
     376. If there are any price calculation issues, try enabling "Debug mode" in "WooCommerce -> Settings -> Shipping -> Shipping options". It will bypass the cache and give a fresh price calculation every time.
    3338
    3439== Frequently Asked Questions ==
     
    4247Make a new global product attribute with the slug "stackable", and add an item to it for each product that can stack. For example, if you have two different sizes of hats that can each stack with their own size, you would make two items, and maybe call them "small hat 1" and "medium hat 1". Next, edit a product, go to "Product data -> Attributes". You should see the attribute name in bold there of the global attribute you made with the slug "stackable". If not, you can add it from the "Custom product attribute" dropdown menu. Next, expand the attribute by clicking on its name in bold. Now simply add one of the values you made to the Value(s) box, and that item will now stack with any other item that has that value. Note that only one stackable value is currently supported per item.
    4348
     49= I am using the Storefront theme, and the shipping estimate section on the checkout page is too narrow. How can I fix that to make it look better? =
     50Make a child theme of Storefront (using instructions from the WordPress Codex, or using some plugin), and make sure you switch your active theme to the new child theme. Then add this to the child theme's style.css file:
     51```css
     52/* Fix Storefront checkout table display. It was too narrow. */
     53table.woocommerce-checkout-review-order-table .product-name {
     54  width: unset;
     55}
     56```
     57
    4458== Screenshots ==
    45591. The plugin settings page.
    4660
    4761== Changelog ==
     62= 0.1.5 =
     63* Update the installation instructions in readme.txt to make the setup process more clear. Add Storefront css fix to FAQ.
     64
    4865= 0.1.4 =
    4966* Update the readme.txt file, and fix the default values for box dimensions in the settings.
  • shipping-canada-post-woocommerce/trunk/shipping-canada-post-woocommerce.php

    r1987442 r1988358  
    33 * Plugin Name: Shipping Canada Post WooCommerce
    44 * Description: Use Canada Post shipping with WooCommerce. Provides some of the premium features from other similar plugins for free.
    5  * Version: 0.1.4
     5 * Version: 0.1.5
    66 * Author: Jeremy Carter and Daphne Volante
    77 * Author URI: https://eternalvoid.net
Note: See TracChangeset for help on using the changeset viewer.