AccessPress Twitter Feed – Twitter Feed for WordPress - Version 1.1.1

Version Description

  • Added Promo Banner in sidebar
Download this release

Release Info

Developer Access Keys
Plugin Icon 128x128 AccessPress Twitter Feed – Twitter Feed for WordPress
Version 1.1.1
Comparing to
See all releases

Code changes from version 1.1.0 to 1.1.1

accesspress-twitter-feed.php CHANGED
@@ -4,7 +4,7 @@ defined('ABSPATH') or die('No script kiddies please!');
4
  * Plugin Name: AccessPress Twitter Feed
5
  * Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-twitter-feed/
6
  * Description: A plugin to show your twitter feed in your site with various configurable settings
7
- * Version: 1.1.0
8
  * Author: AccessPress Themes
9
  * Author URI: http://accesspressthemes.com
10
  * Text Domain: ap-twitter-feed
@@ -24,7 +24,7 @@ if (!defined('APTF_CSS_DIR')) {
24
  define('APTF_CSS_DIR', plugin_dir_url(__FILE__) . 'css');
25
  }
26
  if (!defined('APTF_VERSION')) {
27
- define('APTF_VERSION', '1.1.0');
28
  }
29
 
30
  if (!defined('APTF_TD')) {
4
  * Plugin Name: AccessPress Twitter Feed
5
  * Plugin URI: https://accesspressthemes.com/wordpress-plugins/accesspress-twitter-feed/
6
  * Description: A plugin to show your twitter feed in your site with various configurable settings
7
+ * Version: 1.1.1
8
  * Author: AccessPress Themes
9
  * Author URI: http://accesspressthemes.com
10
  * Text Domain: ap-twitter-feed
24
  define('APTF_CSS_DIR', plugin_dir_url(__FILE__) . 'css');
25
  }
26
  if (!defined('APTF_VERSION')) {
27
+ define('APTF_VERSION', '1.1.1');
28
  }
29
 
30
  if (!defined('APTF_TD')) {
css/backend.css CHANGED
@@ -169,4 +169,27 @@ and open the template in the editor.
169
  }
170
  #aptf-about-board h3{
171
  padding-bottom: 0;
172
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
169
  }
170
  #aptf-about-board h3{
171
  padding-bottom: 0;
172
+ }
173
+ .aptf-promo {
174
+ float: left;
175
+ width: 27%;
176
+ margin-left: 20px;
177
+ }
178
+ input.aptf-demo-btn {
179
+ background: #FFFFFF;
180
+ width: 147px;
181
+ height: 43px;
182
+ border-radius: 5px;
183
+ }
184
+ input.aptf-upgrade-btn {
185
+ background: #C10100;
186
+ width: 147px;
187
+ height: 43px;
188
+ border-radius: 5px;
189
+ color:white;
190
+ }
191
+ .aptf-promo-actions {
192
+ margin-bottom: 10px;
193
+ margin-top: 10px;
194
+ }
195
+ .aptf-promo-actions input[type="button"]:hover{cursor: pointer;}
images/upgrade-1.jpg ADDED
Binary file
images/upgrade-2.jpg ADDED
Binary file
inc/backend/settings.php CHANGED
@@ -1,4 +1,4 @@
1
- <?php
2
  $aptf_settings = $this->aptf_settings;
3
  //$this->print_array($aptf_settings);
4
  ?>
@@ -13,37 +13,53 @@ $aptf_settings = $this->aptf_settings;
13
  </ul>
14
  </div>
15
  <div class="aptf-board-wrapper">
16
- <?php if(isset($_SESSION['aptf_msg'])){?>
17
- <div class="aptf-message"><?php echo $_SESSION['aptf_msg'];unset($_SESSION['aptf_msg']);?></div>
 
 
 
18
  <?php }
19
  ?>
20
- <form method="post" action="<?php echo admin_url().'admin-post.php';?>">
21
  <input type="hidden" name="action" value="aptf_form_action"/>
22
- <?php
23
- /**
24
- * Settings Panel
25
- */
26
- include('boards/main-settings.php');
27
-
28
- /**
29
- * How To use Panel
30
- */
31
- include('boards/how-to-use.php');
32
-
33
- /**
34
- * About Panel
35
- */
36
- include('boards/about.php');
37
- ?>
38
- <?php
39
- wp_nonce_field('aptf_action_nonce','aptf_nonce_field');
40
- $restore_nonce = wp_create_nonce('aptf-restore-nonce');
41
- ?>
42
- <input type="submit" name="aptf_settings_submit" value="<?php _e('Save Settings',APTF_TD);?>" class="button button-primary"/>
43
- <a href="<?php echo admin_url().'admin-post.php?action=aptf_restore_settings&_wpnonce='.$restore_nonce;?>" onclick="return confirm('<?php _e('Are you sure you want to restore default settings?',APTF_TD)?>');"><input type="button" value="<?php _e('Restore Default Settings',APTF_TD);?>" class="button button-primary"/></a>
44
- <a href="<?php echo admin_url().'admin-post.php?action=aptf_delete_cache';?>" onclick="return confirm('<?php _e('Are you sure you want to delete cache?',APTF_TD)?>');"><input type="button" value="<?php _e('Delete Cache',APTF_TD);?>" class="button button-primary"/></a>
45
- </form>
46
- </div>
47
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
48
  </div>
49
 
1
+ <?php
2
  $aptf_settings = $this->aptf_settings;
3
  //$this->print_array($aptf_settings);
4
  ?>
13
  </ul>
14
  </div>
15
  <div class="aptf-board-wrapper">
16
+ <?php if (isset($_SESSION['aptf_msg'])) { ?>
17
+ <div class="aptf-message"><?php
18
+ echo $_SESSION['aptf_msg'];
19
+ unset($_SESSION['aptf_msg']);
20
+ ?></div>
21
  <?php }
22
  ?>
23
+ <form method="post" action="<?php echo admin_url() . 'admin-post.php'; ?>">
24
  <input type="hidden" name="action" value="aptf_form_action"/>
25
+ <?php
26
+ /**
27
+ * Settings Panel
28
+ */
29
+ include('boards/main-settings.php');
30
+
31
+ /**
32
+ * How To use Panel
33
+ */
34
+ include('boards/how-to-use.php');
35
+
36
+ /**
37
+ * About Panel
38
+ */
39
+ include('boards/about.php');
40
+ ?>
41
+ <?php
42
+ wp_nonce_field('aptf_action_nonce', 'aptf_nonce_field');
43
+ $restore_nonce = wp_create_nonce('aptf-restore-nonce');
44
+ ?>
45
+ <input type="submit" name="aptf_settings_submit" value="<?php _e('Save Settings', APTF_TD); ?>" class="button button-primary"/>
46
+ <a href="<?php echo admin_url() . 'admin-post.php?action=aptf_restore_settings&_wpnonce=' . $restore_nonce; ?>" onclick="return confirm('<?php _e('Are you sure you want to restore default settings?', APTF_TD) ?>');"><input type="button" value="<?php _e('Restore Default Settings', APTF_TD); ?>" class="button button-primary"/></a>
47
+ <a href="<?php echo admin_url() . 'admin-post.php?action=aptf_delete_cache'; ?>" onclick="return confirm('<?php _e('Are you sure you want to delete cache?', APTF_TD) ?>');"><input type="button" value="<?php _e('Delete Cache', APTF_TD); ?>" class="button button-primary"/></a>
48
+ </form>
49
+ </div>
50
+ </div>
51
+ <div class="aptf-promo">
52
+ <a href="http://codecanyon.net/item/accesspress-twitter-feed-pro/11029697?ref=AccessKeys" target="_blank"><img src="<?php echo APTF_IMAGE_DIR . '/upgrade-1.jpg' ?>"/></a>
53
+ <div class="aptf-promo-actions">
54
+ <a href="http://accesspressthemes.com/demo/wordpress-plugins/accesspress-twitter-feed-pro/" title="Demo" target="_blank"><input type="button" class="aptf-demo-btn" value="Demo"/></a>
55
+ <a href="http://codecanyon.net/item/accesspress-twitter-feed-pro/11029697?ref=AccessKeys" title="Upgrade" target="_blank"><input type="button" class="aptf-upgrade-btn" value="Upgrade"/></a>
56
+ </div>
57
+
58
+ <a href="http://codecanyon.net/item/accesspress-twitter-feed-pro/11029697?ref=AccessKeys" target="_blank"><img src="<?php echo APTF_IMAGE_DIR . '/upgrade-2.jpg' ?>"/></a>
59
+ <div class="aptf-promo-actions">
60
+ <a href="http://accesspressthemes.com/demo/wordpress-plugins/accesspress-twitter-feed-pro/" title="Demo" target="_blank"><input type="button" class="aptf-demo-btn" value="Demo"/></a>
61
+ <a href="http://codecanyon.net/item/accesspress-twitter-feed-pro/11029697?ref=AccessKeys" title="Upgrade" target="_blank"><input type="button" class="aptf-upgrade-btn" value="Upgrade"/></a>
62
+ </div>
63
+ </div>
64
  </div>
65
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: twitter, twitter feeds, twitter slider, twitter feeds slider, twitter plug
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.1
7
- Stable tag: 1.1.0
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -83,6 +83,9 @@ Once you install the plugin , you can check some general documentation about how
83
 
84
 
85
  == Changelog ==
 
 
 
86
  = 1.1.0 =
87
  * API updated
88
  * Small bug for time elasped date format fixed
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
  Tested up to: 4.1
7
+ Stable tag: 1.1.1
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
83
 
84
 
85
  == Changelog ==
86
+ = 1.1.1 =
87
+ * Added Promo Banner in sidebar
88
+
89
  = 1.1.0 =
90
  * API updated
91
  * Small bug for time elasped date format fixed