Александр Христич 11 Posted April 8, 2022 Report Share Posted April 8, 2022 Собственно вопрос такой. Как сделать чтобы блоги на главной странице выводились в таком виде всегда (хочу удалить кнопку выбора вида) Обратиться Quote Link to comment Share on other sites More sharing options...
Кирилл 175 Posted April 9, 2022 Report Share Posted April 9, 2022 Здравствуйте. Вы можете удалить этот блок напрямую в шаблоне: blog > front > browse > indexButtons: {{if \IPS\Settings::i()->blog_allow_grid AND !$forMobile AND member.member_id}} <li class='ipsType_center ipsMargin_bottom:none'> <ul class='ipsButton_split'> <li class='ipsType_center'> {{if $category}} <a href='{$category->url()->csrf()->setQueryString( array( 'id' => $category->_id, 'view' => 'list' ) ) }' class='ipsButton {{if $viewMode != 'grid'}}ipsButton_primary{{else}}ipsButton_veryLight{{endif}} ipsButton_narrow ipsButton_medium' data-ipsTooltip data-ipsTooltip-safe title='{lang="view_blogs_as_list"}' rel="nofollow"><i class='fa fa-th-list'></i></a> {{else}} <a href='{url="app=blog&module=blogs&controller=browse&view=list" seoTemplate="blogs" csrf="true"}' class='ipsButton {{if $viewMode != 'grid'}}ipsButton_primary{{else}}ipsButton_veryLight{{endif}} ipsButton_narrow ipsButton_medium' data-ipsTooltip data-ipsTooltip-safe title='{lang="view_blogs_as_list"}' rel="nofollow"><i class='fa fa-th-list'></i></a> {{endif}} </li> <li class='ipsType_center'> {{if $category}} <a href='{$category->url()->csrf()->setQueryString( array( 'id' => $category->_id, 'view' => 'grid' ) ) }' class='ipsButton {{if $viewMode == 'grid'}}ipsButton_primary{{else}}ipsButton_veryLight{{endif}} ipsButton_narrow ipsButton_medium' data-ipsTooltip data-ipsTooltip-safe title='{lang="view_blogs_as_grid"}' rel="nofollow"><i class='fa fa-th-large'></i></a> {{else}} <a href='{url="app=blog&module=blogs&controller=browse&view=grid" seoTemplate="blogs" csrf="true"}' class='ipsButton {{if $viewMode == 'grid'}}ipsButton_primary{{else}}ipsButton_veryLight{{endif}} ipsButton_narrow ipsButton_medium' data-ipsTooltip data-ipsTooltip-safe title='{lang="view_blogs_as_grid"}' rel="nofollow"><i class='fa fa-th-large'></i></a> {{endif}} </li> </ul> </li> {{endif}} Обратиться Quote Link to comment Share on other sites More sharing options...
Александр Христич 11 Posted April 10, 2022 Author Report Share Posted April 10, 2022 Кирилл Да я удалял этот код,но из-за своей невнимательности (в настройках не выбрал нужный вид по умолчании) не мог понять почему не фурычит. В итоге все реализовал как и хотел Мобильная версия Обратиться Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.