I need move the search to the top beside the tours
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2024 03:17 AM - edited 05-07-2024 03:19 AM
Hi,
I need move the Home page search to the top beside the tours.
Can ypu please help on this, it will be helpfull.
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2024 03:27 AM - edited 05-07-2024 03:28 AM
Hi @mania ,
Approach 1 : OOB one widget is available name as TYPEAHEAD search.clone it.use it.
Otherwise,
adding the following lines to the HTML part:
<li class="search-widget header-menu-item">
<widget id="typeahead-search"></widget>
</li>
add this at the top (so it's the first line), so the search will be on the left side of the top banner
and also add this to the server side:
data.typeAheadSearch = $sp.getWidget('typeahead-search', options.typeahead_search);
Approach 2 :Clone the Menu Header widget + moving the Angular ng-templates to the new one
adding the following lines to the HTML part:
<li class="search-widget">
<sp-widget widget="data.typeAheadSearch" />
</li>
I add this at the top (so it's the first line), so the search will be on the left side of the top banner
and also add this to the server side:
data.typeAheadSearch = $sp.getWidget('typeahead-search', options.typeahead_search);
This gave me the following look:
☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2024 07:29 AM
Thanks for the reply!
Provided your solution can i apply for any of the portal or any particular portal?
Thanks!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-07-2024 08:09 AM
You can apply to any portal
☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....