Shop 追加手順 welcart

welcartを入れる

D/d_parts/welcart
をコピーして入れる

f4_int.less(中心less)
に
@import "../d_parts/welcart/welcart.less";
@import "../4_custom/welcart/welcart.less"; // welcart
追加



welcart_funcに
$welcart_cat= 287;
$welcart_cat_out= -287;
の商品カテゴリにのIDを記載

//除外したいカテゴリIDを入れる
    if ( ! in_array( $parent->term_id, array( 287,290 ) ) ) 
を変更

// テキストエディタにクイックタグボタンを追加
もここで変更する



シンプルカスタムフィールドで
商品詳細フィールドを作成
商品詳細
WYSIWYG
item_info
投稿




ブログトップ
記事すべて読む
part_blog_top.php

に商品を表示させないコードを追加



//ブログトップ
<?php query_posts('post_type=post&cat='.$info_cat_out.','.$welcart_cat_out .'&paged='.$paged); 
 
//記事すべて読む
<?php query_posts('post_type=post&posts_per_page=12&cat='.$info_cat_out.','.$welcart_cat_out .'&paged='.$paged); 

//part_blog_top.php
  <?php
	  $args = array(
		'posts_per_page' => 6,
		'post_type' => 'post', //カスタム投稿名
		 'cat' => $info_cat_out.','.$welcart_cat_out,
		  )
		  ?>


ブログサイドバーにカテゴリを使うなら
blog_side_menu.phpに
'exclude_tree' => $welcart_cat_out,//welcartの商品ID
を追加


アーカーイブに
<?php  //--------------------------------商品アーカイブなら
if( in_category( 'item' ) || 
//親カテゴリスラッグで分岐 ファンクションコード使用
 post_is_in_descendant_category( get_term_by( 'slug', 'item', 'category' ))): 
 ?>
<?php include(get_stylesheet_directory() . "/d_parts/welcart/welcart-archive.php"); ?>
 <? return; endif;?>

を入れてリターンさせる



カスタムアドミンでいらないものを隠す
使いやすくする
custom-admin-css.css


/*welcart 商品詳細入力の横タイトル消す*/

.smart-cf-meta-box th{display: none;}


/*商品詳細本文欄*/
.welcart-shop_page_usces_itemedit #wp-content-wrap
,.welcart-shop_page_usces_itemedit #postdivrich

/*商品詳細本文文字 これで効く不明*/
,div.inside div.itempagetitle:nth-of-type(3)

/*商品オプション*/
,#itemoption
,.welcart-shop_page_usces_itemedit #cftdiv
,.welcart-shop_page_usces_itemedit #cfs_input_991

,.welcart-shop_page_usces_itemedit #tagsdiv-post_tag
,.welcart-shop_page_usces_itemedit #postimagediv
,.welcart-shop_page_usces_itemedit #commentsdiv
,.welcart-shop_page_usces_itemedit #yarpp_relatedposts

{display: none;}


 /*SKU追加ボタンを忘れがちだから赤化*/
 #newskusubmit input{ background: #e14d43;
border-color: #d02c21;
color: #fff;
-webkit-box-shadow: inset 0 1px 0 #ec8b85,0 1px 0 rgba(0,0,0,.15);
box-shadow: inset 0 1px 0 #ec8b85,0 1px 0 rgba(0,0,0,.15);
margin-bottom:15px;}

/*編集画面がちいさいから スマート*/
#smart_custom_fields_item_info__0__ifr{min-height: 600px;}







エディター画面にテーブルcssを対応させる
editor-style.css
/*welcart*/
.size_table th{background: #ececec;text-align: center;} 
.size_table td{text-align: center;}
.size_table th,.size_table td{padding: 10px;}


xserverの管理画面でssl対応する

アップしたワードプレスの設定をhttpsに変更

htaccessに
RewriteEngine On
RewriteCond %{HTTPS} !on
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

を追加

ラインウィジェットのアイコン画像のurlをhttpsに

google jsを

http://から
//
にする。

コンテンツエディタで投稿したものは
http になっているので

すべてhttpsに変換するべし
プラグインありそう

OK