langel87 Posted July 3 Share Posted July 3 Hello! I would like to show the total number of videos on my website in the placeholder of the search bar, something like: search in 100 videos. In addition to showing the total number of videos on each category page, the total number of videos it has, could you help me? Thanks! Quote Link to comment Share on other sites More sharing options...
Tech Support Posted July 4 Share Posted July 4 In Website UI -> Page components -> include_header_general.tpl the search textfield is rendered like this: <div class="search-text"><input type="text" name="q" placeholder="{{$lang.search_box.search_hint}}" value="{{$storage.list_videos_videos_list_search_result.search_keyword}}"/></div> And in Website UI -> Texts you can find this text by searching for search_box.search_hint: search_box.search_hint = Search You need to change text to this: search_box.search_hint = Search in %1% videos and change template line to this: {{query_kvs select="count" table="videos" assign="total_videos"}} <div class="search-text"><input type="text" name="q" placeholder="{{$lang.search_box.search_hint|replace:"%1%":$total_videos}}" value="{{$storage.list_videos_videos_list_search_result.search_keyword}}"/></div> 1 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.