/* 
Theme Name: LarisDigital WP Child
Theme URI: https://www.tokopress.id/downloads/larisdigital/
Author: TokoPressID
Author URI: https://www.tokopress.id
Description: A specialized TokoPressID theme optimized for selling digital products through WooCommerce, serving both Indonesian and global markets.
Version: 2.3.1
Template: larisdigital-wp
Tags: one-column, two-columns, blog, e-commerce
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/

/* Please add your custom CSS code below this line. */
function tombol_wa_dinamis_rumasinau() {
    // Ganti nomor di bawah ini dengan nomor WA Admin (format 62...)
    $nomor_wa = '628568598823'; 
    
    // Mengambil judul kursus secara otomatis
    $judul_kursus = get_the_title();
    
    // Membuat pesan otomatis
    $pesan = "Halo RumaSinau, assalammualaikum. Salam kenal ya. Saya tertarik bertanya mengenai kelas: *" . $judul_kursus . "*";
    
    // Encode pesan agar bisa dibaca URL
    $pesan_encoded = urlencode($pesan);
    
    // Output Tombol
    $html = '<div class="wa-chat-btn-wrapper" style="margin-top: 15px;">';
    $html .= '<a href="https://wa.me/' . $nomor_wa . '?text=' . $pesan_encoded . '" target="_blank" style="background-color: #25D366; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; display: inline-block; font-weight: bold; font-family: sans-serif;">';
    $html .= ' Tanya via WhatsApp'; // Ikon WA unicode (opsional)
    $html .= '</a>';
    $html .= '</div>';
    
    return $html;
}
add_shortcode('tombol_wa_kursus', 'tombol_wa_dinamis_rumasinau');


