這個問題是因為目前下拉人員查詢會「跳回首頁」並篩選「相片」
如果要篩選個別相簿內的照片,在tadgallery_list_header.tpl樣板
利用smarty判斷是否進入個別相簿,第23行改為
<select
onChange="location.href='index.php?
<{if
$smarty.get.csn}>csn=<{$smarty.get.csn|intval}>&<{/if}>show_uid='
+ this.value" class="form-control">
如果要刪選相簿,就要修改tadgallery.php
第320行左右加入
$and_uid = empty($this->show_uid) ? "" : "and uid='{$this->show_uid}'";
//撈出底下子分類
$sql = "select csn,title,passwd,show_mode,cover,uid,content from " . $xoopsDB->prefix("tad_gallery_cate") . " $where
$and_uid order by $order";
提供參考~