返信先: ホームページ (front-page.php)の投稿カテゴリーのサムネイル画像が表示されない

フォーラム バグ報告 ホームページ (front-page.php)の投稿カテゴリーのサムネイル画像が表示されない 返信先: ホームページ (front-page.php)の投稿カテゴリーのサムネイル画像が表示されない

#91285
ohnishi
キーマスター

こんにちは

ご報告ありがとうございます。
次期バージョンにて修正させていただきますので、
お急ぎの場合は下記のテンプレートを修正いただけますでしょうか。

welcart_basic-beldad/front-page.php 95行目あたり


if ( ! empty( $target_terms ) && ! is_wp_error( $target_terms ) ) {
	foreach ( $target_terms as $target_term ) {
		$img_thumb_url	= get_term_meta( $target_term->term_id, 'wcct-tag-thumbnail-url', true );
		$img_catimg_url	= get_term_meta( $target_term->term_id, 'wcct-tag-catimg-url', true );
		if ( ! empty( $img_thumb_url || $img_catimg_url )  )
		$term_ids[] = $target_term->term_id;
	}
}
if( $term_ids ):


if ( ! empty( $target_terms ) && ! is_wp_error( $target_terms ) ) {
	foreach ( $target_terms as $target_term ) {
		$img_thumb_url	= get_term_meta( $target_term->term_id, 'wcct-tag-thumbnail-url', true );
		$img_catimg_url	= get_term_meta( $target_term->term_id, 'wcct-tag-catimg-url', true );
		if ( ! empty( $img_thumb_url ) || ! empty( $img_catimg_url )  )
		$term_ids[] = $target_term->term_id;
	}
}
if( $term_ids ):

※変更箇所は、「if ( ! empty( $img_thumb_url || $img_catimg_url ) )」の部分となります。

一度、編集いただきご確認いただけますでしょうか。
どうぞよろしくお願いいたします。