Re: [解決済み] 「トップページへ戻る」ボタンでHTTP エラー 405
フォーラム › 使い方全般 › [解決済み] 「トップページへ戻る」ボタンでHTTP エラー 405 › Re: [解決済み] 「トップページへ戻る」ボタンでHTTP エラー 405
2011年1月18日 9:51 AM
#61298
nanbu
キーマスター
すみません間違っていました。
これでどうでしょう。
templates/cart/completion.php 48行目あたり
$html .= '<form action="' . get_option('home') . '" method="post" onKeyDown="if (event.keyCode == 13) {return false;}">'."n";
$html .= '<div class="send"><input name="top" class="back_to_top_button" type="submit" value="'.__('Back to the top page.', 'usces').'" /></div>'."n";
↓
$html .= '<form action="" method="post" onKeyDown="if (event.keyCode == 13) {return false;}">'."n";
$html .= '<div class="send"><input name="top" class="back_to_top_button" type="button" value="'.__('Back to the top page.', 'usces') . '" onclick="location.href='' . get_option('home').'" /></div>'."n";
templates/member/completion.php 34行目あたり
<form action="' . get_option('home') . '" method="post" onKeyDown="if (event.keyCode == 13) {return false;}">
<div class="send"><input name="top" type="submit" value="' . __('Back to the top page.', 'usces') . '" /></div>
↓
<form action="" method="post" onKeyDown="if (event.keyCode == 13) {return false;}">
<div class="send"><input name="top" type="button" value="' . __('Back to the top page.', 'usces') . '" onclick="location.href='' . get_option('home') . '" /></div>
つまり、submit せずにbutton とし、onclick でトップページへ飛ばしてやります。適宜調整してください。