Avatar of gavanhorton
gavanhorton
Flag for United States of America asked on

How to create a tip of the day using standard SharePoint functionality

Does anyone know a way to offer a tip of the day type function using standard sharepoint functionality. I know that there are some web parts out there, but I am operating in a restricted environment and adding new web parts is difficult.
Microsoft SharePoint

Avatar of undefined
Last Comment
gavanhorton

8/22/2022 - Mon
Hairbrush

Hmm, if you can't add a web part (either a third-party one or your own) then that is going to be difficult...

You could use the following approach to display a random tip:
http://blog.mastykarz.nl/extending-content-query-web-part-xslt-custom-functions/

Or you could tweak it to keep a counter in a cookie to indicate which tip the user has seen, and then show them the next tip and increment the counter.

However this approach uses a custom web part to generate the ID of the tip to show.

The only other thing I can think of is to use some JavaScript to generate a URL and display the resulting URL in a page control?  You'd add the JavaScript to the page either through SharePoint Designer or by using a Content Editor Web Part.
game-master



I think you need to create a customized webpart for your daily tip.
Or you buy a webpart for that...

Create webpart:
http://www.codeproject.com/KB/sharepoint/qotd_webpart.aspx

For sale tip of the day webpart.
http://www.amrein.com/apps/page.asp?Q=5739
ASKER CERTIFIED SOLUTION
gavanhorton

THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
Hairbrush

That's really clever!
All of life is about relationships, and EE has made a viirtual community a real community. It lifts everyone's boat
William Peck
gavanhorton

ASKER
Hairbrush, thanks, it still has an element of hardcoding about it that I don't like. I will think about it some more of the weekend and see if I can some up with something.
gavanhorton

ASKER
I accepted my own comment as despite the suggestions from the experts that what I was looking for was not possible I figured out a way to do it and posted the solution. I gave myslef a B as my solution is not dynamic.