Revive Old Posts – Auto Post to Social Media - Version 7.3.7

Version Description

Download this release

Release Info

Developer codeinwp
Plugin Icon 128x128 Revive Old Posts – Auto Post to Social Media
Version 7.3.7
Comparing to
See all releases

Code changes from version 7.3.6 to 7.3.7

inc/view-advancedscheduling.php CHANGED
@@ -51,8 +51,11 @@
51
  foreach($available as $network_name) {
52
  $networks[] = $network_name;
53
  }
54
- $networks[] = null;
55
 
 
 
 
56
  $count = 20;
57
  if(apply_filters('rop_is_business_user', false)){
58
  $count = 100;
51
  foreach($available as $network_name) {
52
  $networks[] = $network_name;
53
  }
54
+ if(count($networks) > 1){
55
 
56
+ $networks[] = null;
57
+
58
+ }
59
  $count = 20;
60
  if(apply_filters('rop_is_business_user', false)){
61
  $count = 100;
inc/view-postformat.php CHANGED
@@ -12,11 +12,11 @@
12
  <?php endforeach;?>
13
  </ul>
14
  <?php endif; ?>
15
- <?php $first = true; foreach($format_fields as $network_name=>$network_details) { ?>
16
 
17
  <div class="tab-vertical <?php if($first){ ?> active <?php } ?>">
18
 
19
- <?php foreach ($network_details as $key=>$field) {
20
  $field['option'] = $network_name."_".$field['option'];
21
  ?>
22
  <fieldset class="option twp<?php echo $key; ?>" <?php if(isset($field['dependency'])) { ?> data-dependent='<?php echo json_encode($field['dependency']); ?>' <?php } ?>>
12
  <?php endforeach;?>
13
  </ul>
14
  <?php endif; ?>
15
+ <?php $first = true; foreach($networks as $network_name) { ?>
16
 
17
  <div class="tab-vertical <?php if($first){ ?> active <?php } ?>">
18
 
19
+ <?php foreach ($format_fields[$network_name] as $key=>$field) {
20
  $field['option'] = $network_name."_".$field['option'];
21
  ?>
22
  <fieldset class="option twp<?php echo $key; ?>" <?php if(isset($field['dependency'])) { ?> data-dependent='<?php echo json_encode($field['dependency']); ?>' <?php } ?>>
inc/view-postschedule.php CHANGED
@@ -15,7 +15,7 @@
15
  </ul>
16
  <?php endif; ?>
17
 
18
- <?php $first = true; foreach($all_networks as $network_name ) { ?>
19
 
20
  <div class="tab-vertical <?php if($first){ ?> active <?php } ?>" data-network="<?php echo $network_name; ?>">
21
  <input type="hidden" value="<?php echo @$cwp_top_global_schedule[$network_name.'_schedule_type_selected'];?>" id="<?php echo $network_name.'_schedule_type_selected' ?>" name="<?php echo $network_name.'_schedule_type_selected' ?>" />
15
  </ul>
16
  <?php endif; ?>
17
 
18
+ <?php $first = true; foreach($networks as $network_name ) { ?>
19
 
20
  <div class="tab-vertical <?php if($first){ ?> active <?php } ?>" data-network="<?php echo $network_name; ?>">
21
  <input type="hidden" value="<?php echo @$cwp_top_global_schedule[$network_name.'_schedule_type_selected'];?>" id="<?php echo $network_name.'_schedule_type_selected' ?>" name="<?php echo $network_name.'_schedule_type_selected' ?>" />
readme.txt CHANGED
@@ -125,6 +125,10 @@ https://themeisle.com/plugins/tweet-old-post-lite/
125
 
126
  == Changelog ==
127
 
 
 
 
 
128
  **New in v7.3.6**
129
 
130
  * Fixed issue sample post rendering
125
 
126
  == Changelog ==
127
 
128
+ **New in v7.3.7**
129
+
130
+ * Fixed issue with inverted settings in post format and custom schedule
131
+
132
  **New in v7.3.6**
133
 
134
  * Fixed issue sample post rendering
tweet-old-post.php CHANGED
@@ -4,7 +4,7 @@
4
  # Plugin URI: https://themeisle.com/plugins/tweet-old-post-lite/
5
  # Description: Wordpress plugin that helps you to keeps your old posts alive by sharing them and driving more traffic to them from twitter/facebook or linkedin. It also helps you to promote your content. You can set time and no of posts to share to drive more traffic.For questions, comments, or feature requests, <a href="https://themeisle.com/contact/?utm_source=plugindesc&utm_medium=announce&utm_campaign=top">contact </a> us!
6
  # Author: ThemeIsle
7
- # Version: 7.3.6
8
  # Author URI: https://themeisle.com/
9
  # Text Domain: tweet-old-post
10
  # Domain Path: /languages
@@ -19,7 +19,7 @@ define("ROPJSFILE", plugins_url('js/master.js',__FILE__ ));
19
  define("ROPJSCOUNTDOWN", plugins_url('js/countdown.js',__FILE__ ));
20
  define("ROPPLUGINBASENAME", plugin_basename(__FILE__));
21
  define('ROP_TOP_FB_API_VERSION','v2.0');
22
- define('ROP_VERSION','7.3.6');
23
  // Require core.
24
  require_once(ROPPLUGINPATH."/inc/core.php");
25
  // Require core.
4
  # Plugin URI: https://themeisle.com/plugins/tweet-old-post-lite/
5
  # Description: Wordpress plugin that helps you to keeps your old posts alive by sharing them and driving more traffic to them from twitter/facebook or linkedin. It also helps you to promote your content. You can set time and no of posts to share to drive more traffic.For questions, comments, or feature requests, <a href="https://themeisle.com/contact/?utm_source=plugindesc&utm_medium=announce&utm_campaign=top">contact </a> us!
6
  # Author: ThemeIsle
7
+ # Version: 7.3.7
8
  # Author URI: https://themeisle.com/
9
  # Text Domain: tweet-old-post
10
  # Domain Path: /languages
19
  define("ROPJSCOUNTDOWN", plugins_url('js/countdown.js',__FILE__ ));
20
  define("ROPPLUGINBASENAME", plugin_basename(__FILE__));
21
  define('ROP_TOP_FB_API_VERSION','v2.0');
22
+ define('ROP_VERSION','7.3.7');
23
  // Require core.
24
  require_once(ROPPLUGINPATH."/inc/core.php");
25
  // Require core.