AccessPress Twitter Feed – Twitter Feed for WordPress - Version 1.1.4

Version Description

  • Small fix for hastags
Download this release

Release Info

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

Code changes from version 1.1.3 to 1.1.4

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.3
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.3');
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.4
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.4');
28
  }
29
 
30
  if (!defined('APTF_TD')) {
inc/frontend/templates/default/template-2.php CHANGED
@@ -14,7 +14,7 @@
14
  <div class="clear"></div>
15
  <?php
16
  if ($tweet->text) {
17
- $the_tweet = $tweet->text . ' '; //adding an extra space to convert hast tag into links
18
 
19
  // i. User_mentions must link to the mentioned user's profile.
20
  if (is_array($tweet->entities->user_mentions)) {
14
  <div class="clear"></div>
15
  <?php
16
  if ($tweet->text) {
17
+ $the_tweet = ' '.$tweet->text . ' '; //adding an extra space to convert hast tag into links
18
 
19
  // i. User_mentions must link to the mentioned user's profile.
20
  if (is_array($tweet->entities->user_mentions)) {
inc/frontend/templates/default/template-3.php CHANGED
@@ -20,7 +20,7 @@
20
  <div class="clear"></div>
21
  <?php
22
  if ($tweet->text) {
23
- $the_tweet = $tweet->text . ' '; //adding an extra space to convert hast tag into links
24
 
25
  // i. User_mentions must link to the mentioned user's profile.
26
  if (is_array($tweet->entities->user_mentions)) {
20
  <div class="clear"></div>
21
  <?php
22
  if ($tweet->text) {
23
+ $the_tweet = ' '.$tweet->text . ' '; //adding an extra space to convert hast tag into links
24
 
25
  // i. User_mentions must link to the mentioned user's profile.
26
  if (is_array($tweet->entities->user_mentions)) {
inc/frontend/templates/slider/template-1.php CHANGED
@@ -20,7 +20,7 @@
20
  <div class="clear"></div>
21
  <?php
22
  if ($tweet->text) {
23
- $the_tweet = $tweet->text . ' '; //adding an extra space to convert hast tag into links
24
  /*
25
  Twitter Developer Display Requirements
26
  https://dev.twitter.com/terms/display-requirements
20
  <div class="clear"></div>
21
  <?php
22
  if ($tweet->text) {
23
+ $the_tweet = ' '.$tweet->text . ' '; //adding an extra space to convert hast tag into links
24
  /*
25
  Twitter Developer Display Requirements
26
  https://dev.twitter.com/terms/display-requirements
inc/frontend/templates/slider/template-2.php CHANGED
@@ -20,7 +20,7 @@
20
  <div class="clear"></div>
21
  <?php
22
  if ($tweet->text) {
23
- $the_tweet = $tweet->text . ' '; //adding an extra space to convert hast tag into links
24
  /*
25
  Twitter Developer Display Requirements
26
  https://dev.twitter.com/terms/display-requirements
20
  <div class="clear"></div>
21
  <?php
22
  if ($tweet->text) {
23
+ $the_tweet = ' '.$tweet->text . ' '; //adding an extra space to convert hast tag into links
24
  /*
25
  Twitter Developer Display Requirements
26
  https://dev.twitter.com/terms/display-requirements
inc/frontend/templates/slider/template-3.php CHANGED
@@ -14,7 +14,7 @@
14
  <div class="aptf-tweet-box">
15
  <?php
16
  if ($tweet->text) {
17
- $the_tweet = $tweet->text . ' '; //adding an extra space to convert hast tag into links
18
  /*
19
  Twitter Developer Display Requirements
20
  https://dev.twitter.com/terms/display-requirements
14
  <div class="aptf-tweet-box">
15
  <?php
16
  if ($tweet->text) {
17
+ $the_tweet = ' '.$tweet->text . ' '; //adding an extra space to convert hast tag into links
18
  /*
19
  Twitter Developer Display Requirements
20
  https://dev.twitter.com/terms/display-requirements
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: Access Keys
3
  Tags: twitter, twitter feeds, twitter slider, twitter feeds slider, twitter plugin, twitter feed plugin, twitter tweets, tweets, twitter tweet plugin, recent tweets widget, recent tweets plugin, recent tweet feeds
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
- Tested up to: 4.1
7
- Stable tag: 1.1.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -107,6 +107,9 @@ Once you install the plugin , you can check some general documentation about how
107
 
108
 
109
  == Changelog ==
 
 
 
110
  = 1.1.3 =
111
  * Done some update in upgrade sidebar
112
  * Updated backend message
3
  Tags: twitter, twitter feeds, twitter slider, twitter feeds slider, twitter plugin, twitter feed plugin, twitter tweets, tweets, twitter tweet plugin, recent tweets widget, recent tweets plugin, recent tweet feeds
4
  Donate link: http://accesspressthemes.com/donation/
5
  Requires at least: 3.8
6
+ Tested up to: 4.2
7
+ Stable tag: 1.1.4
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
107
 
108
 
109
  == Changelog ==
110
+ = 1.1.4 =
111
+ * Small fix for hastags
112
+
113
  = 1.1.3 =
114
  * Done some update in upgrade sidebar
115
  * Updated backend message