Plugin Directory

Changeset 2523067


Ignore:
Timestamp:
04/29/2021 03:28:16 AM (5 years ago)
Author:
affiliatebridge
Message:

Version 1.0.1

Location:
affiliate-bridge
Files:
14 edited
1 copied

Legend:

Unmodified
Added
Removed
  • affiliate-bridge/tags/1.0.1/README.md

    r2506137 r2523067  
    11# Affiliate Bridge
    2 > Effortlessly show affiliate items in your site.
     2> Easily add product images from affiliate programs using shortcodes.
    33
    44Affiliate Bridge allows you to effortlessly integrate affiliated items (only from ebay for now) in your site.
     
    4444## Shortcode props
    4545
    46 1. items - number of items to show. example: [affiliate-bridge items="4"] (default = 1)
    47 2. size - image size. options are: `small` | `medium` | `large`. example: [affiliate-bridge size="small"] (default = large)
    48 3. keywords - add search keywords (with spaces and other special characters). used to override the default you set in admin. example [affiliate-bridge keywords="baseball cards"]
    49 4. framed - choose what kind of image frame to use.  example [affiliate-bridge framed="C"]. (you can also use `affiliate_bridge_image_style_override_custom` filter to use you own customized css)
    50 5. categories - ddd Category IDs, separated by a comma. Download eBay Categories. example [affiliate-bridge keywords="baseball cards"]
    51 6. condition - product condition. options are `All` | `New` | `Used`. example [affiliate-bridge condition="Used"] (default is `All`)
    52 7. defimage - link to default image. example [affiliate-bridge condition="https://example.com/wp-content/uploads/08/20/my-cool-image.png"] (default is `All`)
     461. items - number of items to show. example: `[affiliate-bridge items="4"]` (default = 1)
     472. size - image size. options are: `small` | `medium` | `large`. example: `[affiliate-bridge size="small"]` (default = large)
     483. keywords - add search keywords (with spaces and other special characters). used to override the default you set in admin. example `[affiliate-bridge keywords="baseball cards"]`
     494. framed - choose what kind of image frame to use.  example `[affiliate-bridge framed="C"]`. (you can also use `affiliate_bridge_image_style_override_custom` filter to use you own customized css)
     505. categories - ddd Category IDs, separated by a comma. Download eBay Categories. example `[affiliate-bridge categories="213"]`
     516. condition - product condition. options are `All` | `New` | `Used`. example `[affiliate-bridge condition="Used"]` (default is `All`)
     527. defimage - link to default image. example `[affiliate-bridge defimage="https://example.com/wp-content/uploads/08/20/my-cool-image.png"]` (default is `All`)
    53538. source - currently no use. will be added in future versions.
    5454
     
    7575## Change log
    7676
     77* 1.0.1
     78    * Fixed error with shortcode not being recognized
     79    * Fixed image width issue in Chrome-based browsers
     80
     81
    7782* 1.0.0
    7883    * Initial Release
  • affiliate-bridge/tags/1.0.1/affiliate-bridge.php

    r2506137 r2523067  
    33 * Plugin Name: Affiliate Bridge
    44 * Plugin URI:  https://affiliate-bridge.com
    5  * Description: Affiliate Bridge allows you to effortlessly integrate affiliated items (only from ebay for now) in your site
    6  * Version:     1.0.0
     5 * Description: Easily add product images from affiliate programs using shortcodes.
     6 * Version:     1.0.1
    77 * Author:      David Lidor
    88 * Author URI:  https://www.bicycle-riding.com
     
    4848
    4949            // Add plugin shortcode
    50             add_shortcode('affiliate_bridge', [$this, 'affiliate_bridge_output']);
     50            add_shortcode('affiliate-bridge', [$this, 'affiliate_bridge_output']);
    5151
    5252            $this->add_actions();
  • affiliate-bridge/tags/1.0.1/assets/css/styles.css

    r2506137 r2523067  
    2222    margin: 5px auto 5px auto;
    2323    display: block;
     24    max-width: 100%;
    2425}
  • affiliate-bridge/tags/1.0.1/includes/frontend/empty-single.php

    r2506137 r2523067  
    3131            alt="<?php echo __('Default Image', 'affiliate-bridge'); ?>"
    3232            title="<?php echo __('Default Image', 'affiliate-bridge'); ?>"
     33            class="ab-tbl-image"
     34
    3335    />
    3436</div>
  • affiliate-bridge/tags/1.0.1/includes/frontend/multi-table.php

    r2506137 r2523067  
    6868                            alt="<?php echo esc_attr($alt); ?>"
    6969                            title="<?php echo esc_attr($alt) ?>"
     70                            class="ab-tbl-image"
    7071                    />
    7172                </a></td>
  • affiliate-bridge/tags/1.0.1/includes/frontend/single.php

    r2506137 r2523067  
    5454                alt="<?php echo esc_attr($alt); ?>"
    5555                title="<?php echo esc_attr($alt); ?>"
     56                class="ab-tbl-image"
    5657        >
    5758    </a>
  • affiliate-bridge/tags/1.0.1/readme.txt

    r2506137 r2523067  
    11=== Affiliate Bridge ===
    2 Contributors: affiliatebridge, David Lidor, stevorated
     2Contributors: affiliatebridge, David Lidor, stevorated, mattheufarmer
    33Donate link: https://affiliate-bridge.com
    44Tags: affiliate, ebay, bridge
    55Requires at least: 5.0.0
    6 Tested up to: 5.6.2
     6Tested up to: 5.7.1
    77Requires PHP: 7.2
    8 Stable tag: 1.0.0
     8Stable tag: 1.0.1
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
     
    29293. Set the default shortcode search attributes (i.e Keyword, category, condition, number of items etc.)
    30304. Set the `main affiliate` account. to see what `main` means, check out `Revenue Sharing Model` section.
    31 5. Use the short code [affiliate-bridge] to show affiliated products.
     315. Use the short code `[affiliate-bridge]` to show affiliated products.
    32326. You can use the shortcode with the default settings, or override the defaults with shortcode props.
    33337. Paste the code anywhere in your site
     
    5656== Shortcode props ==
    5757
    58 1. items - number of items to show. example: [affiliate-bridge items="4"] (default = 1)
    59 2. size - image size. options are: `small` | `medium` | `large`. example: [affiliate-bridge size="small"] (default = large)
    60 3. keywords - add search keywords (with spaces and other special characters). used to override the default you set in admin. example [affiliate-bridge keywords="baseball cards"]
    61 4. framed - choose what kind of image frame to use.  example [affiliate-bridge framed="C"]. (you can also use `affiliate_bridge_image_style_override_custom` filter to use you own customized css)
    62 5. categories - ddd Category IDs, separated by a comma. Download eBay Categories. example [affiliate-bridge keywords="baseball cards"]
    63 6. condition - product condition. options are `All` | `New` | `Used`. example [affiliate-bridge condition="Used"] (default is `All`)
    64 7. defimage - link to default image. example [affiliate-bridge condition="https://example.com/wp-content/uploads/08/20/my-cool-image.png"] (default is `All`)
     581. items - number of items to show. example: `[affiliate-bridge items="4"]` (default = 1)
     592. size - image size. options are: `small` | `medium` | `large`. example: `[affiliate-bridge size="small"]` (default = large)
     603. keywords - add search keywords (with spaces and other special characters). used to override the default you set in admin. example `[affiliate-bridge keywords="baseball cards"]`
     614. framed - choose what kind of image frame to use.  example `[affiliate-bridge framed="C"]`. (you can also use `affiliate_bridge_image_style_override_custom` filter to use you own customized css)
     625. categories - ddd Category IDs, separated by a comma. Download eBay Categories. example `[affiliate-bridge categories="213"]`
     636. condition - product condition. options are `All` | `New` | `Used`. example `[affiliate-bridge condition="Used"]` (default is `All`)
     647. defimage - link to default image. example `[affiliate-bridge defimage="https://example.com/wp-content/uploads/08/20/my-cool-image.png"]` (default is `All`)
    65658. source - currently no use. will be added in future versions.
    6666
     
    8686== Changelog ==
    8787
     88= 1.0.1 - Apr 28 2021 =
     89* Fixed error with shortcode not being recognized
     90* Fixed image width issue in Chrome-based browsers
     91
    8892= 1.0.0 - Mar 13 2021 =
    8993* Initial Release
  • affiliate-bridge/trunk/README.md

    r2506137 r2523067  
    11# Affiliate Bridge
    2 > Effortlessly show affiliate items in your site.
     2> Easily add product images from affiliate programs using shortcodes.
    33
    44Affiliate Bridge allows you to effortlessly integrate affiliated items (only from ebay for now) in your site.
     
    4444## Shortcode props
    4545
    46 1. items - number of items to show. example: [affiliate-bridge items="4"] (default = 1)
    47 2. size - image size. options are: `small` | `medium` | `large`. example: [affiliate-bridge size="small"] (default = large)
    48 3. keywords - add search keywords (with spaces and other special characters). used to override the default you set in admin. example [affiliate-bridge keywords="baseball cards"]
    49 4. framed - choose what kind of image frame to use.  example [affiliate-bridge framed="C"]. (you can also use `affiliate_bridge_image_style_override_custom` filter to use you own customized css)
    50 5. categories - ddd Category IDs, separated by a comma. Download eBay Categories. example [affiliate-bridge keywords="baseball cards"]
    51 6. condition - product condition. options are `All` | `New` | `Used`. example [affiliate-bridge condition="Used"] (default is `All`)
    52 7. defimage - link to default image. example [affiliate-bridge condition="https://example.com/wp-content/uploads/08/20/my-cool-image.png"] (default is `All`)
     461. items - number of items to show. example: `[affiliate-bridge items="4"]` (default = 1)
     472. size - image size. options are: `small` | `medium` | `large`. example: `[affiliate-bridge size="small"]` (default = large)
     483. keywords - add search keywords (with spaces and other special characters). used to override the default you set in admin. example `[affiliate-bridge keywords="baseball cards"]`
     494. framed - choose what kind of image frame to use.  example `[affiliate-bridge framed="C"]`. (you can also use `affiliate_bridge_image_style_override_custom` filter to use you own customized css)
     505. categories - ddd Category IDs, separated by a comma. Download eBay Categories. example `[affiliate-bridge categories="213"]`
     516. condition - product condition. options are `All` | `New` | `Used`. example `[affiliate-bridge condition="Used"]` (default is `All`)
     527. defimage - link to default image. example `[affiliate-bridge defimage="https://example.com/wp-content/uploads/08/20/my-cool-image.png"]` (default is `All`)
    53538. source - currently no use. will be added in future versions.
    5454
     
    7575## Change log
    7676
     77* 1.0.1
     78    * Fixed error with shortcode not being recognized
     79    * Fixed image width issue in Chrome-based browsers
     80
     81
    7782* 1.0.0
    7883    * Initial Release
  • affiliate-bridge/trunk/affiliate-bridge.php

    r2506137 r2523067  
    33 * Plugin Name: Affiliate Bridge
    44 * Plugin URI:  https://affiliate-bridge.com
    5  * Description: Affiliate Bridge allows you to effortlessly integrate affiliated items (only from ebay for now) in your site
    6  * Version:     1.0.0
     5 * Description: Easily add product images from affiliate programs using shortcodes.
     6 * Version:     1.0.1
    77 * Author:      David Lidor
    88 * Author URI:  https://www.bicycle-riding.com
     
    4848
    4949            // Add plugin shortcode
    50             add_shortcode('affiliate_bridge', [$this, 'affiliate_bridge_output']);
     50            add_shortcode('affiliate-bridge', [$this, 'affiliate_bridge_output']);
    5151
    5252            $this->add_actions();
  • affiliate-bridge/trunk/assets/css/styles.css

    r2506137 r2523067  
    2222    margin: 5px auto 5px auto;
    2323    display: block;
     24    max-width: 100%;
    2425}
  • affiliate-bridge/trunk/includes/frontend/empty-single.php

    r2506137 r2523067  
    3131            alt="<?php echo __('Default Image', 'affiliate-bridge'); ?>"
    3232            title="<?php echo __('Default Image', 'affiliate-bridge'); ?>"
     33            class="ab-tbl-image"
     34
    3335    />
    3436</div>
  • affiliate-bridge/trunk/includes/frontend/multi-table.php

    r2506137 r2523067  
    6868                            alt="<?php echo esc_attr($alt); ?>"
    6969                            title="<?php echo esc_attr($alt) ?>"
     70                            class="ab-tbl-image"
    7071                    />
    7172                </a></td>
  • affiliate-bridge/trunk/includes/frontend/single.php

    r2506137 r2523067  
    5454                alt="<?php echo esc_attr($alt); ?>"
    5555                title="<?php echo esc_attr($alt); ?>"
     56                class="ab-tbl-image"
    5657        >
    5758    </a>
  • affiliate-bridge/trunk/readme.txt

    r2506137 r2523067  
    11=== Affiliate Bridge ===
    2 Contributors: affiliatebridge, David Lidor, stevorated
     2Contributors: affiliatebridge, David Lidor, stevorated, mattheufarmer
    33Donate link: https://affiliate-bridge.com
    44Tags: affiliate, ebay, bridge
    55Requires at least: 5.0.0
    6 Tested up to: 5.6.2
     6Tested up to: 5.7.1
    77Requires PHP: 7.2
    8 Stable tag: 1.0.0
     8Stable tag: 1.0.1
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt
     
    29293. Set the default shortcode search attributes (i.e Keyword, category, condition, number of items etc.)
    30304. Set the `main affiliate` account. to see what `main` means, check out `Revenue Sharing Model` section.
    31 5. Use the short code [affiliate-bridge] to show affiliated products.
     315. Use the short code `[affiliate-bridge]` to show affiliated products.
    32326. You can use the shortcode with the default settings, or override the defaults with shortcode props.
    33337. Paste the code anywhere in your site
     
    5656== Shortcode props ==
    5757
    58 1. items - number of items to show. example: [affiliate-bridge items="4"] (default = 1)
    59 2. size - image size. options are: `small` | `medium` | `large`. example: [affiliate-bridge size="small"] (default = large)
    60 3. keywords - add search keywords (with spaces and other special characters). used to override the default you set in admin. example [affiliate-bridge keywords="baseball cards"]
    61 4. framed - choose what kind of image frame to use.  example [affiliate-bridge framed="C"]. (you can also use `affiliate_bridge_image_style_override_custom` filter to use you own customized css)
    62 5. categories - ddd Category IDs, separated by a comma. Download eBay Categories. example [affiliate-bridge keywords="baseball cards"]
    63 6. condition - product condition. options are `All` | `New` | `Used`. example [affiliate-bridge condition="Used"] (default is `All`)
    64 7. defimage - link to default image. example [affiliate-bridge condition="https://example.com/wp-content/uploads/08/20/my-cool-image.png"] (default is `All`)
     581. items - number of items to show. example: `[affiliate-bridge items="4"]` (default = 1)
     592. size - image size. options are: `small` | `medium` | `large`. example: `[affiliate-bridge size="small"]` (default = large)
     603. keywords - add search keywords (with spaces and other special characters). used to override the default you set in admin. example `[affiliate-bridge keywords="baseball cards"]`
     614. framed - choose what kind of image frame to use.  example `[affiliate-bridge framed="C"]`. (you can also use `affiliate_bridge_image_style_override_custom` filter to use you own customized css)
     625. categories - ddd Category IDs, separated by a comma. Download eBay Categories. example `[affiliate-bridge categories="213"]`
     636. condition - product condition. options are `All` | `New` | `Used`. example `[affiliate-bridge condition="Used"]` (default is `All`)
     647. defimage - link to default image. example `[affiliate-bridge defimage="https://example.com/wp-content/uploads/08/20/my-cool-image.png"]` (default is `All`)
    65658. source - currently no use. will be added in future versions.
    6666
     
    8686== Changelog ==
    8787
     88= 1.0.1 - Apr 28 2021 =
     89* Fixed error with shortcode not being recognized
     90* Fixed image width issue in Chrome-based browsers
     91
    8892= 1.0.0 - Mar 13 2021 =
    8993* Initial Release
Note: See TracChangeset for help on using the changeset viewer.