Plugin Directory

Changeset 3324462


Ignore:
Timestamp:
07/08/2025 03:59:07 PM (9 months ago)
Author:
sjcope
Message:

update documentation

Location:
consignment-store-for-woocommerce
Files:
58 added
5 edited

Legend:

Unmodified
Added
Removed
  • consignment-store-for-woocommerce/trunk/README.txt

    r3312681 r3324462  
    44Tags: consignment store, consignment for WooCommerce
    55Tested up to: 6.8
    6 Stable tag: 2.1
     6Stable tag: 2.2
    77License: GPLv2
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    44441. Move the folder "cws-consignment" to the "wp-content/plugins/" directory of your WordPress installation, e.g. via FTP.
    45451. Activate the plugin "CWS Consignment Store" on the "Plugins" screen of your WordPress Dashboard.
    46 1. Create a page for potential Sellers to submit their items and add the shortcode [cwscs_additemform]
     461. Create a page for potential Sellers to submit their items and add the shortcode [additemform]
    47471. Review the submitted items in the WordPress admin area.
    4848
     
    5555= How do I add a SKU to the item? =
    5656
    57 If you are logged in to your site, go to the page where you have included the [cwscs_additemform] shortcode and you will see SKU as the first input field.
     57If you are logged in to your site, go to the page where you have included the [additemform] shortcode and you will see SKU as the first input field.
    5858
    5959= Do SKU's have to be unique? =
     
    7575
    7676== Changelog ==
     77= 2.2 =
     78* Fix documentation regarding shortcode. 
     79
    7780= 2.1 =
    7881* Cleanup and update old code. Add more warning and error messages to image uploads. 
     
    145148
    146149== Upgrade Notice ==
     150= 2.2 =
     151* Fix documentation regarding shortcode. Update as soon as possible.
     152
    147153= 2.1 =
    148154* Cleanup and update old code. Add more warning and error messages to image uploads. Update as soon as convenient.
  • consignment-store-for-woocommerce/trunk/admin/class-cws-consignment-admin.php

    r3312681 r3324462  
    5353        $this->plugin_name = $cws_consignment;
    5454        $this->version = $version;
    55         add_action( 'init', array( $this, 'init_ajax' ), 20 );
    5655    }
    5756
     
    9897    }
    9998    public function init_ajax() {
    100         add_shortcode( 'cwscs_additemform', array($this, 'additemform_func') );
     99        //add_shortcode( 'cwscs_additemform', array($this, 'additemform_func') );
    101100    }
    102101    // Log errors
  • consignment-store-for-woocommerce/trunk/admin/partials/cws-consignment-admin-display.php

    r3312681 r3324462  
    533533        <ol>
    534534        <li>Create a page</li>
    535         <li>Add shortcode <pre>[cwscs_additemform]</pre></li>
     535        <li>Add shortcode <pre>[additemform]</pre></li>
    536536        <li>That is it!</li>
    537537        </ol>
  • consignment-store-for-woocommerce/trunk/cws-consignment.php

    r3312681 r3324462  
    1919 * Requires at least: 6.3
    2020 * Requires PHP:      8.0
    21  * Version:           2.1
     21 * Version:           2.2
    2222 * Author:            Charlene's Web Services
    2323 * Author URI:        https://charlenesweb.ca
     
    3636 * First release 1.0.0 and then using SemVer - https://semver.org X.Y.Z (Major.Minor.Patch)
    3737 */
    38 define( 'CWS_CONSIGNMENT_VERSION', '2.1' );
     38define( 'CWS_CONSIGNMENT_VERSION', '2.2' );
    3939define('CWSCS_SRC_DIR', dirname(__FILE__) );
    4040/**
  • consignment-store-for-woocommerce/trunk/includes/class-cws-consignment.php

    r3312681 r3324462  
    7272            $this->version = CWS_CONSIGNMENT_VERSION;
    7373        } else {
    74             $this->version = '2.1';
     74            $this->version = '2.2';
    7575        }
    7676        $this->plugin_name = 'cws-consignment';
Note: See TracChangeset for help on using the changeset viewer.