既存のテーマを利用したショップ作り(その1)ではnanbu様にアドバイスにより解決に導いて頂きました。そこで今回は(その2)商品ページのみを作りたいと考えております。前回の解決もデベロップバージョンを適用することで解決しましたが、この商品ページは(その1)と連動して記述を変更する部分があります。私の場合は何処の部分に手を加えればよいのでしょうか。お忙しいと思いますが、どうぞご教授下さい。
【現在の使用環境は以下となっております】
・Welcart:0.5.2
・サーバー:Apache/2.2.13 (Unix) mod_ssl/2.2.13 OpenSSL/0.9.8i PHP/4.4.9
・MySQL:5.0.51b
・PHP:5.2.10
・使用テーマ:carrington Ver2.2
・ブラウザ:Firefoxバージョン3.5.10
・Wordpressバージョン:3.0-ja(今回バージョンアップしましたが変化なし)
(Welcartのホーム画面より利用環境を書きました)
・現在、Carringtonというテーマをダウンロードして運用してます。
http://wordpress.org/extend/themes/carrington-blog
【category.php】
‘<?php
// This file is part of the Carrington Blog Theme for WordPress
// http://carringtontheme.com
//
// Copyright (c) 2008-2009 Crowd Favorite, Ltd. All rights reserved.
// http://crowdfavorite.com
//
// Released under the GPL license
// http://www.opensource.org/licenses/gpl-license.php
//
// **********************************************************************
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
// **********************************************************************
if (__FILE__ == $_SERVER) { die(); }
if (CFCT_DEBUG) { cfct_banner(__FILE__); }
get_header();
$cat_title = ‘‘.single_cat_title(”, false).’‘;
?>
<div id=”content”>
<h1 class=”page-title”><?php printf(__(‘Category Archives: %s’, ‘carrington-blog’), $cat_title); ?></h1>
<div class=”description”><?php echo category_description(); ?></div>
<?php
cfct_loop();
cfct_misc(‘nav-posts’);
?>
</div>
<?php
get_sidebar();
get_footer();
?>’