Version Description
Download this release
Release Info
| Developer | creativethemeshq |
| Plugin | |
| Version | 1.7.46 |
| Comparing to | |
| See all releases | |
Code changes from version 1.7.45 to 1.7.46
- blocksy-companion.php +1 -1
- framework/extensions/affiliate-marketing/metabox.php +4 -0
- framework/extensions/affiliate-marketing/static/bundle/main.css +1 -1
- framework/extensions/affiliate-marketing/views/single-top.php +4 -0
- framework/extensions/cookies-consent/static/bundle/main.css +1 -1
- framework/extensions/mailchimp/static/bundle/main.css +1 -1
- framework/extensions/widgets/static/bundle/main.css +1 -1
- readme.txt +4 -1
- static/bundle/dashboard.css +1 -1
- static/bundle/options.css +1 -1
blocksy-companion.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
/*
|
| 4 |
Plugin Name: Blocksy Companion
|
| 5 |
Description: This plugin is the companion for the Blocksy theme, it runs and adds its enhacements only if the Blocksy theme is installed and active.
|
| 6 |
-
Version: 1.7.
|
| 7 |
Author: CreativeThemes
|
| 8 |
Author URI: https://creativethemes.com
|
| 9 |
Text Domain: blc
|
| 3 |
/*
|
| 4 |
Plugin Name: Blocksy Companion
|
| 5 |
Description: This plugin is the companion for the Blocksy theme, it runs and adds its enhacements only if the Blocksy theme is installed and active.
|
| 6 |
+
Version: 1.7.46
|
| 7 |
Author: CreativeThemes
|
| 8 |
Author URI: https://creativethemes.com
|
| 9 |
Text Domain: blc
|
framework/extensions/affiliate-marketing/metabox.php
CHANGED
|
@@ -32,6 +32,7 @@ $options = [
|
|
| 32 |
'value' => '#'
|
| 33 |
],
|
| 34 |
|
|
|
|
| 35 |
'product_button_icon' => [
|
| 36 |
'type' => 'icon-picker',
|
| 37 |
'label' => __('Button Icon', 'blc'),
|
|
@@ -40,6 +41,7 @@ $options = [
|
|
| 40 |
'icon' => 'fas fa-shopping-cart'
|
| 41 |
]
|
| 42 |
],
|
|
|
|
| 43 |
|
| 44 |
blocksy_rand_md5() => [
|
| 45 |
'type' => 'ct-divider',
|
|
@@ -52,6 +54,7 @@ $options = [
|
|
| 52 |
'value' => __('Read More', 'blc')
|
| 53 |
],
|
| 54 |
|
|
|
|
| 55 |
'product_read_content_button_icon' => [
|
| 56 |
'type' => 'icon-picker',
|
| 57 |
'label' => __('Button Icon', 'blc'),
|
|
@@ -60,6 +63,7 @@ $options = [
|
|
| 60 |
'icon' => 'fas fa-arrow-down'
|
| 61 |
]
|
| 62 |
],
|
|
|
|
| 63 |
|
| 64 |
blocksy_rand_md5() => [
|
| 65 |
'type' => 'ct-divider',
|
| 32 |
'value' => '#'
|
| 33 |
],
|
| 34 |
|
| 35 |
+
/*
|
| 36 |
'product_button_icon' => [
|
| 37 |
'type' => 'icon-picker',
|
| 38 |
'label' => __('Button Icon', 'blc'),
|
| 41 |
'icon' => 'fas fa-shopping-cart'
|
| 42 |
]
|
| 43 |
],
|
| 44 |
+
*/
|
| 45 |
|
| 46 |
blocksy_rand_md5() => [
|
| 47 |
'type' => 'ct-divider',
|
| 54 |
'value' => __('Read More', 'blc')
|
| 55 |
],
|
| 56 |
|
| 57 |
+
/*
|
| 58 |
'product_read_content_button_icon' => [
|
| 59 |
'type' => 'icon-picker',
|
| 60 |
'label' => __('Button Icon', 'blc'),
|
| 63 |
'icon' => 'fas fa-arrow-down'
|
| 64 |
]
|
| 65 |
],
|
| 66 |
+
*/
|
| 67 |
|
| 68 |
blocksy_rand_md5() => [
|
| 69 |
'type' => 'ct-divider',
|
framework/extensions/affiliate-marketing/static/bundle/main.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
/**
|
| 2 |
-
* - v1.7.
|
| 3 |
*
|
| 4 |
* Copyright (c) 2020
|
| 5 |
* Licensed GPLv2+
|
| 1 |
/**
|
| 2 |
+
* - v1.7.46
|
| 3 |
*
|
| 4 |
* Copyright (c) 2020
|
| 5 |
* Licensed GPLv2+
|
framework/extensions/affiliate-marketing/views/single-top.php
CHANGED
|
@@ -142,11 +142,13 @@ if (! empty($product_button_label)) {
|
|
| 142 |
echo '<a href="#post-' . get_the_ID() . '" class="ct-button">';
|
| 143 |
echo $product_read_content_button_label;
|
| 144 |
|
|
|
|
| 145 |
echo blc_get_icon([
|
| 146 |
'icon_descriptor' => blocksy_akg('product_read_content_button_icon', $atts, [
|
| 147 |
'icon' => 'fas fa-arrow-down'
|
| 148 |
]),
|
| 149 |
]);
|
|
|
|
| 150 |
|
| 151 |
echo '</a>';
|
| 152 |
}
|
|
@@ -155,11 +157,13 @@ if (! empty($product_button_label) && ! empty($product_link)) {
|
|
| 155 |
echo '<a href="' . esc_url($product_link) . '" class="ct-button">';
|
| 156 |
echo $product_button_label;
|
| 157 |
|
|
|
|
| 158 |
echo blc_get_icon([
|
| 159 |
'icon_descriptor' => blocksy_akg('product_button_icon', $atts, [
|
| 160 |
'icon' => 'fas fa-cart-arrow-down'
|
| 161 |
]),
|
| 162 |
]);
|
|
|
|
| 163 |
|
| 164 |
echo '</a>';
|
| 165 |
}
|
| 142 |
echo '<a href="#post-' . get_the_ID() . '" class="ct-button">';
|
| 143 |
echo $product_read_content_button_label;
|
| 144 |
|
| 145 |
+
/*
|
| 146 |
echo blc_get_icon([
|
| 147 |
'icon_descriptor' => blocksy_akg('product_read_content_button_icon', $atts, [
|
| 148 |
'icon' => 'fas fa-arrow-down'
|
| 149 |
]),
|
| 150 |
]);
|
| 151 |
+
*/
|
| 152 |
|
| 153 |
echo '</a>';
|
| 154 |
}
|
| 157 |
echo '<a href="' . esc_url($product_link) . '" class="ct-button">';
|
| 158 |
echo $product_button_label;
|
| 159 |
|
| 160 |
+
/*
|
| 161 |
echo blc_get_icon([
|
| 162 |
'icon_descriptor' => blocksy_akg('product_button_icon', $atts, [
|
| 163 |
'icon' => 'fas fa-cart-arrow-down'
|
| 164 |
]),
|
| 165 |
]);
|
| 166 |
+
*/
|
| 167 |
|
| 168 |
echo '</a>';
|
| 169 |
}
|
framework/extensions/cookies-consent/static/bundle/main.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
/**
|
| 2 |
-
* - v1.7.
|
| 3 |
*
|
| 4 |
* Copyright (c) 2020
|
| 5 |
* Licensed GPLv2+
|
| 1 |
/**
|
| 2 |
+
* - v1.7.46
|
| 3 |
*
|
| 4 |
* Copyright (c) 2020
|
| 5 |
* Licensed GPLv2+
|
framework/extensions/mailchimp/static/bundle/main.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
/**
|
| 2 |
-
* - v1.7.
|
| 3 |
*
|
| 4 |
* Copyright (c) 2020
|
| 5 |
* Licensed GPLv2+
|
| 1 |
/**
|
| 2 |
+
* - v1.7.46
|
| 3 |
*
|
| 4 |
* Copyright (c) 2020
|
| 5 |
* Licensed GPLv2+
|
framework/extensions/widgets/static/bundle/main.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
/**
|
| 2 |
-
* - v1.7.
|
| 3 |
*
|
| 4 |
* Copyright (c) 2020
|
| 5 |
* Licensed GPLv2+
|
| 1 |
/**
|
| 2 |
+
* - v1.7.46
|
| 3 |
*
|
| 4 |
* Copyright (c) 2020
|
| 5 |
* Licensed GPLv2+
|
readme.txt
CHANGED
|
@@ -5,7 +5,7 @@ Requires PHP: 7.0
|
|
| 5 |
Tested up to: 5.6
|
| 6 |
License: GPLv2 or later
|
| 7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 8 |
-
Stable tag: 1.7.
|
| 9 |
|
| 10 |
== Description ==
|
| 11 |
|
|
@@ -23,6 +23,9 @@ It runs and adds its enhancements only if the Blocksy theme is installed and act
|
|
| 23 |
2. Activate the plugin by going to **Plugins** page in WordPress admin and clicking on **Activate** link.
|
| 24 |
|
| 25 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
| 26 |
1.7.45: 2020-12-31
|
| 27 |
- New: Add affiliate marketing extension
|
| 28 |
- New: Add option to export widgets settings
|
| 5 |
Tested up to: 5.6
|
| 6 |
License: GPLv2 or later
|
| 7 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 8 |
+
Stable tag: 1.7.46
|
| 9 |
|
| 10 |
== Description ==
|
| 11 |
|
| 23 |
2. Activate the plugin by going to **Plugins** page in WordPress admin and clicking on **Activate** link.
|
| 24 |
|
| 25 |
== Changelog ==
|
| 26 |
+
1.7.46: 2020-12-31
|
| 27 |
+
- Fix: Issue with affiliate marketing template
|
| 28 |
+
|
| 29 |
1.7.45: 2020-12-31
|
| 30 |
- New: Add affiliate marketing extension
|
| 31 |
- New: Add option to export widgets settings
|
static/bundle/dashboard.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
/**
|
| 2 |
-
* - v1.7.
|
| 3 |
*
|
| 4 |
* Copyright (c) 2020
|
| 5 |
* Licensed GPLv2+
|
| 1 |
/**
|
| 2 |
+
* - v1.7.46
|
| 3 |
*
|
| 4 |
* Copyright (c) 2020
|
| 5 |
* Licensed GPLv2+
|
static/bundle/options.css
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
/**
|
| 2 |
-
* - v1.7.
|
| 3 |
*
|
| 4 |
* Copyright (c) 2020
|
| 5 |
* Licensed GPLv2+
|
| 1 |
/**
|
| 2 |
+
* - v1.7.46
|
| 3 |
*
|
| 4 |
* Copyright (c) 2020
|
| 5 |
* Licensed GPLv2+
|
