You are viewing limited content. For full access, please sign in.

Question

Question

How do I remove the WebLink search bar located in the browse portion of WebLink

asked on July 13, 2020

Hello,

 

I am working on a WebLink system and received a request to remove the general search bar from the browse portion of WebLink. The documentation to do this with WebLink 9 does not work in WebLink 10. Can someone tell me how to remove this in WebLink 10.2?

 

 

Thank You,

1 0

Answer

SELECTED ANSWER
replied on July 16, 2020

In that case you can hide the QuickSearch Box by modifying the STYLES.CSS file in the WebLink\Web Files folder on the web server.

Around line 746 is:

.searchBarContainer {   
   display: inline-block;  
    padding-top: 5px;
    vertical-align: top;
 }

Change it to this:

.searchBarContainer {   
    /*display: inline-block; */
    display:none;
    padding-top: 5px;
    vertical-align: top;
 }

 

You may have to clear your browser cache to see the effect immediately.

3 0
replied on July 17, 2020

Hey Joshua,

 

Thank you so much! This was the last part I needed to complete my project and your suggestion works great!

 

Regards,

0 0
replied on July 17, 2020

Happy to help.

0 0

Replies

replied on July 14, 2020

We've removed the Search Right from the users accessing our Public WebLink. This removes the bar for the individual user.

If these are internal users, and they need to be able to search via WebAccess or a Client, why restrict them from searching via WebLink?

0 0
replied on July 15, 2020

Is for a specific business unit. Due to permissions we have created custom searches they can access, but the general search still exists in this bar that we want to use the web files to remove. I only want those users to have the option to use the custom searches I defined.

0 0
You are not allowed to follow up in this post.

Sign in to reply to this post.