xvids Posted July 29, 2023 Share Posted July 29, 2023 I am trying to hide "Info and Videos and Albums list" for inactive pages of Channels, CS and Models, in theme, Quote Link to comment Share on other sites More sharing options...
Tech Support Posted July 31, 2023 Share Posted July 31, 2023 It is not possible to configure 404 error for such pages, do you mean you want to hide their contents, e.g. display empty area? Quote Link to comment Share on other sites More sharing options...
xvids Posted July 31, 2023 Author Share Posted July 31, 2023 9 hours ago, Tech Support said: do you mean you want to hide their contents, e.g. display empty area? Yes I just want to display only header and footer, - and Hide all Name and other all things I want to display text in page center like: "This Channel was Deleted" Even If HTTP 200 or 410 Quote Link to comment Share on other sites More sharing options...
Tech Support Posted August 1, 2023 Share Posted August 1, 2023 In Website UI -> Pages -> Common Videos List template you have a block like this: <div class="main-container"> {{if $storage.list_videos_common_videos_list.list_type=='content_sources'}} {{insert name="getBlock" block_id="content_source_view" block_name="Sponsor Info"}} {{elseif $storage.list_videos_common_videos_list.list_type=='models'}} {{insert name="getBlock" block_id="model_view" block_name="Model Info"}} {{elseif $storage.list_videos_common_videos_list.list_type=='dvds'}} {{insert name="getBlock" block_id="dvd_view" block_name="Channel Info"}} {{/if}} {{$common_videos_list_result|smarty:nodefaults}} </div> You need to wrap this block into a bigger block like this: {{if $storage.list_videos_common_videos_list.list_type=='content_sources' && $storage.list_videos_common_videos_list.content_source_info.status_id==0}} Site is deleted {{elseif $storage.list_videos_common_videos_list.list_type=='models' && $storage.list_videos_common_videos_list.model_info.status_id==0}} Model is deleted {{elseif $storage.list_videos_common_videos_list.list_type=='dvds' && $storage.list_videos_common_videos_list.dvd_info.status_id==0}} Channel is delete {{else}} <div class="main-container"> ... the original code as it was </div> {{/if}} 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.
Note: Your post will require moderator approval before it will be visible.