By Guest on Sunday, 15 July 2018
Replies 3
Likes 0
Views 852
Votes 0
HI, I am using Joomla 3.8 with JEvents v3.4.47.

When you click on a recurring event on the web site you need to navigate with several clicks to "edit this recurrence" page. I want that the first click on the Event goes directly to that page.



When you navigate to Components -> JEvents -> Custom Layouts -> Monthly Calendar Cell you can select Core Jevents Fields and there Link which gives you the following code {{Link:LINK}} that can be used in the Monthly Calendar Cell.

This code is replaced when the calendar cell is rendered with the link to the Event-detail from this calendar cell.

For example: http://localhost/index.php/calendar/eventdetail/20000/-/eventTitle This link opens the main page for the particular calendar event.

The following link http://localhost/index.php/calendar/icalrepeat_edit/20000 opens the edit page for the the particular calendar event.

Is there a code snipped like {{Link:EDIT}} that gives me the URL of the edit page instead of the main event page.
Hello,

Is it always the same menu item? If so you could hardcode the link and just include the {{rp_id:RP_ID}} tag.

Many thanks
Tony
·
Monday, 16 July 2018 09:09
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi the {{rp_id:RP_ID}} tag works perfect. I would also need a tag that gives me the current URL. Because right now I hard coded the URL to the edit of the event.


<a href="http://localhost/index.php/calendar/icalrepeat_edit/{{rp_id:RP_ID}}" >


I would need a tag that gives me the current URL displayed in the browser, then I could do:



<a {{BASEURL}}/{{rp_id:RP_ID}}" >


I tried this tag `{{Url:URL}}` but it just gave me `localhost`

Maybe you can help me with a solution that avoids JavaScript

Thanks so much
·
Sunday, 22 July 2018 09:53
·
0 Likes
·
0 Votes
·
0 Comments
·
TRY: {{link:LINK}}
·
Monday, 23 July 2018 09:10
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post