Plugin Directory

Changeset 1697860


Ignore:
Timestamp:
07/18/2017 06:08:41 AM (9 years ago)
Author:
benshadle
Message:

adjusting readme and debugging wpmerchant public and adding a bunch of screenshots

Location:
wpmerchant
Files:
16 added
12 edited

Legend:

Unmodified
Added
Removed
  • wpmerchant/trunk/README.txt

    r1697545 r1697860  
    167167== Screenshots ==
    168168
    169 1. WPMerchant General Settings Page
    170 2. WPMerchant Payment Settings Page. Connect to your Stripe Account with One Click.
    171 3. WPMerchant Mailing List Settings Page
    172 4. List of WPMerchant Products
    173 5. WPMerchant Product General Data
    174 6. WPMerchant Product Inventory Data
    175 7. WPMerchant Product Shortcode
     1691. WPMerchant Dropdown Menu
     1702. WPMerchant General Settings Page
     1713. WPMerchant Payment Settings Page. Connect your Stripe Account with One Click!
     1724. WPMerchant Email List Settings Page. Connect your MailChimp Account with One Click!
     1735. WPMerchant After Checkout Settings Page. Set the thank you page you want to redirect users to after purchase.
     1746. List of WPMerchant Products
     1757. WPMerchant Product (on hover). If you click on Edit, you will view the Product Data and Shortcodes.
     1768. WPMerchant Product General Data (visible on WPMerchant Product Edit Page)
     1779. WPMerchant Product Buy Button Shortcode (visible on WPMerchant Product Edit Page)
     17810.WPMerchant Product Buy Form Shortcode (visible on WPMerchant Product Edit Page)
     17911.WPMerchant Product Inventory Data (visible on WPMerchant Product Edit Page)
     18012.WPMerchant Product Email Data (visible on WPMerchant Product Edit Page)
     18113.List of WPMerchant Plans (for recurring billing). *IMPORTANT: Only available with the WPMerchant Professional version
     18214.WPMerchant Plan (on hover). If you click on Edit, you will view the Plan Data and Shortcodes. *IMPORTANT: Only available with the WPMerchant Professional version
     18315. WPMerchant Plan General Data (visible on WPMerchant Plan Edit Page). *IMPORTANT: Only available with the WPMerchant Professional version
     18416. WPMerchant Plan Inventory Data (visible on WPMerchant Plan Edit Page). *IMPORTANT: Only available with the WPMerchant Professional version
     18517. WPMerchant Plan Email Data (visible on WPMerchant Plan Edit Page). *IMPORTANT: Only available with the WPMerchant Professional version
     18618. WPMerchant Plan Pre/Post Data (visible on WPMerchant Plan Edit Page). *IMPORTANT: Only available with the WPMerchant Professional version
     18719. WPMerchant Plan Subscribe Button Shortcode (visible on WPMerchant Plan Edit Page). *IMPORTANT: Only available with the WPMerchant Professional version
     18820. WPMerchant Plan Subscribe Form Shortcode (visible on WPMerchant Plan Edit Page). *IMPORTANT: Only available with the WPMerchant Professional version
     18921. WPMerchant Payment Form Example. *IMPORTANT: Only available with the WPMerchant Professional version
     19022. WPMerchant Payment Button Example.
     19123. This is what appears after clicking on the WPMerchant Payment Button
    176192
    177193== Changelog ==
     194= 2.0.1 =
     195* Debug issue instantiating WPMerchant Admin Class
    178196
    179197= 2.0 =
  • wpmerchant/trunk/admin/class-wpmerchant-admin.php

    r1688170 r1697860  
    202202    function wpmerchant_products_columns($columns) {
    203203        // Remove Author and Comments from Columns and Add Cost, Inventory and Product Id
    204         return array(
     204        unset(
     205            $columns['wpseo-score'],
     206            $columns['wpseo-title'],
     207            $columns['wpseo-metadesc'],
     208            $columns['wpseo-focuskw']
     209        );
     210        return array(
    205211               'cb' => '<input type="checkbox" />',
    206212               'title' => __('Name'),
  • wpmerchant/trunk/includes/class-wpmerchant.php

    r1688173 r1697860  
    88 *
    99 * @link       wpmerchant.com/team
    10  * @since      2.0.0
     10 * @since      1.0.0
    1111 *
    1212 * @package    Wpmerchant
     
    2323 * version of the plugin.
    2424 *
    25  * @since      2.0.0
     25 * @since      1.0.0
    2626 * @package    Wpmerchant
    2727 * @subpackage Wpmerchant/includes
     
    7070
    7171        $this->plugin_name = 'wpmerchant';
    72         $this->version = '2.0.0';
     72        $this->version = '2.0.1';
    7373
    7474        $this->load_dependencies();
  • wpmerchant/trunk/public/class-wpmerchant-public.php

    r1688170 r1697860  
    152152        }
    153153        $currency1 = get_option( $this->plugin_name.'_currency' );
    154         $Wpmerchant_Admin = new Wpmerchant_Admin();
     154        $Wpmerchant_Admin = new Wpmerchant_Admin($this->plugin_name, $this->version);
    155155        $currency2 = $Wpmerchant_Admin->get_currency_details($currency1);
    156156        $currency = $currency2['value'];
     
    902902            return $company_name;
    903903        }
    904     /**
    905      * Change login logo from wordpress to company logo
    906      *
    907      * @since    1.0.0
    908     */
    909     public function wpmerchant_login_page() {
    910         /*background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/images/site-login-logo.png);*/
    911         $logo = get_option('wpmerchant_login_logo');
    912         $primary_bg_color = get_option('wpmerchant_login_primary_color');
    913         //'#ffc200';
    914         $primary_text_color = get_option('wpmerchant_login_btn_text_color');
    915        
    916         //'#fff';
    917         ?><style type="text/css">
    918         <?php if($logo): ?>
    919             .login h1 a {
    920                 background-image: url(<?= $logo ?>);
    921                 padding-bottom: 30px;
    922             }
    923         <?php endif; ?>
    924         <?php if($primary_bg_color): ?>
    925                 body.login div#login form#loginform p.submit input#wp-submit {
    926                     background-color: <?= $primary_bg_color ?>;
    927                     border: 0px;
    928                     box-shadow: none;
    929                 }
    930                 body.login div#login p#backtoblog a:hover {
    931                     color:<?= $primary_bg_color ?>;
    932                 }
    933                 body.login div#login p#nav a:hover {
    934                     color:<?= $primary_bg_color ?>;
    935                 }
    936                 body.login .message {
    937                   border-left: 4px solid <?= $primary_bg_color ?>;
    938               }
    939               form#loginform input:focus {
    940                 border: 1px solid <?= $primary_bg_color ?>;
    941                  box-shadow: none;
    942                 webkit-box-shadow: none;
    943                 /*box-shadow: <?= $primary_bg_color ?> 0px 0px 1px .7px;*/
    944               }
    945           <?php endif; ?>
    946           <?php if($primary_text_color): ?>
    947                 body.login div#login form#loginform p.submit input#wp-submit {
    948                     color: <?= $primary_text_color ?>;
    949                 }
    950           <?php endif; ?>
    951         </style><?php
    952     }
     904   
    953905    /**
    954906     * Ajax Function Run following product purchase
     
    10631015        //use the currency that is included with the form and if unincluded use the default currency
    10641016        $currency1 = get_option( $this->plugin_name.'_currency' );
    1065         $Wpmerchant_Admin = new Wpmerchant_Admin();
     1017        $Wpmerchant_Admin = new Wpmerchant_Admin($this->plugin_name, $this->version);
    10661018        $currency2 = $Wpmerchant_Admin->get_currency_details($currency1);
    10671019        $currency = strtolower($currency2['value']);       
     
    16941646   
    16951647    }
     1648    /**
     1649     * Change login logo from wordpress to company logo
     1650     *
     1651     * @since    1.0.0
     1652    */
     1653    public function wpmerchant_login_page() {
     1654        /*background-image: url(<?php echo get_stylesheet_directory_uri(); ?>/images/site-login-logo.png);*/
     1655        $logo = get_option('wpmerchant_login_logo');
     1656        $primary_bg_color = get_option('wpmerchant_login_primary_color');
     1657        //'#ffc200';
     1658        $primary_text_color = get_option('wpmerchant_login_btn_text_color');
     1659       
     1660        //'#fff';
     1661        ?><style type="text/css">
     1662        <?php if($logo): ?>
     1663            .login h1 a {
     1664                background-image: url(<?= $logo ?>);
     1665                padding-bottom: 30px;
     1666            }
     1667        <?php endif; ?>
     1668        <?php if($primary_bg_color): ?>
     1669                body.login div#login form#loginform p.submit input#wp-submit {
     1670                    background-color: <?= $primary_bg_color ?>;
     1671                    border: 0px;
     1672                    box-shadow: none;
     1673                }
     1674                body.login div#login p#backtoblog a:hover {
     1675                    color:<?= $primary_bg_color ?>;
     1676                }
     1677                body.login div#login p#nav a:hover {
     1678                    color:<?= $primary_bg_color ?>;
     1679                }
     1680                body.login .message {
     1681                  border-left: 4px solid <?= $primary_bg_color ?>;
     1682              }
     1683              form#loginform input:focus {
     1684                border: 1px solid <?= $primary_bg_color ?>;
     1685                 box-shadow: none;
     1686                webkit-box-shadow: none;
     1687                /*box-shadow: <?= $primary_bg_color ?> 0px 0px 1px .7px;*/
     1688              }
     1689          <?php endif; ?>
     1690          <?php if($primary_text_color): ?>
     1691                body.login div#login form#loginform p.submit input#wp-submit {
     1692                    color: <?= $primary_text_color ?>;
     1693                }
     1694          <?php endif; ?>
     1695        </style><?php
     1696    }
    16961697}
  • wpmerchant/trunk/wpmerchant.php

    r1688173 r1697860  
    1010 *
    1111 * @link              wpmerchant.com/team
    12  * @since             2.0.0
     12 * @since             1.0.0
    1313 * @package           Wpmerchant
    1414 *
     
    1717 * Plugin URI:        wpmerchant.com
    1818 * Description:       Start making money by easily and professionally selling anything on your website.
    19  * Version:           2.0.0
     19 * Version:           2.0.1
    2020 * Author:            WPMerchant
    21  * Author URI:        wpmerchant.com/team
     21 * Author URI:        wpmerchant.com/pricing
    2222 * Text Domain:       wpmerchant
    2323 * Domain Path:       /languages
Note: See TracChangeset for help on using the changeset viewer.