• 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: Remove End date/time, category and tags

Remove End date/time, category and tags 12 years 2 months ago #22308

I am trying to figure out how to remove the end time, category and tags from the event listing here

annacrusis.com/index.php/tickets

any help would be appreciated!

thanks, Kim
The administrator has disabled public write access.

Remove End date/time, category and tags 12 years 2 months ago #22314

  • silviup
  • silviup's Avatar
  • OFFLINE
  • Moderator
  • Posts: 309
  • Thank you received: 49
All of the mentioned elements can be found in the \components\com_rseventspro\views\rseventspro\tmpl\default.php file. Edit that file and:

1) To remove the end date, look for the following code:

<pre><?php echo JText::_('COM_RSEVENTSPRO_GLOBAL_FROM'); ?> <b><?php echo rseventsproHelper::date($event->start,null,true); ?></b> <?php echo JText::_('COM_RSEVENTSPRO_GLOBAL_TO_LOWERCASE'); ?> <b><?php echo rseventsproHelper::date($event->end,null,true); ?></b></pre>

and replace it with

<pre><?php echo JText::_('COM_RSEVENTSPRO_GLOBAL_FROM'); ?> <b><?php echo rseventsproHelper::date($event->start,null,true); ?></b></pre>

2) To remove the category, look for the following code:

<pre><?php $categories = (isset($details) && !empty($details)) ? JText::_('COM_RSEVENTSPRO_GLOBAL_CATEGORIES').': '.$details : ''; ?></pre>

and remove it/comment it out.

3) To remove the tags, look for the following code:

<pre><?php $tags = (isset($details) && !empty($details)) ? JText::_('COM_RSEVENTSPRO_GLOBAL_TAGS').': '.$details : ''; ?></pre>

and remove it/comment it out.

You can read more on this topic here:

www.rsjoomla.com/support/documentation/v...s-look-and-feel.html
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.

Remove End date/time, category and tags 12 years 2 months ago #22342

  • releicht
  • releicht's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 2
Hello,

I have some similar questions:
How could I remove the time of starttime and endtime?
And how could I get the categoris in a new line?

Thank you very much for an answer!
Renate
The administrator has disabled public write access.

Remove End date/time, category and tags 12 years 1 week ago #23438

silviup wrote:
All of the mentioned elements can be found in the \components\com_rseventspro\views\rseventspro\tmpl\default.php file. Edit that file and:


2) To remove the category, look for the following code:

<pre><?php $categories = (isset($details) && !empty($details)) ? JText::_('COM_RSEVENTSPRO_GLOBAL_CATEGORIES').': '.$details : ''; ?></pre>

and remove it/comment it out.

3) To remove the tags, look for the following code:

<pre><?php $tags = (isset($details) && !empty($details)) ? JText::_('COM_RSEVENTSPRO_GLOBAL_TAGS').': '.$details : ''; ?></pre>

and remove it/comment it out.

I tried these but no effect. Why?
The administrator has disabled public write access.

Remove End date/time, category and tags 12 years 1 week ago #23439

  • octavian
  • octavian's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 783
  • Thank you received: 110
Perhaps you have a template override for RSEvents! Pro in your template folder or you're using caching.
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.

Remove End date/time, category and tags 12 years 1 week ago #23440

No, caching is disabled in the site, no template overrides.
The administrator has disabled public write access.

Remove End date/time, category and tags 12 years 1 week ago #23441

<?php $full = rseventsproHelper::eventisfull($event->id); ?>
<?php $ongoing = rseventsproHelper::ongoing($event->id); ?>
<!-- <?php $categories = (isset($details) && !empty($details)) ? JText::_('COM_RSEVENTSPRO_GLOBAL_CATEGORIES').': '.$details : ''; ?>
<?php $tags = (isset($details) && !empty($details)) ? JText::_('COM_RSEVENTSPRO_GLOBAL_TAGS').': '.$details : ''; ?> -->
<?php $incomplete = !$event->completed ? ' rs_incomplete' : ''; ?>
The administrator has disabled public write access.

Remove End date/time, category and tags 12 years 1 week ago #23443

Rather -- no template overrides that I know about.

rtsab.com
Last Edit: 12 years 1 week ago by bsantesson.
The administrator has disabled public write access.

Remove End date/time, category and tags 12 years 1 week ago #23448

  • octavian
  • octavian's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 783
  • Thank you received: 110
I see no categories listed here:
rtsab.com/en/vevents/event/3-security-vm...r-cloud-och-vdi.html

so the modifications are indeed working.
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
The administrator has disabled public write access.

Remove End date/time, category and tags 12 years 1 week ago #23449

No, but in the list it does. Main menu!

Here: rtsab.com/sv/vevents.html
Last Edit: 12 years 1 week ago by bsantesson.
The administrator has disabled public write access.

Remove End date/time, category and tags 12 years 1 week ago #23450

  • octavian
  • octavian's Avatar
  • OFFLINE
  • RSJoomla! Official Staff
  • Posts: 783
  • Thank you received: 110
I should have noticed you've commented PHP code using HTML tags: the correct syntax for PHP is //, so you need to replace:
<?php echo $categories.' '.$tags; ?>

with:
<?php //echo $categories.' '.$tags; ?>

or:
<?php /* echo $categories.' '.$tags; */ ?>
Please note: my help is not official customer support. To receive your support, submit a ticket by clicking here
Regards,
RSJoomla! Development Team
Last Edit: 12 years 1 week ago by octavian.
The administrator has disabled public write access.

Remove End date/time, category and tags 12 years 1 week ago #23455

Well, you learn as long as you live.

Thanks a lot!

Best regards,
Ralph

Consultant for Real Time Services
Last Edit: 12 years 1 week ago by bsantesson.
The administrator has disabled public write access.

Remove End date/time, category and tags 12 years 1 week ago #23481

  • peterw8
  • peterw8's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 6
jumping on board here.... Thanks I wanted to do the same and have done so.

In addition, How can I make the Event NAME BOLD and ALLCAPS?

thanks
The administrator has disabled public write access.

Remove End date/time, category and tags 12 years 1 week ago #23507

  • peterw8
  • peterw8's Avatar
  • OFFLINE
  • Fresh Boarder
  • Posts: 6
Ok just want to make the event name bold in the listing - is it simply adding adding the tags <strong> to some line in some file?
The administrator has disabled public write access.

Remove End date/time, category and tags 11 years 11 months ago #23710

peterw8 wrote:
Ok just want to make the event name bold in the listing - is it simply adding adding the tags <strong> to some line in some file?

You could add a style to your template style sheet for that ...

.rs_event_details span a.rs_event_link {
font-weight: bold;
text-transform: uppercase;
}
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!