How can I insert a button that looks like this? I could not find this button in the short code. I just want my button to look like this because it looks really pretty (when i put my mouse on the button, it turns white)
Add this code in your wp-content/plugins/Wplms-customizer/wplms-cutomizer.php
if (!function_exists('vibe_course_button')) {
function vibe_course_button( $atts, $content = null ) {
extract(shortcode_atts(array(
'id' => ''
), $atts));
if(!is_numeric($id))
return;
ob_start();
the_course_button($id);
$html = ob_get_clean();
return $html;
}
add_shortcode('course_button', 'vibe_course_button');
}
And then use this shortcode : [course_button id=" Course id "]
Where Course id
is the id of the course .