welcart テーマファイルの問題点、
テーマフォルダ内に
wc_templates
を作成、その中に
cart
member
その他ファイルで稼働するが、
多分、welcartがプラグインフォルダからか、一度取得するためか、
サイト特有に持たせてあるカスタムフィールド値を持っていない。
試しに、
wc_templatesの中のwc_cart_page.phpのスタートに
$footer_sale=”12″;
と持たせても、
ヘッダーで処理される$footer_saleな分岐が稼働しない。ないですよとなる。
admin_siteで作った色々なセッティングを読み込みできないので、
wc_cart_page.phpを
<?php include(get_stylesheet_directory(). "/4_custom/welcart/page_welcart.php"); ?>
/4_custom/welcart/page_welcart.phpを
<?php
include(get_template_directory() . "/func/admin_site.php");
//welcart のカテゴリ
$welcart_cat= 877;
$welcart_cat_out= -877;
$itemreco = 878;
$itemnew = 879;
//商品ジャンルのカテゴリ
$welcart_genre= 880;
$souryou_muryou = '4400';
include(get_template_directory() . "/5_head/d_0_header.php");?>
<body id="welcart_body" class="welcart_top">
と始めたらなんとか動いた。
ただ、カート内のテンプレートはすべてのページ作る必要がある
また、シングルもこれで作らないと、
skuセレクト
商品バリエーション プラグイン
もつかえなさそう?