Need help with Joomla? We are available for hire to help with Joomla customization, upgrades, maintenance, and custom development.
Explore our services

Need image + Detail link and registration/detail buttons on Daily Calendar View

  • Patrick Toulze
  • Topic Author
  • Offline
  • Elite Member
  • Elite Member
More
5 years 4 weeks ago - 5 years 1 week ago #144929 by Patrick Toulze
I need the event image (that link to “Details”) on the left side and the “Registration” & ”Detail” buttons on the “Daily Calendar” View 

 

html > com_eventbooking > calendar > daily.php

Just need the insertion code in this php view?
Last edit: 5 years 1 week ago by Patrick Toulze.

Please Log in or Create an account to join the conversation.

  • Tuan Pham Ngoc
  • Away
  • Administrator
  • Administrator
More
5 years 4 weeks ago #144953 by Tuan Pham Ngoc
Yes. That's correct file to modify.
The following user(s) said Thank You: Patrick Toulze

Please Log in or Create an account to join the conversation.

  • Patrick Toulze
  • Topic Author
  • Offline
  • Elite Member
  • Elite Member
More
5 years 3 weeks ago - 5 years 3 weeks ago #144981 by Patrick Toulze
Thank You Tuan
I was only able to add a “Details” button using the code use on the title.

I try many codes from others theme files to add the Event Picture or the full “Task Bar” with the Register Button and Details.
So far nothing work in that override?

Also I just want to thank you for Event Booking, after struggling a bit  *as it was my first install) I can say that this is a great software, I’m really demanding and the degree of toughts and possibility given here is incredible. I’m to prepare a 5 stars review on the JED — Great Software and  Great Support — Thank You again!.

Now I’m installing EShop on the same site ( I will start to ask questions on it soon) — I will try to not bother you to much  
— First question : Eshop was bought by the owner of the web site (he give me the key of his Joomdonation account) but I wonder If I can have access to the eShop Support as I’m register with my own account (with Event Booking).
Are you able to add an administrator (with another email) on the same account?
Last edit: 5 years 3 weeks ago by Patrick Toulze.

Please Log in or Create an account to join the conversation.

  • Tuan Pham Ngoc
  • Away
  • Administrator
  • Administrator
More
5 years 3 weeks ago #144996 by Tuan Pham Ngoc
This is not a quick and easy modification, I'm afraid of because to show toolbar buttons to allow users to click on to perform registration, we will need to perform many conditions check to make sure registration is still available before showing these buttons

I could not find time to look at it today, too busy. Tomorrow, I will see if I can find sometime to look at it. But I could not promise that I will be able to help with this modification if it takes too much time.

Please Log in or Create an account to join the conversation.

  • Patrick Toulze
  • Topic Author
  • Offline
  • Elite Member
  • Elite Member
More
5 years 1 week ago - 5 years 1 week ago #145250 by Patrick Toulze
I was able to add a “Details” button, using the same type of link as the title

That’s Good enough for me!

SUGGESTION:
I think you should add a detail button at least IN THAT VIEW....
Button alway represent an action for the user, people don’t necessary understand that they have to click the title to see the detail, with a button, its more clear....

What I missed now is to bring the Event image in that view?
I try some code but it didn’t work, any help here will be great....
Last edit: 5 years 1 week ago by Patrick Toulze.

Please Log in or Create an account to join the conversation.

  • Tuan Pham Ngoc
  • Away
  • Administrator
  • Administrator
More
5 years 1 week ago #145252 by Tuan Pham Ngoc
Something like the code below would help:
Code:
<?php     if ($event->thumb && file_exists(JPATH_ROOT . '/media/com_eventbooking/images/thumbs/' . $event->thumb))     {     ?>         <img src="<?php echo JUri::root().'/media/com_eventbooking/images/thumbs/'.$event->thumb ?>" />     <?php     } ?>
The following user(s) said Thank You: Patrick Toulze

Please Log in or Create an account to join the conversation.

  • Patrick Toulze
  • Topic Author
  • Offline
  • Elite Member
  • Elite Member
More
5 years 1 week ago #145259 by Patrick Toulze
Work perfectly, Thank You! Tuan.

Please Log in or Create an account to join the conversation.

  • Tuan Pham Ngoc
  • Away
  • Administrator
  • Administrator
More
5 years 1 week ago #145260 by Tuan Pham Ngoc

Please Log in or Create an account to join the conversation.