|
Re: Googleショッピング登録用フィード生成モジュール 横から失礼します。 自分もgoogleショッピングに登録しようとしておりますが、feedで表示されない部分があります。
データベースでいうmain_commentをdescriptionに表示させたいのですが、表示されません。 行ったことは2点です。
■gsfeed_defaultにmain_commentを追加
$objQuery =& SC_Query_Ex::getSingletonInstance(); $col = <<< __EOS__ product_id ,name ,comment3 ,main_list_image ,main_comment ,del_flg ,create_date ,update_date ,(SELECT min(price02) FROM dtb_products_class WHERE A.product_id = product_id) AS price02_min ,(SELECT max(price02) FROM dtb_products_class WHERE A.product_id = product_id) AS price02_max ,(SELECT max(stock) FROM dtb_products_class WHERE A.product_id = product_id) AS stock
■product.tplにも同じくmain_commentを追加
<item> <g:id><!--{$arrConfig.gs_prefix|h}--><!--{$arrProduct[cnt].product_id|h}--></g:id> <title><!--{$arrProduct[cnt].name|h}--></title> <link><!--{$smarty.const.HTTP_URL|h}-->products/detail.php?product_id=<!--{$arrProduct[cnt].product_id|h}--><!--{if $arrConfig.tr_flg}-->&source=googleps<!--{/if}--></link> <description><!--{$arrProduct[cnt].main_comment|h}--></description>
結果はdescriptionの前タグが消えて後ろタグのみの表示になります。
<link><!--{$smarty.const.HTTP_URL|h}-->products/detail.php?product_id=<!--{$arrProduct[cnt].product_id|h}--><!--{if $arrConfig.tr_flg}-->&source=googleps<!--{/if}--></link> <description/> <g:image_link>
宜しくお願いします。
|