';
echo '
' . twoj_slideshow_t( 'Here you can find all necessary tools to manage your slideshow images and shortcode', 'twoj_slideshow' ) . '
';
echo ' ';
echo ' '.twoj_slideshow_t('Manage Slides', 'twoj_slideshow' ).' ';
if( TWOJ_SLIDESHOW_PRO != 1 ){
if( TWOJ_SLIDESHOW_MESSAGE == 1 ){
echo ' ' . twoj_slideshow_t( 'Get Premium for Free', 'twoj_slideshow') . ' ';
} else {
echo ' ' . twoj_slideshow_t( 'Upgrade to Premium', 'twoj_slideshow') . ' ';
}
}
echo ' '.twoj_slideshow_t('Get ShortCode', 'twoj_slideshow').' ';
echo ' '.twoj_slideshow_t('Resources manager help you to upload, sort, resize, rotate slideshow images. Also at the same place you can add all additional parameters for every image: description, caption, link, video link, description styling and alignment.', 'twoj_slideshow').'
';
echo '
';
echo '';
echo '
';
}
add_filter( 'cmb2_render_twoj_slideshow', 'twoj_slideshow_field', 10, 2 );
function twoj_slideshow_field_sanitise( $meta_value, $field ) {
if ( empty( $meta_value ) ) {
$meta_value = '';
} else {
$meta_value = explode( ',', $meta_value );
}
return $meta_value;
}