# wp-to-buffer/6.2.2/lib/social/views/settings-post-actionheader-upgrade.php

Social Media Auto Poster – Schedule &amp; Publish to Buffer, version 6.2.2. 32 lines.

- Page: https://pluginprobe.com/plugins/wp-to-buffer/6.2.2/code/lib/social/views/settings-post-actionheader-upgrade.php
- Raw: https://pluginprobe.com/plugins/wp-to-buffer/6.2.2/raw/lib/social/views/settings-post-actionheader-upgrade.php
- Modified: 2026-08-19T11:19:16+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-to-buffer/6.2.2/code/lib/social/views/settings-post-actionheader-upgrade.php#L10-L20`.

```php
<?php
/**
 * Outputs an upgrade notice for each profile, when the Free version of the Plugin is used.
 *
 * @package WPZinc\Social
 * @author  WP Zinc
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}
?>
<div class="wpzinc-option highlight">
	<div class="full">
		<h4><?php esc_html_e( 'Want to define different Status for each Social Media Account?', 'wp-to-buffer' ); ?></h4>

		<p>
			<?php
			echo esc_html(
				sprintf(
				/* translators: Plugin Name */
					__( '%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' ),
					$this->base->plugin->displayName
				)
			);
			?>
		</p>

		<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>
	</div>
</div>

```
