• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Random Image Generator

S

snyhof

Guest
Here is a simple javascript I found that will add rotating images to any part of your template.

Best use is for a custom template specificlly made for a client.

CODE:

<script language="Javascript">
<!--
function image() {
};
image = new image();
number = 0;
// imageArray
image[number++] = "<img src='$Theme$/images/pic01.jpg' border='0' width='199'>"
image[number++] = "<img src='$Theme$/images/pic02.jpg' border='0' width='199'>"
image[number++] = "<img src='$Theme$/images/pic03.jpg' border='0' width='199'>"
image[number++] = "<img src='$Theme$/images/pic04.jpg' border='0' width='199'>"
image[number++] = "<img src='$Theme$/images/pic05.jpg' border='0' width='199'>"
image[number++] = "<img src='$Theme$/images/pic06.jpg' border='0' width='199'>"
image[number++] = "<img src='$Theme$/images/pic07.jpg' border='0' width='199'>"
image[number++] = "<img src='$Theme$/images/pic08.jpg' border='0' width='199'>"
image[number++] = "<img src='$Theme$/images/pic09.jpg' border='0' width='199'>"
increment = Math.floor(Math.random() * number);
document.write(image[increment]);
//-->
</script>

------------------------

Sample site: http://www.mlpconstruction.com

src='$Theme$/images/pic01.jpg'
With the path setup you must include the images in the images folder and they cannot be changed by the user.

If you want the user to be able to change the images, the path would look like this...
src='MyImages/pic01.jpg'

Note: This folder is not created until an image is uploaded using the image upload feature in the editor. You would have to create this folder inside the root folder of an existing user and add the images.
The user would also have to know that they have 9 (or what ever you setup) images with specific names to match the code.

The width is optional but recommended for the second option.

Note: The hover buttons on this site only work in IE.
 
Back
Top