如何去除Search Skin ojbect中的"web"和"site"选项按键

简介: 下面的设置在Skin White Papper 里无法查到,没有时间翻译,记下来仅供参考。 In DotNetNuke 4.5.3 installation, the Search Skin Object is changed.
下面的设置在Skin White Papper 里无法查到,没有时间翻译,记下来仅供参考。

In DotNetNuke 4.5.3 installation, the Search Skin Object is changed. You will find the option to Search the "Web", which is default to use Google to search. Or the option to Seach the "Site", which is the same as previous site search.

It is a very good features which was lacking from previous DNN, but it will create some problems on the SKINs. It will show an option box of "Web", and an option box of "Site", some of our skins (and a lot of from other vendors) which does not reserve enough place for display the two extra Options, will actually not display right.

Now the solutions:

  1. If you have access to your DNN installations, open file /portals/[P#]/[SkinNName]/[HTMLName].ascx
    <dnn:SEARCH runat="server" id="dnnSEARCH" cssclass="topcss" showWeb="False" ShowSite="False" />
    Add the red text in there, save it, your skin should work again.
  2. If you want to fix the skin PA package, extract your skin PA zip files into a folder, you will see Skins.zip and Containers.zip, extract skins.zip to the same folder, and add the following code into the SKIN.XML.
     <Object>
      <Token>[SEARCH]</Token>
      <Settings>
       <Setting>
        <Name>cssclass</Name>
        <Value>topcss</Value>
       </Setting>
             <Setting>
               <Name>showWeb</Name>
               <Value>False</Value>
              </Setting>
             <Setting>
               <Name>ShowSite</Name>
               <Value>False</Value>
             </Setting>
      </Settings>
     </Object>
    Add the SKIN.XML back to SKINS.ZIP
    Add the SKINS.ZIP back to Skin PA file.
    Upload your skin and go.
  3. If your bought our skin, email us, we will fix it for free.
  4. We also offer very low customization service, if you do need add the search site and search web function to your skin (even you do not buy from us), we can customize for you for a very low price. HYDES004 at AllDnnSkins.COM Services.

目录
相关文章
|
7月前
|
前端开发
web前端---------网页中的选项
web前端---------网页中的选项
93 0
|
Android开发
web project导入eclipse ,针对run as里 没有 run on server 选项问题?
web project导入eclipse ,针对run as里 没有 run on server 选项问题?
567 0
web project导入eclipse ,针对run as里 没有 run on server 选项问题?
|
2月前
|
人工智能 搜索推荐 API
用于企业AI搜索的Bocha Web Search API,给LLM提供联网搜索能力和长文本上下文
博查Web Search API是由博查提供的企业级互联网网页搜索API接口,允许开发者通过编程访问博查搜索引擎的搜索结果和相关信息,实现在应用程序或网站中集成搜索功能。该API支持近亿级网页内容搜索,适用于各类AI应用、RAG应用和AI Agent智能体的开发,解决数据安全、价格高昂和内容合规等问题。通过注册博查开发者账户、获取API KEY并调用API,开发者可以轻松集成搜索功能。
|
3月前
|
监控 Apache
HAProxy的高级配置选项-Web服务器状态监测
这篇文章介绍了HAProxy的高级配置选项,特别是如何进行Web服务器状态监测,包括基于四层传输端口监测、基于指定URI监测和基于指定URI的request请求头部内容监测三种方式,并通过实战案例展示了配置过程和效果。
103 8
HAProxy的高级配置选项-Web服务器状态监测
|
4月前
|
人工智能 自然语言处理 搜索推荐
国内可用的 Web Search API,可以平替Bing Search API
近期人们发现,AI对搜索引擎的需求远远超过人类。这个团队专为AI打造搜索引擎,上线仅60天就已被调用超30万次。
国内可用的 Web Search API,可以平替Bing Search API
|
7月前
|
前端开发 API
【亮剑】在Web开发中,我们经常需要使用下拉选择框(Select)来让用户从多个选项中选择一个
【4月更文挑战第30天】在React Web开发中,创建下拉选择框通常使用`<select>`标签。要设置占位符,可添加一个`value=""`的`<option>`标签。
265 0
|
Java Maven
2021-2022新版本IDEA创建项目没有JavaEE和Web选项?
不知道大家的IDEA更新了没,更新了后,许多人发现,创建项目时,没有看见JavaEE或者JavaWeb选项了。
2017 0
|
存储 SQL 运维
让owncloud hosting static web site
本文关键字:在owncloud存储中做站,owncloud static website hosting, hosting website in owncloud,owncloud www service,mailinabox static website hosting强化,netdisk netstorage based blog system,netdisk based static website hosting and syncing
325 0
让owncloud hosting static web site
|
SQL 数据库 C++
解决 | VS 2015右键项目添加新项中没有web窗体等选项
刚装完的VS2015,打开网站之后右键项目添加新项时,没有web窗体,SQL Server数据库等选项,如: 解决方法:工具—>扩展和更新: 更新安装ASP.
2591 0