-
Notifications
You must be signed in to change notification settings - Fork 10
2. Site dashboard configuration
Mark edited this page Nov 1, 2016
·
3 revisions
After installing the package and doing a refresh. You'll see a new dashboard has appeared in the content section of your Umbraco backend.
If you want to use the dashboard view, simply click "Initialize". This will create a new database table with cached seo data from your website.
You can change the tab name of the dashboard, by default it's "RankOne - SEO".
You can change the label by opening the following file "Config/Dashboard.config" Search for the followin piece of xml and change the caption argument.
<section alias="RankOneSEODashboardSection">
<areas>
<area>content</area>
</areas>
<tab caption="RankOne - SEO">
<control showOnce="true" addPanel="true" panelCaption="">
/App_Plugins/RankOne/dashboards/SiteDashboard.html
</control>
</tab>
</section>
If you don't want to use the dashboard in you Umbraco backend, simply open the file "Config/Dashboard.config" and delete the following piece of xml
<section alias="RankOneSEODashboardSection">
<areas>
<area>content</area>
</areas>
<tab caption="RankOne - SEO">
<control showOnce="true" addPanel="true" panelCaption="">
/App_Plugins/RankOne/dashboards/SiteDashboard.html
</control>
</tab>
</section>