Visit SlideShowPro.net  Community Forums
SlideShowPro Support Wiki
  
SlidePress

Using custom XML markup

Note: As of June 28, 2011 we are no longer supporting SlidePress or selling the SlideShowPro Player SWF product it uses. For legacy users we are keeping this support documentation online. If you have any questions or concerns click the 'Email support staff' link in the left column.

By "custom" we mean XML that has either been hand-coded by you or compiled through other means. The two XML Type options that are considered custom include "Default" and "OPML". We recommend that only web developers with experience coding XML and creating markup use these XML Type options. If you're comfortable however, this page contains tips on how to integrate a SlidePress gallery using these options.

Build locally

Because you purchased SlideShowPro Player SWF to use with SlidePress, you can build and test your content locally. Open the "Samples" folder that's inside the SlideShowPro Player SWF ZIP you downloaded from the Account Center, and inside you'll see an images.xml file. You may use this file as a template for creating your own slideshow content.

Make all paths absolute

When you have a local version of your slideshow running, upload your slideshow content to any directory at your web site (where WordPress is installed). Doesn't matter if you upload inside or outside your WordPress installation (though for maintenance purposes it would probably be better to keep it outside).

Once you have your content online, open your XML file and edit all the relative paths to absolute. For example...

<?xml version="1.0" encoding="UTF-8"?>
<gallery>
   <album lgpath="path/to/my/">
      <img src="image.jpg" />
   </album>
</gallery>

You would change it to this:

<?xml version="1.0" encoding="UTF-8"?>
<gallery>
   <album lgpath="http://mydomain.com/slideshow_content/album1/images/">
      <img src="image.jpg" />
   </album>
</gallery>

Assign absolute XML path to SlidePress

With your XML file updated, upload it to the same place you uploaded your slideshow content to. Then, assign to your SlidePress gallery an absolute URL to the XML file, like "http://mydomain.com/slideshow_content/album1/images.xml".

Additional slideshow content

Beyond slideshow content, you also have the option of loading thumbnails in the navigation, link previews, video previews, album thumbnails, and audio files as background sound. For more information on including any of these, we recommend checking out the of the :stapi: section of this wiki.

Loading OPML

OPML is a special type of XML markup that allows you to load more than one XML file as a single data source. For instructions on how to create an OPML document, see the Loading multiple XML documents instructions in the :stapi: section of this wiki.

Page last modified by tdominey on September 09, 2010, at 07:46 AM
© 2011 SlideShowPro. All Rights Reserved.