Main menu

Forum


× Help Forum English

[VIEWED] Informations needed

  • MrMrsic
  • Topic Author
  • New Member
  • New Member
More
10 years 2 months ago - 10 years 2 months ago #6538 by MrMrsic
[VIEWED] Informations needed was created by MrMrsic
Hello,

First of all thank you for this great component.

Next, I have a couple of questions conserning iCagenda and I would really appreciate if you can help me.
  1. Can I open and edit iCagenda theme CSS files online in Joomla or I have to create all CSS locally? That goes also for PHP and JS Files.
  2. Is it possible to add and remove fields in backend of Events (for example if I would like to remove Images field or add/edit other field names ?
  3. Is it possible to display StartDate and EndDate in Events backend under Date ?
  4. Can I rename names of control panel files like I want (for example, Categories to Objects, or Events to Birthdays) ?

  5. Sorry for thousands of questions but I'm pulling my hair for two days already.

    Thank you for your time and kind regards,
    Sasa
Last edit: 10 years 2 months ago by Lyr!C. Reason: [VIEWED]

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

  • MrMrsic
  • Topic Author
  • New Member
  • New Member
More
10 years 2 months ago #6547 by MrMrsic
Replied by MrMrsic on topic Informations needed
Ok, I have solved number 4 with overrides in Language Manager.
Can you people please give me help with rest ?

Thank you

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

  • Lyr!C
  • Lyr!C's Avatar
  • Administrator
  • Administrator
  • Lead Developer
More
10 years 2 months ago #6556 by Lyr!C
Replied by Lyr!C on topic Informations needed
Hello!

About 1/, it's not possible online, but by creating your own theme pack for iCagenda

About 2/, it's possible by doing a hack of core files of iCagenda, but this needs to know php, and coding. Some fields could be hidden by an override of css in admin template, and calling the id of the field. To add some fields, in the roadmap, i have planned to add this possibility, but could not give you today a date of delivery.

About 3/, the same as 2/, needs to modify the core files. (and so, that means to create an other extension based on iCagenda)

About 1, 2 and 3, if you ask the questions, i think you don't have maybe enought skill to do the changes in php and coding...

About 4/, yes, every strings of translation on a joomla website could be override using the core joomla function to do this job.

Best Regards,
Lyr!C

Latest version : iCagenda 3.9.3
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

File Attachment:

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

  • MrMrsic
  • Topic Author
  • New Member
  • New Member
More
10 years 2 months ago #6561 by MrMrsic
Replied by MrMrsic on topic Informations needed
Thank you Lyr!C for quick response.
Yes, I'm not the best in PHP at the moment but I plan to learn it in future.
I have great experience with HTML, CSS and JQuery but I still have to work on Joomla and PHP.

Thank you again,
Regards

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

  • Lyr!C
  • Lyr!C's Avatar
  • Administrator
  • Administrator
  • Lead Developer
More
10 years 2 months ago #6565 by Lyr!C
Replied by Lyr!C on topic Informations needed
Today, it's difficult for me to have enought time to do all i want to! (already workign 70-80 hours per week for iCagenda (support, developpement, enhancements of tools...)

Soon (by the end of the month i hope!) i will put online a new website dedicated to iCagenda.
On this website, a documentation will be created, little bu little, where i will add information on usage of iCagenda, but too, a documentation to create a custom theme pack, and i will give tips and info on how to do some advanced changes ;-)

Keep tuned!

Lyr!C

Latest version : iCagenda 3.9.3
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

File Attachment:

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

  • MrMrsic
  • Topic Author
  • New Member
  • New Member
More
10 years 2 months ago #6571 by MrMrsic
Replied by MrMrsic on topic Informations needed
70-80 hours per week ? omg, good luck with that.
I'm looking forward to see a new website and documentation.

As I'm writing, I have one more question?
- Is it possible to disable tooltip, as I need just availability calendar ?

Regards

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

  • Lyr!C
  • Lyr!C's Avatar
  • Administrator
  • Administrator
  • Lead Developer
More
10 years 2 months ago #6590 by Lyr!C
Replied by Lyr!C on topic Informations needed

MrMrsic wrote: 70-80 hours per week ? omg, good luck with that.

When you love what you do... ;)

MrMrsic wrote: I'm looking forward to see a new website and documentation.

As I'm writing, I have one more question?
- Is it possible to disable tooltip, as I need just availability calendar ?

Regards


Yes it's possible by creating a custom theme pack, and editing the php file (and so, removing the <a href> tags inside THEMENAME_day.php)

For example, replace this :
// Show image if exist
				if ($e['image']) {
					echo '<a href="'.$e['url'].'"><div class="linkTo"><span style="background: '.$e['cat_color'].';" class="img"><img src="'.$e['image'].'"/></span>';
				}
				else {
					echo '<a href="'.$e['url'].'"><div class="linkTo"><span style="background: '.$e['cat_color'].';" class="img"><div class="noimg '.$bgcolor.'">'.$e['no_image'].'</div></span>';
				}

by this :
// Show image if exist
				if ($e['image']) {
					echo '<div class="linkTo"><span style="background: '.$e['cat_color'].';" class="img"><img src="'.$e['image'].'"/></span>';
				}
				else {
					echo '<div class="linkTo"><span style="background: '.$e['cat_color'].';" class="img"><div class="noimg '.$bgcolor.'">'.$e['no_image'].'</div></span>';
				}

And this (end </a> tag) :
echo '</span><span class="clr"></span></div></a>';

By this :
echo '</span><span class="clr"></span></div>';

And it should do the job ;-)

Lyr!C

Latest version : iCagenda 3.9.3
We recommend every user to keep iCagenda updated.
Don't forget to have your Joomla!™ up-to-date!

Do you like iCagenda?
I would appreciate if you could take 5 minutes to post a review on JED (Joomla Extensions Directory) .

File Attachment:

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

Moderators: Lyr!C
Time to create page: 0.216 seconds

Follow Us

Create your Joomla templates with Template Creator CK

acymailing logo new