Version Description
- Minor bug fixes
- WordPress Version test upto 5.3
Download this release
Release Info
Developer | Access Keys |
Plugin | AccessPress Twitter Feed – Twitter Feed for WordPress |
Version | 1.6.2 |
Comparing to | |
See all releases |
Code changes from version 1.6.1 to 1.6.2
- accesspress-twitter-feed.php +3 -3
- inc/backend/boards/more-wp.php +1 -1
- inc/frontend/shortcode.php +1 -1
- readme.txt +7 -3
accesspress-twitter-feed.php
CHANGED
@@ -4,7 +4,7 @@ defined('ABSPATH') or die('No script kiddies please!');
|
|
4 |
* Plugin Name: WP TFeed
|
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.6.
|
8 |
* Author: AccessPress Themes
|
9 |
* Author URI: http://accesspressthemes.com
|
10 |
* Text Domain: accesspress-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.6.
|
28 |
}
|
29 |
|
30 |
if (!defined('APTF_TD')) {
|
@@ -340,7 +340,7 @@ if (!class_exists('APTF_Class')) {
|
|
340 |
|
341 |
public function aptf_admin_footer_text($text)
|
342 |
{
|
343 |
-
if ( $_GET['page'] == 'ap-twitter-feed' ) {
|
344 |
$link = 'https://wordpress.org/support/plugin/accesspress-twitter-feed/reviews/#new-post';
|
345 |
$pro_link = 'https://1.envato.market/c/1302794/275988/4415?u=https%3A%2F%2Fcodecanyon.net%2Fitem%2Faccesspress-twitter-feed-pro%2F11029697';
|
346 |
$text = 'Enjoyed WP TFeed? <a href="' . $link . '" target="_blank">Please leave us a ★★★★★ rating</a> We really appreciate your support! | Try premium version of <a href="' . $pro_link . '" target="_blank">Accesspress Twitter Feed Pro</a> - more features, more power!';
|
4 |
* Plugin Name: WP TFeed
|
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.6.2
|
8 |
* Author: AccessPress Themes
|
9 |
* Author URI: http://accesspressthemes.com
|
10 |
* Text Domain: accesspress-twitter-feed
|
24 |
define('APTF_CSS_DIR', plugin_dir_url(__FILE__) . 'css');
|
25 |
}
|
26 |
if (!defined('APTF_VERSION')) {
|
27 |
+
define('APTF_VERSION', '1.6.2');
|
28 |
}
|
29 |
|
30 |
if (!defined('APTF_TD')) {
|
340 |
|
341 |
public function aptf_admin_footer_text($text)
|
342 |
{
|
343 |
+
if ( isset($_GET['page'] ) && $_GET['page'] == 'ap-twitter-feed' ) {
|
344 |
$link = 'https://wordpress.org/support/plugin/accesspress-twitter-feed/reviews/#new-post';
|
345 |
$pro_link = 'https://1.envato.market/c/1302794/275988/4415?u=https%3A%2F%2Fcodecanyon.net%2Fitem%2Faccesspress-twitter-feed-pro%2F11029697';
|
346 |
$text = 'Enjoyed WP TFeed? <a href="' . $link . '" target="_blank">Please leave us a ★★★★★ rating</a> We really appreciate your support! | Try premium version of <a href="' . $pro_link . '" target="_blank">Accesspress Twitter Feed Pro</a> - more features, more power!';
|
inc/backend/boards/more-wp.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
|
6 |
<p>AND IF THIS PLUGIN HAS IMPRESSED YOU, THEN YOU WOULD ENJOY OUR OTHER PROJECTS TOO. DO CHECK THESE OUT :</p>
|
7 |
|
8 |
-
<p><a href="https://
|
9 |
|
10 |
<p> <a href="https://themeforest.net/user/accesskeys/portfolio">Premium WordPress Themes</a> - <strong>6 premium WordPress</strong> themes well suited for all sort of websites. Professional, well coded and highly configurable themes for you. </p>
|
11 |
|
5 |
|
6 |
<p>AND IF THIS PLUGIN HAS IMPRESSED YOU, THEN YOU WOULD ENJOY OUR OTHER PROJECTS TOO. DO CHECK THESE OUT :</p>
|
7 |
|
8 |
+
<p><a href="https://wpallclub.com/">WPAll Club</a> - A complete WordPress resources club. WordPress tutorials, blogs, curated free and premium themes and plugins, WordPress deals, offers, hosting info and more.</p>
|
9 |
|
10 |
<p> <a href="https://themeforest.net/user/accesskeys/portfolio">Premium WordPress Themes</a> - <strong>6 premium WordPress</strong> themes well suited for all sort of websites. Professional, well coded and highly configurable themes for you. </p>
|
11 |
|
inc/frontend/shortcode.php
CHANGED
@@ -19,7 +19,7 @@ if(isset($atts['follow_button'])){
|
|
19 |
|
20 |
}
|
21 |
if(isset($tweets->errors)){
|
22 |
-
$fallback_message = ($aptf_settings['fallback_message']=='')?__('Something went wrong with the twitter. Please check your credentials and twitter username in the twitter settings.','accesspress-twitter-feed'):esc_attr($aptf_settings['fallback_message']);
|
23 |
?>
|
24 |
<p><?php echo $fallback_message;?></p>
|
25 |
<?php
|
19 |
|
20 |
}
|
21 |
if(isset($tweets->errors)){
|
22 |
+
$fallback_message = ( isset( $aptf_settings['fallback_message'] ) && $aptf_settings['fallback_message']=='')?__('Something went wrong with the twitter. Please check your credentials and twitter username in the twitter settings.','accesspress-twitter-feed'):esc_attr($aptf_settings['fallback_message']);
|
23 |
?>
|
24 |
<p><?php echo $fallback_message;?></p>
|
25 |
<?php
|
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: 4.0
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 1.6.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -85,7 +85,7 @@ WP TFeed works best with every WordPress theme. Its even more remarkable when us
|
|
85 |
|
86 |
AND IF THIS PLUGIN HAS IMPRESSED YOU, THEN YOU WOULD ENJOY OUR OTHER PROJECTS TOO. DO CHECK THESE OUT :
|
87 |
|
88 |
-
[WPAll Club](https://
|
89 |
|
90 |
[Premium WordPress Themes](https://themeforest.net/user/accesskeys/portfolio) - 6 premium WordPress themes well suited for all sort of websites. Professional, well coded and highly configurable themes for you.
|
91 |
|
@@ -125,6 +125,10 @@ Once you install the plugin , you can check some general documentation about how
|
|
125 |
|
126 |
|
127 |
== Changelog ==
|
|
|
|
|
|
|
|
|
128 |
= 1.6.1 =
|
129 |
* Minor bug fixes
|
130 |
|
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: 4.0
|
6 |
+
Tested up to: 5.3
|
7 |
+
Stable tag: 1.6.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
85 |
|
86 |
AND IF THIS PLUGIN HAS IMPRESSED YOU, THEN YOU WOULD ENJOY OUR OTHER PROJECTS TOO. DO CHECK THESE OUT :
|
87 |
|
88 |
+
[WPAll Club](https://wpallclub.com/) - A complete WordPress resources club. WordPress tutorials, blogs, curated free and premium themes and plugins, WordPress deals, offers, hosting info and more.
|
89 |
|
90 |
[Premium WordPress Themes](https://themeforest.net/user/accesskeys/portfolio) - 6 premium WordPress themes well suited for all sort of websites. Professional, well coded and highly configurable themes for you.
|
91 |
|
125 |
|
126 |
|
127 |
== Changelog ==
|
128 |
+
= 1.6.2 =
|
129 |
+
* Minor bug fixes
|
130 |
+
* WordPress Version test upto 5.3
|
131 |
+
|
132 |
= 1.6.1 =
|
133 |
* Minor bug fixes
|
134 |
|