admin管理员组文章数量:1125549
I am trying to customize the text of the window alert but in front end i see this
<p class="custom-alert"><span class="custom-alert-title" style="color: red; font-weight: bold;">ΣΗΜΑΝΤΙΚΗ ΕΙΔΟΠΟΙΗΣΗ:</span> Κάντε τις απαραίτητες επιλογές σε μεγέθη, σχέδια ή χρώματα πριν προσθέσετε αυτό το προϊόν στο καλάθι σας.</p>
code was used into functions.php
add_filter( 'woocommerce_get_script_data', 'change_alert_text', 10, 2 );
function change_alert_text( $params, $handle ) {
if ( $handle === 'wc-add-to-cart-variation' ) {
$custom_alert = '<p class="custom-alert"><span class="custom-alert-title" style="color: red; font-weight: bold;">ΣΗΜΑΝΤΙΚΗ ΕΙΔΟΠΟΙΗΣΗ:</span> Κάντε τις απαραίτητες επιλογές σε μεγέθη, σχέδια ή χρώματα πριν προσθέσετε αυτό το προϊόν στο καλάθι σας.</p>';
$params['i18n_make_a_selection_text'] = $custom_alert;
}
return $params;
}
本文标签:
版权声明:本文标题:customization - Customize style of window alert text 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736602281a1945243.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论