Skip to content

お問い合わせをSSL対応にする

zen cartデフォルトだと、なぜかお問合せへのリンクがSSLになっていません。

修正は
/public_html/includes/modules/sideboxes/information.phpの

if (DEFINE_CONTACT_US_STATUS <= 1) {

$information[] = ‘<a href="’ . zen_href_link(FILENAME_CONTACT_US) . ‘">’
. BOX_INFORMATION_CONTACT . ‘</a>’;

}

を以下に変更。

if (DEFINE_CONTACT_US_STATUS <= 1) {

$information[] = ‘<a href="’ . zen_href_link(FILENAME_CONTACT_US, ”,
‘SSL’) . ‘">’ . BOX_INFORMATION_CONTACT . ‘</a>’;

}

Bookmark this on Delicious

Categories: zen cart.

Tags: