送信中と送信後のスタイルが無効にならないようにするには?
-
お世話になります。
テンプレートを開発すれば問題ないのでしょうが、能力と時間がないため、
乱暴かとは思いますが、テンプレートのindex.phpを改造(一番下を参照)
して、周囲のデザインだけ変えようとしています。フォームとしての動作には、問題がないのですが、スタイルが無効になるようで、
送信中のajax-loader.gifが表示されず、下のメッセージの緑枠が消えてしまいます。
「あなたのメッセージは送信されました。ありがとうございました。」http://contactform7.com/ja/2009/11/22/loading-javascript-and-stylesheet-only-when-it-is-necessary-2/
を参考に、ページを以下のようにしたのですが、ダメでした。<?php
if ( function_exists( ‘wpcf7_enqueue_scripts’ ) ) {
wpcf7_enqueue_scripts();
wpcf7_enqueue_styles();
}
?>
[contact-form 1 "コンタクトフォーム 1"]何か、ヒントでもご教示いただければ幸いです。
よろしくお願いいたします。改造した、index.phpは以下の通りです。
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=utf-8″ />
<script type=”text/javascript” src=”js/rollover.js”></script>
<link rel=”stylesheet” href=”landing.css” type=”text/css” />
</head>
<body>
<div id=”wrapper”>
<div id=”head” class=”clearfix”>
<!–head–></div>
<div id=”contents”><?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id=”post-<?php the_ID(); ?>” <?php post_class(); ?>>
<?php if ( is_front_page() ) { ?>
<h2 class=”entry-title”><?php the_title(); ?></h2>
<?php } else { ?>
<h1 class=”entry-title”><?php the_title(); ?></h1>
<?php } ?>
<div class=”entry-content”>
<?php the_content(); ?>
<?php wp_link_pages( array( ‘before’ => ‘<div class=”page-link”>’ . __( ‘Pages:’, ‘twentyten’ ), ‘after’ => ‘</div>’ ) ); ?>
<?php edit_post_link( __( ‘Edit’, ‘twentyten’ ), ‘<span class=”edit-link”>’, ‘</span>’ ); ?>
</div><!– .entry-content –>
</div><!– #post-## –>
<?php comments_template( ”, true ); ?>
<?php endwhile; ?><div id=”footer”></div>
<!–contents–> /div>
<!–wrapper–></div>
</body>
</html>
- トピック「送信中と送信後のスタイルが無効にならないようにするには?」には新たに返信することはできません。