Repository URL to install this package:
Version:
1.2.1 ▾
|
<?php
/**
* Skins actions
*/
?>
<div class="jet-skins-actions">
<a href="<?php $this->synch_skins_link(); ?>" class="cx-button cx-button-success-style"><?php
_e( 'Synchronise Skins Library', 'jet-theme-core' );
?></a>
<?php
if ( null === $this->has_license ) {
$this->has_license = Jet_Theme_Core_Utils::get_theme_core_license();
}
if ( empty( $this->has_license ) ) {
printf(
'<a href="%1$s" class="cx-button cx-button-primary-style">%2$s</a>',
Jet_Theme_Core_Utils::active_license_link(),
__( 'Activate License to Install Skins', 'jet-theme-core' )
);
}
?>
</div>