在有人将其标记为“已回复”之前:我已经尝试过以前有关同一主题的大多数文章,但是没有用。我已经设置了数值和{is_numeric},但是我必须做错了还是其他事情?
//Get main content width
//Get Left column grid width
if($this->countModules('aside-left') && $hideByOption == false && $view !== 'form'){
$asideLeftWidth = $this->params->get('asideLeftWidth');
} else {
$asideLeftWidth = "";
}
//Get Right column grid width
if($this->countModules('aside-right') && $hideByOption == false && $view !== 'form'){
$asideRightWidth = $this->params->get('asideRightWidth');
} else {
$asideRightWidth = "";
}
下面的76行
$mainContentWidth = 12 - ($asideLeftWidth + $asideRightWidth);