Jump to content

Connie

Trumba Community Expert
  • Posts

    203
  • Joined

  • Last visited

Posts posted by Connie

  1. If you actually want the event detail view to open in a page on your site, you want to use the detailBase rather than the teaserBase property on the Main calendar spud. The teaserBase URL is more commonly used on Promotion spuds.

    So your spud code would like this using the detailBase and not teaserBase:

    <script type="text/javascript">
    $Trumba.addSpud({
    webName: "asingularcreation",
    spudType : "main",
    detailBase: "http://www.asingularcreation.com/Lists/art-contests.htm" });
    </script>

    You use the detailBase property with a main spud to show event details in another main spud that's embedded in a separate page.

    NOTE: The teaserBase property works with promotion spuds and allows you to open the event details page from a link in the promotion spud on your own site rather than the Trumba hosted page.

    You might also want to use the openInNewWindow property to get the event detail to open on your site in a new window. The code would look like this:

    <script type="text/javascript">
    $Trumba.addSpud({
    webName: "asingularcreation",
    spudType : "main",
    openInNewWindow: "true",
    detailBase: "http://www.asingularcreation.com/Lists/art-contests.htm" });
    </script>

    MORE INFORMATION: Supported properties for customizing spuds.

  2. Two other calendar views, List, Table and Tile also support images.

    In the Publishing Control Panel, on the Calendar Spuds tab, add the List, Table or Tile  calendar views and then click Edit Settings & Styles to display the image field and control the image size.

    For the Table and Tile views you will first need to add in the Event Image field under the Display Settings area on the General Settings tab and determine the placement in order of preference.

    Trumba also supports the display of Inline Images, which are images you can embed in the Description field and any other Multi-line text field that uses the HTML Editor (Trumba Connect accounts only). Inline images are supported in some calendar views (Classic Table, List view, and Tile view) as well as on the event detail view.

    Images are also supported in several of the Trumba Promotion spuds.
     

  3. What a user can do is subscribe to an iCal feed from your published calendar. The maximum number of events in a feed is 1000 and the publish controls the number of events in the feeds by clicking on Publish>Feeds tab and then click on Edit Settings & Styles for each feed type.

    When the site visitor visits your calendar, they can select the Subscribe link at the top of your calendar and from here select the iCal Subscription. This will appear with webcal://protocol.

  4. If you publish calendars that site visitors often want to print, it's a good idea to set up a print view.

    Set-up options include adding a banner image to the top of print view, showing the calendar name in the header, and showing the print date/time in the footer. Here is a link to our Help topic on how to set up a print view that includes an image.

  5. When you type an address in the Location field and then select Map Link, Trumba will remember this location. When you go to add a new event, or edit an existing event, you can select Recent to the right of the Location field. This will be a list of 50 of the most recently mapped locations. By selecting a location from this list will add in the address in the Location field and automatically map the location. You can remove any old or outdated map link by selecting the drop down and click the trash can (delete) icon to the right of the address.

  6. You might also want to try using divs instead of a table to line up your spuds.

    For example to line up a main calendar spud and search spud, you might use two divs like this:

     

    <div style="width:160px;float:left">
    <script type="text/javascript" src="//www.trumba.com/scripts/spuds.js"></script>
    <script type="text/javascript">
    $Trumba.addSpud({
    webName: "yourcalendarswebname",
    spudType : "mix" });
    </script>
    </div>
    
    <div style="width:160px;padding-left:180px;">
    <script type="text/javascript" src="//www.trumba.com/scripts/spuds.js"></script>
    <script type="text/javascript">
    $Trumba.addSpud({
    webName: "yourcalendarswebname",
    spudType : "searchlabeled" });
    </script>
    </div>
     

    Where it says yourcalendarswebname just make sure your calendar's name is inserted. You don't have to stick with the exact width or padding amounts that I've added here but this gives you an idea of how you might set up the divs.

  7. You can only share Trumba calendars with other Trumba users whose email address is tied to a Trumba account.

    You are seeing Can view events as the only option because the person you're sharing with does not have a Trumba account.

    When you purchase a full Trumba subscription, you can also purchase additional editor accounts for a reduced monthly rate (see our Pricing page).

    When the person you want to share with has an account in place, you'll be able to see all sharing options.

  8. Trumba offers filter views, which you can enable for your published calendar by going to Publish>Publish Settings tab>Edit Publish Settings. From here, under the PUBLISH SETTINGS section, locate Enable filter views and set this to Yes.

    Filter views provide a way to pre-filter calendar views, promotion spud content, and event feeds based on a combination of custom field values or owning calendars.

    Use a filter view when you want to:

    • Publish subsets of events on different pages of your website.
    • Provide links to pre-filtered views of the events.
    • Display subsets of the events in calendar views and promotion spuds.
    • Provide pre-filtered event feeds

    Here's an example of how your calendar spud code might look to have the spud only display events appropriate for Seniors:

    <script type="text/javascript">
    $Trumba.addSpud({
    webName: "communitycalendar",
    spudType : "main" ,
    url : { filterview : "Seniors" } });
    </script>

    Here is the help topic on working with filter views.

  9. What you can do is paste the code below above the script code for the date finder spud but replace yourcalendarwebname with the webname of your published calendar (the name you chose when you published the calendar).

    <script type="text/javascript">var trumba_teaserBase = "http://www.trumba.com/calendars/yourcalendarwebname";</script>

    When you click a date on the Date finder spud, the calendar hosted on the Trumba website opens to the time period that contains the clicked date.

  10. When using the Main calendar spud, there is not an easy way to only show a limited date range worth of events. When you publish a calendar, all of the events are published.

    If you add the events for the period that you want to publish - September in your case - to another calendar, you can then publish that other calendar. You can then move events from one calendar to another when you are ready for more events to be displayed on the published calendar.

    To add a group of events from one calendar to another, create the new calendar that you want to add the events to. Display the original calendar in List view. Select the events that you want to add to the new calendar. From the drop-down list, select Add events to.... Select the new calendar from the calendars list, and then click Go.

    Then, publish the new calendar that contains the events you just added.

    What can also do is use a Promotion Spud, as Promotion Spuds do have more settings that allow you to set a Start Date and End Date in which the application will scan to only display events that land within the timeframe.

  11. You see symbols, also known as update markers, on calendar events when the events have been updated. For example, you see an asterisk for a new event; an exclamation point next to an event on your published calendar after you change the event description; and you will see a little clock next to an event on your published calendar when you change the event time.

     

    You can let visitors know when you update your calendar by enabling update markers.

    updates_marker_asterisk.gif An asterisk indicates a new event.

     

    updates_marker_excl.gif An exclamation point and dashed underline indicate change in the event field that is underlined. This can be a change in the description or date (without a change in the event time). An exclamation point with nothing underlined generally means that the event description has been changed.

     

    updates_marker_clock.gif A clock symbol and dashed underline of date and time indicates change in event time (with or without a change in the date)

     

    Here is a link to the help topic with more details on how to disable these markers: https://www.trumba.com/help/events/newupdated.aspx

  12. You have control over most areas of spud (widget) customization.

    On your publisher account, when you click the Publish button to take you to the Publishing Control Panel, you will see various Trumba spuds listed on the Calendar Spuds tab, Control Spuds tab and the Promotion Spuds tab. When you select Edit Settings & Styles for any spud, you will be able to access the Settings and the Styles. From here you can update the fonts, colors, font sizes, date and time formats and more!

    Here is a help topic that goes through additional spud properties, including opening in a new window.

    https://www.trumba.com/help/api/spudapi_properties.aspx

  13. When people register for open events, they are asked to provide both a name and email address. In Trumba, you can also create your own custom registration questions and registration forms to ask additional questions and capture additional registration information about your attendees.

    You can add one or more email addresses to our list of Organizers (respondees) and when a person registers or declines from an event, that organizer can be notified by an email. Organizers do not have to have a Trumba account.

    Here are few help topics on Event Registration in Trumba:

  14. As you've discovered, only start times display on the Classic Month and Classic 5 Week views because of space restrictions.

    You can display a month of events and include start and end times by choosing the Table, TileList or Compact List calendars views, as well as more.

    If you want to stick to a more classic calendar view, you can choose the Classic Week template. Viewers will only see a week's worth of events at a time but they will see start and end times on each event.
     

  15. Trumba is an English language only product meaning that the user interface is all in English. Of course, when you set up your events, you can type the descriptions and other information in any language you want. We have seen several clients use the web browser add-on for language translations of the page and we have found they do a nice job on most calendars.

    Click here for more details.

×
×
  • Create New...