

TIPS - Custom fields and the law of relativity
- Written by: M. Alexandre ELISÉ
Let's say you want to add a calendar custom field for some event (business, party, meeting)
and you want to have a default datetime for the event that is let's say 3 days from now.
The start date is now.For just 3 days it seems easy to calculate in your head,
but what if you don't want to bother do that and rather say something like:
Hey Joomla! I wanna 3 days from now please. Can you do that? Sure.
- Create two custom fields of type calendar: start-date and end-date
- Set default for start date by typing now
- Set default for en d date by typing now +3 days
That's it change and experiment with other values it should work.

EXTENSION - Dynamic Custom Fields Inference
- Written by: M. Alexandre ELISÉ
Hello! Super Joomlers
The concept of "Dynamic Custom Field Inference"
Attempt to "infer" the type of custom field to dynamically create based on cached api
Dynamic What ? Just think of it as "Choco Fields!" Chocolate Custom Fields, synthaxic sugar around custom fields creation wrapped around cached api ice cream
Do you think it's April's Fool Day? Of course! But this extension is real.
Meet "Choco Fields"

SOLUTION - Custom fields touch my heart
- Written by: M. Alexandre ELISÉ
Hello super joomlers!
A joomler friend asked me: "how to add $this->item->jcfields in a core module like mod_articles_latest"
I accepted the challenge and share with this post the results to the Joomla! community, the joomlers family.
Get right into the code well commented and ready to use.

TIPS - Using custom fields by name
- Written by: M. Alexandre ELISÉ
Hello super joomlers!
I know, I know. You will likely tell me that there will be conflicts by using custom fields by name because names are not necessarily unique.
But there is a solution for that. Using a naming convention for your custom fields. For example for article content custom fields you could use something like article-my-field.
Besides this convention. You can use this oneliner sample code rather than trying to memorize custom fields id by heart even if we might have written the ids down on a document it's a painful task.
Here is an attempt to simplify this task.

TIPS - Custom fields for non-developer
- Written by: M. Alexandre ELISÉ
Hello super joomlers!
This time, I will show you a simple code snippet to copy paste in your template overrides of com_content (articles). For those of you who want to add custom fields in their favourite templates there are 2 snippets to add. Here they are.