• 1

Read this first!

We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

For more information, the Support Policy is located here.

Thank you!

TOPIC: mod_rsevents_upcoming module

mod_rsevents_upcoming module 15 years 5 months ago #9000

  • drwagner
  • drwagner's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 7
  • Thank you received: 1
Can anyone please tell me how to edit the css for the mod_rsevents_upcoming module? Right now I have (4) test events and they show up on the right side of my site but they all run together like this: event1 event2 event3. I would like them to appear in a vertical format like:

event 1
event 2
event 3

Is this a css issue? If so is this a template css issue or rsevents css issue? In my module properties I have it in this format {EventStartDate}, {EventName}. Another issue I am having is when a user clicks on one these events it opens in the same window but it loads on the homepage in the main body instead of going to the particular event. Can anyone help? Thank you for your time.
The administrator has disabled public write access.

Re:mod_rsevents_upcoming module 15 years 5 months ago #9006

  • drwagner
  • drwagner's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 7
  • Thank you received: 1
I did figure out how to format my module correctly by using this in the module properties:

<p>{EventStartDate}<br></br>{EventName}</p>

I still am having the issue when clicking on the event it opens in a new tab and the event is shown on the homepage in the main body. Has anyone else run into this issue? Thanks.
The administrator has disabled public write access.

Re:mod_rsevents_upcoming module 15 years 5 months ago #9017

I had the same issue. To resolve this, simply set the Item ID in the module's parameters (Extensions > Module Manager > Upcoming module > ItemId) to the desired Menu Item Id (Menus > Main Menu > ItemId) that you want the module to open under.
The administrator has disabled public write access.

Re:mod_rsevents_upcoming module 15 years 3 months ago #9498

The layout for this looks good, I however want to get rid of the bullet points it automatically sticks in there. Does anyone know how to do this. Right now it looks like:

  • Item 1
  • Item 2
  • Item 3

  • While I want it to look like:

    Item 1
    Item 2
    Item 3

    Thanks.
    The administrator has disabled public write access.

    Re:mod_rsevents_upcoming module 15 years 3 months ago #9499

    I think I may need to modify this file: mod_rsevents_upcoming/tmpl/default.php

    The code in here looks like this:

    <?php
    /**
    * @version 1.0.0
    * @package RSEvents! 1.0.0
    * @copyright (C) 2009 www.rsjoomla.com
    * @license GPL, http://www.gnu.org/copyleft/gpl.html
    */
    // no direct access
    defined('_JEXEC') or die('Restricted access');
    $params = & $params;
    // check if any results returned
    if(empty($list)) echo JText::_('No events');
    ?>
    <div class="rse_upcoming_<?php echo $params->get('moduleclass_sfx'); ?>">
    <ul>
    <?php
    foreach($list as $item)
    {
    	echo '<li>'.$item->layout.'</li>';
    }
    ?>
    </ul>
    </div>

    How would I get it to not show the bullets?

    Thanks in advance.
    The administrator has disabled public write access.

    Re:mod_rsevents_upcoming module 15 years 3 months ago #9500

    Ah, figured out the solution. At the end of the code, just replace li with br in the opening and closing ends.
    The administrator has disabled public write access.
    • 1

    Read this first!

    We do not monitor these forums. The forum is provided to exchange information and experience with other users ONLY. Forum responses are not guaranteed.

    However, please submit a ticket if you have an active subscription and wish to receive support. Our ticketing system is the only way of getting in touch with RSJoomla! and receiving the official RSJoomla! Customer Support.

    For more information, the Support Policy is located here.

    Thank you!