2019年1月9日 星期三

XOOPS tad_news 分類新聞區塊,thumbnail bootstrap 4 設定錯誤

XOOPS tad_news 分類新聞區塊,thumbnail bootstrap 4 設定錯誤

分類新聞區塊,上傳圖形以後,結果圖形很大,沒有縮小。
經過查詢,發現是該區塊的 theme 設定的 class <img src="<{$all_news.pic}>" alt="<{$all_news.nc_title}>" title="<{$all_news.nc_title}>" class="img-responsive thumbnail">

 <img src="<{$all_news.pic}>" alt="<{$all_news.nc_title}>" title="<{$all_news.nc_title}>" class="img-responsive img-thumbnail">

該檔案位置:
/modules/tadnews/templates/blocks/b4/tadnews_block_cate_news.tpl


<{foreach item=all_news from=$block.all_news}>
  <{if $all_news.news}>
    <div class="row">
      <{if $all_news.show_pic}>
        <div class="col-sm-2">
          <a href="<{$xoops_url}>/modules/tadnews/index.php?ncsn=<{$all_news.ncsn}>">
            <img src="<{$all_news.pic}>" alt="<{$all_news.nc_title}>" title="<{$all_news.nc_title}>" class="img-responsive img-thumbnail">
          </a>
        </div>
        <div class="col-sm-10">
      <{else}>
        <div class="col-sm-12">
      <{/if}>
      <h4><a href="<{$xoops_url}>/modules/tadnews/index.php?ncsn=<{$all_news.ncsn}>"><{$all_news.nc_title}></a></h4>
      <ul>
      <{foreach from=$all_news.news item=news}>
        <li>
          <{$news.post_date}>
          <{$news.always_top_pic}>
          <{$news.prefix_tag}>
          <a href="<{$xoops_url}>/modules/tadnews/index.php?nsn=<{$news.nsn}>"><{$news.news_title}>
          </a>
          <{if $news.content}>
            <{$news.content}>
          <{/if}>
        </li>
      <{/foreach}>
      </ul>
      </div>
    </div>
  <{/if}>
<{/foreach}>

只要修改 class= "img-thumbnail" 這樣就好了!



沒有留言:

張貼留言

如何判斷現在FORM是在 insert mode? 還是 update mode?

只要用  if (empty({primary_key})) 就可以知道是否為新增模式了。 如果 {promary_key} 是空白的,那麼就是在新增模式;反之,就是更新模式。 以上。