2 changes: 1 addition & 1 deletion includes/class-rop.php
Expand Up @@ -68,7 +68,7 @@ class Rop {
public function __construct() {

$this->plugin_name = 'rop';
$this->version = '9.0.13';
$this->version = '9.0.14';

$this->load_dependencies();
$this->set_locale();
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "tweet-old-post",
"version": "9.0.13",
"version": "9.0.14",
"description": "Tweet Old Posts plugin",
"repository": {
"type": "git",
Expand Down
21 changes: 13 additions & 8 deletions readme.txt
Expand Up @@ -250,19 +250,19 @@ If you have any questions please ask on the [support forum](https://wordpress.or

- Yes, in the free plugin you can set how many hours you’d like between each share(e.g 6 hours), ROP will automatically post to your social networks when the countdown is up. To set the days and time of the week this would require the [Pro plugin](https://revive.social/plugins/revive-old-post/).

**Is the Auto Publish (aka Auto Post) feature free?.**
**Is the Auto Publish (aka Auto Post) feature free?**

- Yes, this feature is free for the accounts that can be connected via the free plugin (Facebook and Twitter). Once you check the option to post on publish, our plugin will do the rest.

**Can I share RSS feeds to social media?.**
**Can I share RSS feeds to social media?**

- Yes, you will need our Revive Network addon which is currently in the beta stages of testing for Pro users.

**REST API error**

- This issue is normally caused by an antimalware or firewall plugin. Please try disabling all plugins(except Revive Old Posts) to see if the issue persists. If not then enable each plugin one by one while checking Revive Old Posts dashboard to see if the issue returns, that will help you determine the conflicting plugin.

**Why isn't sharing working?.**
**Why isn't sharing working?**

- Your website Cron might be faulty. This is a common WordPress issue with many plugins, see our solution doc [here](https://docs.revive.social/article/686-fix-revive-old-post-not-posting) for fixing the issue.

Expand All @@ -282,13 +282,9 @@ If you have any questions please ask on the [support forum](https://wordpress.or

- Yes, ROP can share to LinkedIn business pages as well as personal profiles.

**Any more questions or doubts?**

- Contact us at [HERE.](http://revive.social/support/) (enter "free" in the license field)

== Screenshots ==

1. Revive Old Posts dashboard(no accounts connected).
1. Revive Old Posts dashboard (no accounts connected).
2. Add account modal
3. Facebook page and Twitter account connected
4. General settings tab, only a few of the available settings are shown in this screenshot
Expand All @@ -305,6 +301,15 @@ http://revive.social/plugins/revive-old-post

== Changelog ==

##### [Version 9.0.14](https://github.com/Codeinwp/tweet-old-post/compare/v9.0.13...v9.0.14) (2023-06-06)

- Added LinkedIn new API support
- Added About Us page integration
- Fixed post sharing issue with GMB




##### [Version 9.0.13](https://github.com/Codeinwp/tweet-old-post/compare/v9.0.12...v9.0.13) (2023-03-31)

- Fixed hashtags issue with camel case text [#860](https://github.com/Codeinwp/tweet-old-post/issues/860)
Expand Down
18 changes: 16 additions & 2 deletions tweet-old-post.php
Expand Up @@ -16,7 +16,7 @@
* Plugin Name: Revive Old Posts
* Plugin URI: https://revive.social/
* 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="http://revive.social/support/?utm_source=plugindesc&utm_medium=announce&utm_campaign=top">contact </a> us!
* Version: 9.0.13
* Version: 9.0.14
* Author: revive.social
* Author URI: https://revive.social/
* Requires at least: 4.7
Expand Down Expand Up @@ -162,7 +162,7 @@ function run_rop() {
define( 'ROP_CRON_ALTERNATIVE', $use_remote_cron );

define( 'ROP_PRO_URL', 'http://revive.social/plugins/revive-old-post/' );
define( 'ROP_LITE_VERSION', '9.0.13' );
define( 'ROP_LITE_VERSION', '9.0.14' );
define( 'ROP_LITE_BASE_FILE', __FILE__ );
$debug = false;
if ( function_exists( 'wp_get_environment_type' ) ) {
Expand Down Expand Up @@ -210,6 +210,20 @@ function ( $products ) {
}
);

add_filter(
'tweet_old_post_about_us_metadata',
function() {
$global_settings = new \Rop_Global_Settings();
return array(
'logo' => ROP_LITE_URL . 'assets/img/logo_rop.png',
'location' => 'TweetOldPost',
'has_upgrade_menu' => $global_settings->license_type() < 1,
'upgrade_text' => esc_html__( 'Upgrade to Pro', 'tweet-old-post' ),
'upgrade_link' => function_exists( 'tsdk_utmify' ) ? tsdk_utmify( Rop_I18n::UPSELL_LINK, 'aboutUsPage' ) : esc_url( Rop_I18n::UPSELL_LINK ),
);
}
);

$plugin = new Rop();
$plugin->run();

Expand Down