# wp-to-buffer/6.2.3/lib/social/views/settings-profiles-missing.php

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

- Page: https://pluginprobe.com/plugins/wp-to-buffer/6.2.3/code/lib/social/views/settings-profiles-missing.php
- Raw: https://pluginprobe.com/plugins/wp-to-buffer/6.2.3/raw/lib/social/views/settings-profiles-missing.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.3/code/lib/social/views/settings-profiles-missing.php#L10-L20`.

```php
<?php
/**
 * Outputs Settings View when no Profiles are connected to the API
 *
 * @since    3.0.0
 *
 * @package WPZinc\Social
 * @author  WP Zinc
 */

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly.
}
?>
<div class="postbox">
	<div class="wpzinc-option">
		<p class="description">
			<?php
			echo esc_html(
				sprintf(
					/* translators: %1$s: Social Media Service Name (Buffer, Hootsuite) */
					__( 'You must connect at least one social media account in %1$s for this Plugin to send status updates to it.', 'wp-to-buffer' ),
					$this->base->plugin->account
				)
			);
			?>
		</p>
		<p class="description">
			<?php esc_html_e( 'Once complete, refresh this page to enable and configure statuses for each social media account.', 'wp-to-buffer' ); ?>
		</p>
	</div>
	<div class="wpzinc-option">
		<a href="<?php echo esc_attr( $this->base->get_class( 'api' )->get_connect_profiles_url() ); ?>" target="_blank" rel="nofollow noopener" class="button button-primary">
			<?php esc_html_e( 'Connect Profiles', 'wp-to-buffer' ); ?>
		</a>
	</div>
</div>

```
