In Umbraco 7, normally if a tab or dashboard isn't showing up it's because it hasn't been configured in the dashboard.config file - best bet would be to check there. If it's missing, you can add your own dashboard section in that points to the Advanced Serach & Replace tab html file.
I managed to get it working using below, but once I get the results back, the preview button is not active, and I cannot see another way to actually apply the text string replacement, any idea?
Advanced Search and Replace tab not showing up for me either
I do not see the Advanced Search tab after installing the package, is anything else required?
Thanks Sam
In Umbraco 7, normally if a tab or dashboard isn't showing up it's because it hasn't been configured in the dashboard.config file - best bet would be to check there. If it's missing, you can add your own dashboard section in that points to the Advanced Serach & Replace tab html file.
Thanks Matthew, do you know what the exact entry should be? eg:
<section alias="StartupDeveloperDashboardSection">
<areas>
<area>developer</area>
</areas>
<tab caption="Get Started">
<control showOnce="true" addPanel="true" panelCaption="">
views/dashboard/developer/developerdashboardvideos.html
</control>
</tab>
<tab caption="Examine Management">
<control>
views/dashboard/developer/examinemanagement.html
</control>
</tab>
</section>
I managed to get it working using below, but once I get the results back, the preview button is not active, and I cannot see another way to actually apply the text string replacement, any idea?
<section alias="AdvancedSearchReplace">
<areas>
<area>content</area>
</areas>
<tab caption="Advanced Search and Replace">
<control showOnce="true" addPanel="true" panelCaption="">
/App_Plugins/AdvancedSearchAndReplace/views/dashboard/content/advancedsearchreplace.html
</control>
</tab>
</section>
thanks Sam
Hi Sam,
There looks to be an existing issue for the Preview button being disabled found here - I would check the solutions found there and see if they work.
is working on a reply...