Blog2Social: Social Media Auto Post & Scheduler - Version 6.5.6

Version Description

Usability Optimization

Download this release

Release Info

Developer PR-Gateway
Plugin Icon 128x128 Blog2Social: Social Media Auto Post & Scheduler
Version 6.5.6
Comparing to
See all releases

Code changes from version 6.5.5 to 6.5.6

assets/css/b2s/wp/post-box.css CHANGED
@@ -325,4 +325,8 @@
325
  padding: 5px !important;
326
  font-weight: bold;
327
  margin: 5px 0px;
 
 
 
 
328
  }
325
  padding: 5px !important;
326
  font-weight: bold;
327
  margin: 5px 0px;
328
+ }
329
+
330
+ .b2s-post-box-calendar-content .fc-view-container .fc-view {
331
+ z-index: 1001;
332
  }
blog2social.php CHANGED
@@ -6,12 +6,12 @@
6
  * Author: Blog2Social, Adenion
7
  * Text Domain: blog2social
8
  * Domain Path: /languages
9
- * Version: 6.5.5
10
  * Author URI: https://www.blog2social.com
11
  * License: GPL2+
12
  */
13
 
14
- define('B2S_PLUGIN_VERSION', '655');
15
  define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
16
  define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
17
  define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
6
  * Author: Blog2Social, Adenion
7
  * Text Domain: blog2social
8
  * Domain Path: /languages
9
+ * Version: 6.5.6
10
  * Author URI: https://www.blog2social.com
11
  * License: GPL2+
12
  */
13
 
14
+ define('B2S_PLUGIN_VERSION', '656');
15
  define('B2S_PLUGIN_LANGUAGE', serialize(array('de_DE', 'en_US')));
16
  define('B2S_PLUGIN_DIR', plugin_dir_path(__FILE__));
17
  define('B2S_PLUGIN_URL', plugin_dir_url(__FILE__));
includes/B2S/AutoPost.php CHANGED
@@ -272,9 +272,10 @@ class B2S_AutoPost {
272
 
273
  public function saveShareData($shareData = array(), $network_id = 0, $network_type = 0, $network_auth_id = 0, $shareApprove = 0, $network_display_name = '') {
274
 
275
- if (isset($shareData['image_url']) && !empty($shareData['image_url'])) {
276
  $image_data = wp_check_filetype($shareData['image_url']);
277
- if (isset($image_data['ext']) && $image_data['ext'] == 'gif' && in_array($network_id, unserialize(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF))) {
 
278
  $shareData['image_url'] = '';
279
  }
280
  }
272
 
273
  public function saveShareData($shareData = array(), $network_id = 0, $network_type = 0, $network_auth_id = 0, $shareApprove = 0, $network_display_name = '') {
274
 
275
+ if (isset($shareData['image_url']) && !empty($shareData['image_url']) && function_exists('wp_check_filetype') && defined('B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF')) {
276
  $image_data = wp_check_filetype($shareData['image_url']);
277
+ $not_allow_gif = json_decode(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF, true);
278
+ if (isset($image_data['ext']) && $image_data['ext'] == 'gif' && is_array($not_allow_gif) && !empty($not_allow_gif) && in_array($network_id, $not_allow_gif)) {
279
  $shareData['image_url'] = '';
280
  }
281
  }
includes/B2S/RePost/Save.php CHANGED
@@ -372,9 +372,10 @@ class B2S_RePost_Save {
372
 
373
  public function saveShareData($shareData = array(), $network_id = 0, $network_type = 0, $network_auth_id = 0, $shareApprove = 0, $network_display_name = '', $sched_date = '0000-00-00 00:00:00', $sched_date_utc = '0000-00-00 00:00:00') {
374
 
375
- if (isset($shareData['image_url']) && !empty($shareData['image_url'])) {
376
  $image_data = wp_check_filetype($shareData['image_url']);
377
- if (isset($image_data['ext']) && $image_data['ext'] == 'gif' && in_array($network_id, unserialize(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF))) {
 
378
  $shareData['image_url'] = '';
379
  }
380
  }
372
 
373
  public function saveShareData($shareData = array(), $network_id = 0, $network_type = 0, $network_auth_id = 0, $shareApprove = 0, $network_display_name = '', $sched_date = '0000-00-00 00:00:00', $sched_date_utc = '0000-00-00 00:00:00') {
374
 
375
+ if (isset($shareData['image_url']) && !empty($shareData['image_url']) && function_exists('wp_check_filetype') && defined('B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF')) {
376
  $image_data = wp_check_filetype($shareData['image_url']);
377
+ $not_allow_gif = json_decode(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF, true);
378
+ if (isset($image_data['ext']) && $image_data['ext'] == 'gif' && is_array($not_allow_gif) && !empty($not_allow_gif) && in_array($network_id, $not_allow_gif)) {
379
  $shareData['image_url'] = '';
380
  }
381
  }
includes/B2S/Settings/Item.php CHANGED
@@ -268,6 +268,10 @@ class B2S_Settings_Item {
268
 
269
  //view=ship
270
  public function setNetworkSettingsHtml() {
 
 
 
 
271
  $optionPostFormat = $this->options->_getOption('post_template');
272
  $content = "<input type='hidden' class='b2sNetworkSettingsPostFormatText' value='" . json_encode(array('post' => array(__('Link Post', 'blog2social'), __('Image Post', 'blog2social')), 'image' => array(__('Image with frame'), __('Image cut out')))) . "'/>";
273
  foreach (array(1, 2, 3, 12, 19, 15, 17) as $n => $networkId) { //FB,TW,LI,IN
@@ -275,7 +279,11 @@ class B2S_Settings_Item {
275
  $type = ($networkId == 1 || $networkId == 19 || $networkId == 17) ? array(0, 1, 2) : (($networkId == 3) ? array(0, 1) : array(0));
276
  foreach ($type as $t => $typeId) { //Profile,Page,Group
277
  if (!isset($optionPostFormat[$networkId][$typeId]['format']) || (int) $optionPostFormat[$networkId][$typeId]['format'] < 0 || (int) $optionPostFormat[$networkId][$typeId]['format'] > 1) { //DEFAULT
278
- $value = ($networkId == 2 || $networkId == 17) ? 1 : 0; //default see B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT
 
 
 
 
279
  } else {
280
  $value = $optionPostFormat[$networkId][$typeId]['format'];
281
  }
268
 
269
  //view=ship
270
  public function setNetworkSettingsHtml() {
271
+ $defaultTemplate = false;
272
+ if(defined('B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT')) {
273
+ $defaultTemplate = unserialize(B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT);
274
+ }
275
  $optionPostFormat = $this->options->_getOption('post_template');
276
  $content = "<input type='hidden' class='b2sNetworkSettingsPostFormatText' value='" . json_encode(array('post' => array(__('Link Post', 'blog2social'), __('Image Post', 'blog2social')), 'image' => array(__('Image with frame'), __('Image cut out')))) . "'/>";
277
  foreach (array(1, 2, 3, 12, 19, 15, 17) as $n => $networkId) { //FB,TW,LI,IN
279
  $type = ($networkId == 1 || $networkId == 19 || $networkId == 17) ? array(0, 1, 2) : (($networkId == 3) ? array(0, 1) : array(0));
280
  foreach ($type as $t => $typeId) { //Profile,Page,Group
281
  if (!isset($optionPostFormat[$networkId][$typeId]['format']) || (int) $optionPostFormat[$networkId][$typeId]['format'] < 0 || (int) $optionPostFormat[$networkId][$typeId]['format'] > 1) { //DEFAULT
282
+ if(is_array($defaultTemplate) && isset($defaultTemplate[$networkId][$typeId]['format']) && $defaultTemplate[$networkId][$typeId]['format'] >= 0 && $defaultTemplate[$networkId][$typeId]['format'] <= 1) {
283
+ $value = $defaultTemplate[$networkId][$typeId]['format'];
284
+ } else {
285
+ $value = ($networkId == 2) ? 1 : 0; //default see B2S_PLUGIN_NETWORK_SETTINGS_TEMPLATE_DEFAULT
286
+ }
287
  } else {
288
  $value = $optionPostFormat[$networkId][$typeId]['format'];
289
  }
includes/B2S/Ship/Item.php CHANGED
@@ -161,7 +161,8 @@ class B2S_Ship_Item {
161
  $htmlTags = highlight_string("<p><br><i><b><a><img>", true);
162
  $infoImage .= (in_array($data->networkId, $this->allowHtml)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Supported HTML tags', 'blog2social') . ': ' . $htmlTags : '';
163
  $infoImage .= (in_array($data->networkId, $this->allowNoEmoji)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network does not support emojis', 'blog2social') . '!' : '';
164
- $infoImage .= (in_array($data->networkId, json_decode(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF, true))) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network does not support GIFs', 'blog2social') . '!' : '';
 
165
 
166
  $network_display_name = $data->network_display_name;
167
  $isRequiredTextarea = (in_array($data->networkId, $this->isCommentProfile)) ? '' : 'required="required"';
@@ -226,7 +227,8 @@ class B2S_Ship_Item {
226
  $infoImage = (in_array($data->networkId, $this->allowNoImagePage)) ? esc_html__('Network does not support image for pages', 'blog2social') . '!' : '';
227
  $infoImage .= (in_array($data->networkId, $this->allowNoEmoji)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network does not support emojis', 'blog2social') . '!' : '';
228
  $infoImage .= (in_array($data->networkId, $this->allowNoCustomImagePage)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network defines image by link', 'blog2social') . '!' : '';
229
- $infoImage .= (in_array($data->networkId, json_decode(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF, true))) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network does not support GIFs', 'blog2social') . '!' : '';
 
230
 
231
  //ShortText
232
  if ($isDraft && isset($draftData['content'])) {
161
  $htmlTags = highlight_string("<p><br><i><b><a><img>", true);
162
  $infoImage .= (in_array($data->networkId, $this->allowHtml)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Supported HTML tags', 'blog2social') . ': ' . $htmlTags : '';
163
  $infoImage .= (in_array($data->networkId, $this->allowNoEmoji)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network does not support emojis', 'blog2social') . '!' : '';
164
+ $notAllowGif = ((defined('B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF')) ? json_decode(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF, true) : false);
165
+ $infoImage .= (is_array($notAllowGif) && in_array($data->networkId, $notAllowGif)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network does not support GIFs', 'blog2social') . '!' : '';
166
 
167
  $network_display_name = $data->network_display_name;
168
  $isRequiredTextarea = (in_array($data->networkId, $this->isCommentProfile)) ? '' : 'required="required"';
227
  $infoImage = (in_array($data->networkId, $this->allowNoImagePage)) ? esc_html__('Network does not support image for pages', 'blog2social') . '!' : '';
228
  $infoImage .= (in_array($data->networkId, $this->allowNoEmoji)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network does not support emojis', 'blog2social') . '!' : '';
229
  $infoImage .= (in_array($data->networkId, $this->allowNoCustomImagePage)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network defines image by link', 'blog2social') . '!' : '';
230
+ $notAllowGif = ((defined('B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF')) ? json_decode(B2S_PLUGIN_NETWORK_NOT_ALLOW_GIF, true) : false);
231
+ $infoImage .= (is_array($notAllowGif) && in_array($data->networkId, $notAllowGif)) ? (!empty($infoImage) ? ' | ' : '') . esc_html__('Network does not support GIFs', 'blog2social') . '!' : '';
232
 
233
  //ShortText
234
  if ($isDraft && isset($draftData['content'])) {
languages/blog2social-de_DE.mo CHANGED
Binary file
languages/blog2social-de_DE.po CHANGED
@@ -2,7 +2,7 @@
2
  # This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post &amp; Scheduler - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
- "PO-Revision-Date: 2020-11-10 12:50+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -12,7 +12,7 @@ msgstr ""
12
  "Project-Id-Version: Plugins - Blog2Social: Social Media Auto Post &amp; "
13
  "Scheduler - Stable (latest release)\n"
14
  "Report-Msgid-Bugs-To: \n"
15
- "POT-Creation-Date: 2020-11-10 12:49+0000\n"
16
  "Last-Translator: marius <wolf.12345@gmx.de>\n"
17
  "Language-Team: Deutsch\n"
18
  "X-Loco-Version: 2.3.0; wp-5.4.4"
@@ -1186,7 +1186,7 @@ msgstr "Als Entwurf gespeichert."
1186
 
1187
  #: views/b2s/curation.php:45 views/b2s/post.calendar.php:70
1188
  #: views/b2s/post.sched.php:189 views/b2s/repost.php:73
1189
- #: includes/B2S/Settings/Item.php:239 includes/B2S/Settings/Item.php:272
1190
  #: views/b2s/html/footer.php:160
1191
  msgid "Link Post"
1192
  msgstr "Link-Beitrag"
@@ -1194,7 +1194,7 @@ msgstr "Link-Beitrag"
1194
  #: views/b2s/curation.php:47 views/b2s/curation.php:49
1195
  #: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
1196
  #: views/b2s/repost.php:73 includes/B2S/Settings/Item.php:253
1197
- #: includes/B2S/Settings/Item.php:272
1198
  msgid "Image Post"
1199
  msgstr "Bild-Beitrag"
1200
 
@@ -5472,15 +5472,15 @@ msgid ""
5472
  "autopilot, automatically schedule your social media posts with the Best Time "
5473
  "Manager. Select images and post formats (link post or image post) for each "
5474
  "social community. Upload and select any image for sharing. Save multiple "
5475
- "combinations of networks for different sharing purposes. Start from only $5."
5476
- "75 per month to benefit from PREMIUM features."
5477
  msgstr ""
5478
  "Blog2Social PREMIUM kann so viel für Dich tun: Veröffentliche Deine "
5479
  "Blogbeiträge mit dem Autoposter, plane Deine Social Media Beiträge "
5480
  "automatisch mit dem Best Time Manager. Wähle Bilder und Postformate (Link-"
5481
  "Beitrag oder Bild-Beitrag) für jede Social Community. Lade ein beliebiges "
5482
  "Bild hoch teile es. Speicher mehrere Netzwerk-Gruppierungen für verschiedene "
5483
- "Zwecke. Schon ab 5,75 € pro Monat kannst du mit den PREMIUM-Funktionen "
5484
  "durchstarten."
5485
 
5486
  #: views/b2s/html/header.php:296
2
  # This file is distributed under the same license as the Plugins - Blog2Social: Social Media Auto Post &amp; Scheduler - Stable (latest release) package.
3
  msgid ""
4
  msgstr ""
5
+ "PO-Revision-Date: 2020-11-19 11:30+0000\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
12
  "Project-Id-Version: Plugins - Blog2Social: Social Media Auto Post &amp; "
13
  "Scheduler - Stable (latest release)\n"
14
  "Report-Msgid-Bugs-To: \n"
15
+ "POT-Creation-Date: 2020-11-19 11:29+0000\n"
16
  "Last-Translator: marius <wolf.12345@gmx.de>\n"
17
  "Language-Team: Deutsch\n"
18
  "X-Loco-Version: 2.3.0; wp-5.4.4"
1186
 
1187
  #: views/b2s/curation.php:45 views/b2s/post.calendar.php:70
1188
  #: views/b2s/post.sched.php:189 views/b2s/repost.php:73
1189
+ #: includes/B2S/Settings/Item.php:239 includes/B2S/Settings/Item.php:276
1190
  #: views/b2s/html/footer.php:160
1191
  msgid "Link Post"
1192
  msgstr "Link-Beitrag"
1194
  #: views/b2s/curation.php:47 views/b2s/curation.php:49
1195
  #: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
1196
  #: views/b2s/repost.php:73 includes/B2S/Settings/Item.php:253
1197
+ #: includes/B2S/Settings/Item.php:276
1198
  msgid "Image Post"
1199
  msgstr "Bild-Beitrag"
1200
 
5472
  "autopilot, automatically schedule your social media posts with the Best Time "
5473
  "Manager. Select images and post formats (link post or image post) for each "
5474
  "social community. Upload and select any image for sharing. Save multiple "
5475
+ "combinations of networks for different sharing purposes. Start from only $6."
5476
+ "58 per month to benefit from PREMIUM features."
5477
  msgstr ""
5478
  "Blog2Social PREMIUM kann so viel für Dich tun: Veröffentliche Deine "
5479
  "Blogbeiträge mit dem Autoposter, plane Deine Social Media Beiträge "
5480
  "automatisch mit dem Best Time Manager. Wähle Bilder und Postformate (Link-"
5481
  "Beitrag oder Bild-Beitrag) für jede Social Community. Lade ein beliebiges "
5482
  "Bild hoch teile es. Speicher mehrere Netzwerk-Gruppierungen für verschiedene "
5483
+ "Zwecke. Schon ab 6,58 € pro Monat kannst du mit den PREMIUM-Funktionen "
5484
  "durchstarten."
5485
 
5486
  #: views/b2s/html/header.php:296
languages/blog2social.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2020-11-10 12:49+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
@@ -1074,7 +1074,7 @@ msgstr ""
1074
 
1075
  #: views/b2s/curation.php:45 views/b2s/post.calendar.php:70
1076
  #: views/b2s/post.sched.php:189 views/b2s/repost.php:73
1077
- #: includes/B2S/Settings/Item.php:239 includes/B2S/Settings/Item.php:272
1078
  #: views/b2s/html/footer.php:160
1079
  msgid "Link Post"
1080
  msgstr ""
@@ -1082,7 +1082,7 @@ msgstr ""
1082
  #: views/b2s/curation.php:47 views/b2s/curation.php:49
1083
  #: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
1084
  #: views/b2s/repost.php:73 includes/B2S/Settings/Item.php:253
1085
- #: includes/B2S/Settings/Item.php:272
1086
  msgid "Image Post"
1087
  msgstr ""
1088
 
@@ -4760,8 +4760,8 @@ msgid ""
4760
  "autopilot, automatically schedule your social media posts with the Best Time "
4761
  "Manager. Select images and post formats (link post or image post) for each "
4762
  "social community. Upload and select any image for sharing. Save multiple "
4763
- "combinations of networks for different sharing purposes. Start from only $5."
4764
- "75 per month to benefit from PREMIUM features."
4765
  msgstr ""
4766
 
4767
  #: views/b2s/html/header.php:296
3
  msgstr ""
4
  "Project-Id-Version: Blog2Social: Social Media Auto Post & Scheduler\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2020-11-19 11:29+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
1074
 
1075
  #: views/b2s/curation.php:45 views/b2s/post.calendar.php:70
1076
  #: views/b2s/post.sched.php:189 views/b2s/repost.php:73
1077
+ #: includes/B2S/Settings/Item.php:239 includes/B2S/Settings/Item.php:276
1078
  #: views/b2s/html/footer.php:160
1079
  msgid "Link Post"
1080
  msgstr ""
1082
  #: views/b2s/curation.php:47 views/b2s/curation.php:49
1083
  #: views/b2s/post.calendar.php:70 views/b2s/post.sched.php:189
1084
  #: views/b2s/repost.php:73 includes/B2S/Settings/Item.php:253
1085
+ #: includes/B2S/Settings/Item.php:276
1086
  msgid "Image Post"
1087
  msgstr ""
1088
 
4760
  "autopilot, automatically schedule your social media posts with the Best Time "
4761
  "Manager. Select images and post formats (link post or image post) for each "
4762
  "social community. Upload and select any image for sharing. Save multiple "
4763
+ "combinations of networks for different sharing purposes. Start from only $6."
4764
+ "58 per month to benefit from PREMIUM features."
4765
  msgstr ""
4766
 
4767
  #: views/b2s/html/header.php:296
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: auto post, auto publish, social media scheduling, social media calendar, s
5
  Donate link: https://paypal.me/adenion
6
  Requires at least: 4.7.0
7
  Tested up to: 5.5
8
- Stable tag: 6.5.5
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -218,6 +218,8 @@ To get started with the basics of Blog2Social and maybe find some useful tips an
218
  7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
219
 
220
  == Changelog ==
 
 
221
  = 6.5.5 =
222
  Usability Optimization
223
  = 6.5.4 =
@@ -298,6 +300,8 @@ Usability Optimization
298
  Content Curation with links, WooCommerce compatibility, gutenberg editor compatibility
299
 
300
  == Upgrade Notice ==
 
 
301
  = 6.5.5 =
302
  Usability Optimization
303
  = 6.5.4 =
5
  Donate link: https://paypal.me/adenion
6
  Requires at least: 4.7.0
7
  Tested up to: 5.5
8
+ Stable tag: 6.5.6
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
218
  7. Keep track of your shared posts and scheduling plan with the Social Media Calendar.
219
 
220
  == Changelog ==
221
+ = 6.5.6 =
222
+ Usability Optimization
223
  = 6.5.5 =
224
  Usability Optimization
225
  = 6.5.4 =
300
  Content Curation with links, WooCommerce compatibility, gutenberg editor compatibility
301
 
302
  == Upgrade Notice ==
303
+ = 6.5.6 =
304
+ Usability Optimization
305
  = 6.5.5 =
306
  Usability Optimization
307
  = 6.5.4 =
views/b2s/html/header.php CHANGED
@@ -290,7 +290,7 @@ if (!B2S_System::isblockedArea('B2S_MENU_MODUL_RATING', B2S_PLUGIN_ADMIN)) {
290
  ?>
291
  </h2>
292
  <p>
293
- <?php echo esc_html_e('Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on autopilot, automatically schedule your social media posts with the Best Time Manager. Select images and post formats (link post or image post) for each social community. Upload and select any image for sharing. Save multiple combinations of networks for different sharing purposes. Start from only $5.75 per month to benefit from PREMIUM features.', 'blog2social'); ?>
294
  </p>
295
  <p class="b2s-notice-buttons">
296
  <a target="_blank" class="b2s-text-underline" href="<?php echo esc_url(B2S_Tools::getSupportLink('affiliate')); ?>"><?php esc_html_e('Upgrade to PREMIUM', 'blog2social'); ?></a>
@@ -309,7 +309,7 @@ if (!B2S_System::isblockedArea('B2S_MENU_MODUL_RATING', B2S_PLUGIN_ADMIN)) {
309
  <?php esc_html_e('We hope you liked Blog2Social Premium.', 'blog2social'); ?>
310
  </h2>
311
  <p>
312
- <?php echo esc_html_e('Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on autopilot, automatically schedule your social media posts with the Best Time Manager. Select images and post formats (link post or image post) for each social community. Upload and select any image for sharing. Save multiple combinations of networks for different sharing purposes. Start from only $5.75 per month to benefit from PREMIUM features.', 'blog2social'); ?>
313
  </p>
314
  <p class="b2s-notice-buttons">
315
  <a target="_blank" class="b2s-text-underline" href="<?php echo esc_url(B2S_Tools::getSupportLink('affiliate')); ?>"><?php esc_html_e('Yes, I want to upgrade to Blog2Social Premium', 'blog2social'); ?></a>
290
  ?>
291
  </h2>
292
  <p>
293
+ <?php echo esc_html_e('Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on autopilot, automatically schedule your social media posts with the Best Time Manager. Select images and post formats (link post or image post) for each social community. Upload and select any image for sharing. Save multiple combinations of networks for different sharing purposes. Start from only $6.58 per month to benefit from PREMIUM features.', 'blog2social'); ?>
294
  </p>
295
  <p class="b2s-notice-buttons">
296
  <a target="_blank" class="b2s-text-underline" href="<?php echo esc_url(B2S_Tools::getSupportLink('affiliate')); ?>"><?php esc_html_e('Upgrade to PREMIUM', 'blog2social'); ?></a>
309
  <?php esc_html_e('We hope you liked Blog2Social Premium.', 'blog2social'); ?>
310
  </h2>
311
  <p>
312
+ <?php echo esc_html_e('Blog2Social PREMIUM can do so much for you: Auto-publish your blog post on autopilot, automatically schedule your social media posts with the Best Time Manager. Select images and post formats (link post or image post) for each social community. Upload and select any image for sharing. Save multiple combinations of networks for different sharing purposes. Start from only $6.58 per month to benefit from PREMIUM features.', 'blog2social'); ?>
313
  </p>
314
  <p class="b2s-notice-buttons">
315
  <a target="_blank" class="b2s-text-underline" href="<?php echo esc_url(B2S_Tools::getSupportLink('affiliate')); ?>"><?php esc_html_e('Yes, I want to upgrade to Blog2Social Premium', 'blog2social'); ?></a>