Main menu

Forum


× Help Forum English

[VIEWED] Informations needed

  • MrMrsic
  • Auteur du sujet
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 10 ans 10 mois - il y a 10 ans 10 mois #6538 par MrMrsic
[VIEWED] Informations needed a été créé par 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
Dernière édition: il y a 10 ans 10 mois par Lyr!C. Raison: [VIEWED]

Connexion ou Créer un compte pour participer à la conversation.

  • MrMrsic
  • Auteur du sujet
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 10 ans 10 mois #6547 par MrMrsic
Réponse de MrMrsic sur le sujet Informations needed
Ok, I have solved number 4 with overrides in Language Manager.
Can you people please give me help with rest ?

Thank you

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 10 ans 10 mois #6556 par Lyr!C
Réponse de Lyr!C sur le sujet 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.8
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) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

  • MrMrsic
  • Auteur du sujet
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 10 ans 10 mois #6561 par MrMrsic
Réponse de MrMrsic sur le sujet 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

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 10 ans 10 mois #6565 par Lyr!C
Réponse de Lyr!C sur le sujet 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.8
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) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

  • MrMrsic
  • Auteur du sujet
  • Nouveau membre
  • Nouveau membre
Plus d'informations
il y a 10 ans 10 mois #6571 par MrMrsic
Réponse de MrMrsic sur le sujet 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

Connexion ou Créer un compte pour participer à la conversation.

  • Lyr!C
  • Portrait de Lyr!C
  • Administrateur
  • Administrateur
  • Lead Developer
Plus d'informations
il y a 10 ans 10 mois #6590 par Lyr!C
Réponse de Lyr!C sur le sujet Informations needed

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

When you love what you do... ;)

MrMrsic écrit: 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.8
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) .

Fichier attaché :

Connexion ou Créer un compte pour participer à la conversation.

Modérateurs: Lyr!C
Temps de génération de la page : 0.109 secondes

 

Follow Us

Créez vos templates Joomla avec Template Creator CK

acymailing logo new