PluginProbe
Social Media Auto Poster – Schedule & Publish to Buffer / 6.2.5
Social Media Auto Poster – Schedule & Publish to Buffer v6.2.5
6.2.5 6.2.4 6.2.3 6.2.2 6.2.1 6.2.0 6.1.2 6.1.1 6.1.0 6.0.9 6.0.8 6.0.7 6.0.6 6.0.5 6.0.4 6.0.3 6.0.2 6.0.1 6.0.0 3.8.1 3.8.2 3.8.3 3.8.4 3.8.5 3.8.6 All 126 releases
wp-to-buffer / lib / social / views / settings-post-actionheader-upgrade.php

settings-post-actionheader-upgrade.php in Social Media Auto Poster – Schedule & Publish to Buffer 6.2.5, at lib/social/views/settings-post-actionheader-upgrade.php

32 lines 953 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Outputs an upgrade notice for each profile, when the Free version of the Plugin is used.
4 *
5 * @package WPZinc\Social
6 * @author WP Zinc
7 */
8
9 if ( ! defined( 'ABSPATH' ) ) {
10 exit; // Exit if accessed directly.
11 }
12 ?>
13 <div class="wpzinc-option highlight">
14 <div class="full">
15 <h4><?php esc_html_e( 'Want to define different Status for each Social Media Account?', 'wp-to-buffer' ); ?></h4>
16
17 <p>
18 <?php
19 echo esc_html(
20 sprintf(
21 /* translators: Plugin Name */
22 __( '%s Pro allows you to define different statuses for each Social Media Account, with advanced controls for conditional publishing, tags and scheduling.', 'wp-to-buffer' ),
23 $this->base->plugin->displayName
24 )
25 );
26 ?>
27 </p>
28
29 <a href="<?php echo esc_attr( $this->base->dashboard->get_upgrade_url( 'settings_inline_upgrade' ) ); ?>" class="button button-primary" target="_blank"><?php esc_html_e( 'Upgrade', 'wp-to-buffer' ); ?></a>
30 </div>
31 </div>
32