Home General Discussion
Options

Home Page in the portal

Maria_jandtMaria_jandt Customer IT Monkey ✭
Hi,
We are wondering if it is possible to clean everything on the HOME page in the portal and just add 3 links or buttons to 3 categories, for example: Support, Order and Report problem. When the link or button is clicked you get all the request in that category. The ribbon on the left side should be as usual.
Is there anyway of doing this ??
Regards
Maria

Answers

  • Options
    Jerry_VeldhuisJerry_Veldhuis Customer Advanced IT Monkey ✭✭✭
    https://support.cireson.com/KnowledgeBase/View/1245#/

    Or you can use a simpler, non-sql route using CustomSpace/views. I haven't found any good how to on this, but basically you can follow these simple steps:

    1. place the following in CustomSpace/views/NewHomePage.js
    {
    	"id" : "NewHomePage",
    	"TypeId" : "html",
    	"Definition": {
    	    "content" : "<h2>What are you looking for ?</h2><ul><a href='/ServiceCatalog/RequestOffering/xxxx'>Support</a></ul><ul><a href='/ServiceCatalog/RequestOffering/xxxx'>Order</a></ul><ul><a href='/ServiceCatalog/RequestOffering/xxxx'>Report a Problem</a></ul>"
    	}
    }
    </code>{
    	"Id" : "ProjectNum",
    	"pageTitle": "ProjectNum",
    	"layoutType" : "full",
    	"view" : {
    		"header" : {
    			"title" : "",
    			"subTitle" : ""
    		},
    		"body" : {
    			"content" : {
    				"rows" : [{
    						"columns" : [{
    								"ColSpan" : 12,
    								"type" : "viewPanel",
    								"ViewPanelId" : "NewHomePage"
    							}
    						]
    					}
    				]
    			}
    		}
    	}
    }
    </pre><div>2. place the following in CustomSpace/views/viewpanels/NewHomePage.js<br><pre class="CodeBlock"><code>
    3. adjust the href locations to match your environment 

    4. in your browser open http://localhost/View/NewHomePage and you should see something similar to:


    5. you can then use this as your new home page by adjusting the navigation settings on the portal.

    Hope this helps.
    jerry
  • Options
    Johana_von_LengerkeJohana_von_Lengerke Customer IT Monkey ✭
    Hi,
    we managed this by creating Request Offerings which are basicly just used as Hyperlinks.
    So they are Advanced Request Offerings with a "Direkt Link" to a specific Service Offering and its set to automatically redirect.
    Then we set these Hyperlinks as TopRequests. https://support.cireson.com/KnowledgeBase/View/1271#/
    On our Homepage we just hide all the Elements we don't need. Now there are just the Top Requests shown on our Homepage leading to our Services.
Sign In or Register to comment.