묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
본문내 이미지 조절 애드온 질문
2015.08.16 22:58
본문내 이미지 조절 애드온에서
이미지 조절까진 좋은데
원본띄우기는 싫어요
어떻게 제거 하나요?
/addons/resize_image/resize_image.addon.php
if($called_position == 'after_module_proc' && Context::getResponseMethod() == "HTML" && !isCrawler())
{
if(Mobile::isFromMobilePhone())
{
Context::loadFile('./addons/resize_image/css/resize_image.mobile.css', true);
}
else
{
Context::loadJavascriptPlugin('ui');
Context::loadFile(array('./addons/resize_image/js/resize_image.min.js', 'body', '', null), true);
}
}
이걸
if($called_position == 'after_module_proc' && Context::getResponseMethod() == "HTML" && !isCrawler())
{
Context::loadFile('./addons/resize_image/css/resize_image.mobile.css', true);
}
이렇게 수정