Changeset 2523067
- Timestamp:
- 04/29/2021 03:28:16 AM (5 years ago)
- Location:
- affiliate-bridge
- Files:
-
- 14 edited
- 1 copied
-
tags/1.0.1 (copied) (copied from affiliate-bridge/trunk)
-
tags/1.0.1/README.md (modified) (3 diffs)
-
tags/1.0.1/affiliate-bridge.php (modified) (2 diffs)
-
tags/1.0.1/assets/css/styles.css (modified) (1 diff)
-
tags/1.0.1/includes/frontend/empty-single.php (modified) (1 diff)
-
tags/1.0.1/includes/frontend/multi-table.php (modified) (1 diff)
-
tags/1.0.1/includes/frontend/single.php (modified) (1 diff)
-
tags/1.0.1/readme.txt (modified) (4 diffs)
-
trunk/README.md (modified) (3 diffs)
-
trunk/affiliate-bridge.php (modified) (2 diffs)
-
trunk/assets/css/styles.css (modified) (1 diff)
-
trunk/includes/frontend/empty-single.php (modified) (1 diff)
-
trunk/includes/frontend/multi-table.php (modified) (1 diff)
-
trunk/includes/frontend/single.php (modified) (1 diff)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
affiliate-bridge/tags/1.0.1/README.md
r2506137 r2523067 1 1 # Affiliate Bridge 2 > E ffortlessly show affiliate items in your site.2 > Easily add product images from affiliate programs using shortcodes. 3 3 4 4 Affiliate Bridge allows you to effortlessly integrate affiliated items (only from ebay for now) in your site. … … 44 44 ## Shortcode props 45 45 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`)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 categories="213"]` 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 defimage="https://example.com/wp-content/uploads/08/20/my-cool-image.png"]` (default is `All`) 53 53 8. source - currently no use. will be added in future versions. 54 54 … … 75 75 ## Change log 76 76 77 * 1.0.1 78 * Fixed error with shortcode not being recognized 79 * Fixed image width issue in Chrome-based browsers 80 81 77 82 * 1.0.0 78 83 * Initial Release -
affiliate-bridge/tags/1.0.1/affiliate-bridge.php
r2506137 r2523067 3 3 * Plugin Name: Affiliate Bridge 4 4 * Plugin URI: https://affiliate-bridge.com 5 * Description: Affiliate Bridge allows you to effortlessly integrate affiliated items (only from ebay for now) in your site6 * Version: 1.0. 05 * Description: Easily add product images from affiliate programs using shortcodes. 6 * Version: 1.0.1 7 7 * Author: David Lidor 8 8 * Author URI: https://www.bicycle-riding.com … … 48 48 49 49 // Add plugin shortcode 50 add_shortcode('affiliate _bridge', [$this, 'affiliate_bridge_output']);50 add_shortcode('affiliate-bridge', [$this, 'affiliate_bridge_output']); 51 51 52 52 $this->add_actions(); -
affiliate-bridge/tags/1.0.1/assets/css/styles.css
r2506137 r2523067 22 22 margin: 5px auto 5px auto; 23 23 display: block; 24 max-width: 100%; 24 25 } -
affiliate-bridge/tags/1.0.1/includes/frontend/empty-single.php
r2506137 r2523067 31 31 alt="<?php echo __('Default Image', 'affiliate-bridge'); ?>" 32 32 title="<?php echo __('Default Image', 'affiliate-bridge'); ?>" 33 class="ab-tbl-image" 34 33 35 /> 34 36 </div> -
affiliate-bridge/tags/1.0.1/includes/frontend/multi-table.php
r2506137 r2523067 68 68 alt="<?php echo esc_attr($alt); ?>" 69 69 title="<?php echo esc_attr($alt) ?>" 70 class="ab-tbl-image" 70 71 /> 71 72 </a></td> -
affiliate-bridge/tags/1.0.1/includes/frontend/single.php
r2506137 r2523067 54 54 alt="<?php echo esc_attr($alt); ?>" 55 55 title="<?php echo esc_attr($alt); ?>" 56 class="ab-tbl-image" 56 57 > 57 58 </a> -
affiliate-bridge/tags/1.0.1/readme.txt
r2506137 r2523067 1 1 === Affiliate Bridge === 2 Contributors: affiliatebridge, David Lidor, stevorated 2 Contributors: affiliatebridge, David Lidor, stevorated, mattheufarmer 3 3 Donate link: https://affiliate-bridge.com 4 4 Tags: affiliate, ebay, bridge 5 5 Requires at least: 5.0.0 6 Tested up to: 5. 6.26 Tested up to: 5.7.1 7 7 Requires PHP: 7.2 8 Stable tag: 1.0. 08 Stable tag: 1.0.1 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt … … 29 29 3. Set the default shortcode search attributes (i.e Keyword, category, condition, number of items etc.) 30 30 4. 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.31 5. Use the short code `[affiliate-bridge]` to show affiliated products. 32 32 6. You can use the shortcode with the default settings, or override the defaults with shortcode props. 33 33 7. Paste the code anywhere in your site … … 56 56 == Shortcode props == 57 57 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`)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 categories="213"]` 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 defimage="https://example.com/wp-content/uploads/08/20/my-cool-image.png"]` (default is `All`) 65 65 8. source - currently no use. will be added in future versions. 66 66 … … 86 86 == Changelog == 87 87 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 88 92 = 1.0.0 - Mar 13 2021 = 89 93 * Initial Release -
affiliate-bridge/trunk/README.md
r2506137 r2523067 1 1 # Affiliate Bridge 2 > E ffortlessly show affiliate items in your site.2 > Easily add product images from affiliate programs using shortcodes. 3 3 4 4 Affiliate Bridge allows you to effortlessly integrate affiliated items (only from ebay for now) in your site. … … 44 44 ## Shortcode props 45 45 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`)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 categories="213"]` 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 defimage="https://example.com/wp-content/uploads/08/20/my-cool-image.png"]` (default is `All`) 53 53 8. source - currently no use. will be added in future versions. 54 54 … … 75 75 ## Change log 76 76 77 * 1.0.1 78 * Fixed error with shortcode not being recognized 79 * Fixed image width issue in Chrome-based browsers 80 81 77 82 * 1.0.0 78 83 * Initial Release -
affiliate-bridge/trunk/affiliate-bridge.php
r2506137 r2523067 3 3 * Plugin Name: Affiliate Bridge 4 4 * Plugin URI: https://affiliate-bridge.com 5 * Description: Affiliate Bridge allows you to effortlessly integrate affiliated items (only from ebay for now) in your site6 * Version: 1.0. 05 * Description: Easily add product images from affiliate programs using shortcodes. 6 * Version: 1.0.1 7 7 * Author: David Lidor 8 8 * Author URI: https://www.bicycle-riding.com … … 48 48 49 49 // Add plugin shortcode 50 add_shortcode('affiliate _bridge', [$this, 'affiliate_bridge_output']);50 add_shortcode('affiliate-bridge', [$this, 'affiliate_bridge_output']); 51 51 52 52 $this->add_actions(); -
affiliate-bridge/trunk/assets/css/styles.css
r2506137 r2523067 22 22 margin: 5px auto 5px auto; 23 23 display: block; 24 max-width: 100%; 24 25 } -
affiliate-bridge/trunk/includes/frontend/empty-single.php
r2506137 r2523067 31 31 alt="<?php echo __('Default Image', 'affiliate-bridge'); ?>" 32 32 title="<?php echo __('Default Image', 'affiliate-bridge'); ?>" 33 class="ab-tbl-image" 34 33 35 /> 34 36 </div> -
affiliate-bridge/trunk/includes/frontend/multi-table.php
r2506137 r2523067 68 68 alt="<?php echo esc_attr($alt); ?>" 69 69 title="<?php echo esc_attr($alt) ?>" 70 class="ab-tbl-image" 70 71 /> 71 72 </a></td> -
affiliate-bridge/trunk/includes/frontend/single.php
r2506137 r2523067 54 54 alt="<?php echo esc_attr($alt); ?>" 55 55 title="<?php echo esc_attr($alt); ?>" 56 class="ab-tbl-image" 56 57 > 57 58 </a> -
affiliate-bridge/trunk/readme.txt
r2506137 r2523067 1 1 === Affiliate Bridge === 2 Contributors: affiliatebridge, David Lidor, stevorated 2 Contributors: affiliatebridge, David Lidor, stevorated, mattheufarmer 3 3 Donate link: https://affiliate-bridge.com 4 4 Tags: affiliate, ebay, bridge 5 5 Requires at least: 5.0.0 6 Tested up to: 5. 6.26 Tested up to: 5.7.1 7 7 Requires PHP: 7.2 8 Stable tag: 1.0. 08 Stable tag: 1.0.1 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.txt … … 29 29 3. Set the default shortcode search attributes (i.e Keyword, category, condition, number of items etc.) 30 30 4. 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.31 5. Use the short code `[affiliate-bridge]` to show affiliated products. 32 32 6. You can use the shortcode with the default settings, or override the defaults with shortcode props. 33 33 7. Paste the code anywhere in your site … … 56 56 == Shortcode props == 57 57 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`)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 categories="213"]` 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 defimage="https://example.com/wp-content/uploads/08/20/my-cool-image.png"]` (default is `All`) 65 65 8. source - currently no use. will be added in future versions. 66 66 … … 86 86 == Changelog == 87 87 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 88 92 = 1.0.0 - Mar 13 2021 = 89 93 * Initial Release
Note: See TracChangeset
for help on using the changeset viewer.