Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion includes/Classifai/Services/ServicesManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,12 @@ public function render_password_field() {
$license_key = $this->get_settings( 'license_key' );
?>
<input type="password" name="classifai_settings[license_key]" class="regular-text" value="<?php echo esc_attr( $license_key ); ?>"/>
<br /><span class="description"><?php _e( __( 'Registration is 100% free and provides update notifications and upgrades inside the dashboard.<br /><a href="https://classifaiplugin.com/#cta">Register for your key</a>', 'classifai' ) );// @codingStandardsIgnoreLine ?></span>
<br />
<span class="description">
<?php esc_html_e( 'Registration is 100% free and provides update notifications and upgrades inside the dashboard.', 'classifai' ); ?>
<br />
<a href="https://classifaiplugin.com/#cta" target="_blank" rel="noreferrer"><?php esc_html_e( 'Register for your key', 'classifai' ); ?></a>
</span>
<?php
}

Expand Down