wordpressでECサイトを作成しています。
welcartを使用しwelthemeの「TOKYO DARK」を使用しています。
目的は、
タイトルの通りですが特定のカテゴリー内の商品の詳細ページでカートに追加ボタンを非表示にしたいです。
生体の販売サイトなのですが、
爬虫類は通販での取引を禁止されているため爬虫類のカテゴリー内の商品はカートに追加できないようにしたいです。
商品に関連ありそうなところをピックアップしてcode載せます。
不足があれば追記いたします。
index.php
1<div id="content" class="two-column"> 2<div class="catbox"> 3 <?php if (have_posts()) : while (have_posts()) : the_post(); ?> 4 <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> 5 <h2 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2> 6 <div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_tags(__('Tags: '), ', ', ' — '); ?> <?php edit_post_link(__('Edit This')); ?></div> 7 <div class="storycontent"> 8 <?php the_excerpt(); ?> 9 </div> 10 </div> 11 <?php endwhile; else: ?> 12 <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> 13 <?php endif; ?> 14 <?php posts_nav_link(' — ', __('« Newer Posts'), __('Older Posts »')); ?> 15</div><!-- end of catbox --> 16</div><!-- end of content -->
wc_sku_select
1<div id="content" class="two-column itemsingle clearfix"> 2 <div class="catbox"> 3 4 <?php if (have_posts()) : the_post(); ?> 5 6 <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> 7 8 <div class="storycontent"> 9 10 <?php usces_remove_filter(); ?> 11 <?php usces_the_item(); ?> 12 <?php usces_have_skus(); ?> 13 14 <div id="itempage"> 15 16 17 18 <div class="alpha"> 19 20 <script language="javascript"> 21 $(document).ready( 22 function (){ 23 $("#itemgallery").PikaChoose({carousel:true,transition:[0]}); 24 }); 25 </script> 26 27 <div class="pikachoose"> 28 <ul id="itemgallery" class="jcarousel-skin-pika"> 29 <li><?php usces_the_itemImage(0, 750, 480, $post); ?></li> 30 <?php $imageid = usces_get_itemSubImageNums(); ?> 31 <?php foreach ( $imageid as $id ) : ?> 32 <li><?php usces_the_itemImage($id, 750, 480, $post); ?></li> 33 <?php endforeach; ?> 34 </ul> 35 </div> 36 37 </div><!-- .alpha--> 38 <div class="beta"> 39 40 <!--1SKU(SKUを1つしかもたない時の表示)--> 41 <div class="text-section"> 42 <h1 class="item_page_title"><?php the_title(); ?></h1> 43 <div class="exp"> 44 <?php the_content(); ?> 45 <?php if( $item_custom = usces_get_item_custom( $post->ID, 'list', 'return' ) ) : ?> 46 <div class="field"> 47 <?php echo $item_custom; ?> 48 </div> 49 <?php endif; ?> 50 </div><!-- end of exp --> 51 </div> 52 53 <section class="orderitem"> 54 55 <div class="stockstatus"> 56 <?php if( usces_the_itemCprice('return') > 0 ) : ?> 57 <div class="field_name"><?php _e('List price', 'usces'); ?><?php usces_guid_tax(); ?></div> 58 <div class="field_cprice"><span class="ss_cprice"><?php usces_the_itemCpriceCr(); ?></span></div> 59 <?php endif; ?> 60 <div class="field_name"><?php _e('selling price', 'usces'); ?><?php usces_guid_tax(); ?></div> 61 <div class="field_price"><span class="ss_price"><?php usces_the_itemPriceCr(); ?></span></div> 62 <div class="field_name"><?php _e('stock status', 'usces'); ?> : <span class="ss_stockstatus"><?php usces_the_itemZaiko(); ?></span></div> 63 64 <?php if( $item_custom = usces_get_item_custom( $post->ID, 'list', 'return' ) ) : ?> 65 <div class="field"><?php echo $item_custom; ?></div> 66 <?php endif; ?> 67 </div> 68 69 <div class="actionform"> 70 <form action="<?php echo USCES_CART_URL; ?>" method="post"> 71 <?php usces_the_itemGpExp(); ?> 72 <div id="skuform" class="skuform" align="right"> 73 <?php wcex_sku_select_form(); ?> 74 <div class="wcss_loading"></div> 75 <?php if (usces_is_options()) : ?> 76 <table class='skusingle'> 77 <?php while (usces_have_options()) : ?> 78 <tr><th><?php usces_the_itemOptName(); ?></th><td><?php usces_the_itemOption(usces_getItemOptName(),''); ?></td></tr> 79 <?php endwhile; ?> 80 </table> 81 <?php endif; ?> 82 <div class="zaiko_status"><span class="ss_stockstatus"><?php echo apply_filters('usces_filters_single_sku_zaiko_message', __('Sold Out', 'usces')); ?></span></div> 83 <div class="addtocart"><?php _e('Quantity', 'usces'); ?><?php usces_the_itemQuant(); ?><?php usces_the_itemSkuUnit(); ?><?php usces_the_itemSkuButton(__('Add to Shopping Cart', 'usces'), 0); ?></div> 84 <div class="error_message"><?php usces_singleitem_error_message($post->ID, usces_the_itemSku('return')); ?></div> 85 </div><!-- end of skuform --> 86 <?php echo apply_filters('single_item_single_sku_after_field', NULL); ?> 87 <?php do_action('usces_action_single_item_inform'); ?> 88 </form> 89 </div> 90 </section><!-- end of action-section --> 91 </div><!-- end of beta --> 92 </div><!-- >end of ItemPAge --> 93 </div><!-- end of storycontent --> 94 </div> 95 <?php endif; ?> 96 </div><!-- end of catbox -->
よろしくお願いします。
あなたの回答
tips
プレビュー