
- Details
- Written by: Mr Alexandre J-S William ELISÉ
- Category: Free Forever
-
Also available:
- Hits: 7902
Hello super joomlers!
A new Joomla! core juicy trick just for you.
Did you know that you can use multiple sql files for the install process of your custom component?
Read more: TIPS - How to use modular SQL in your XML manifest

- Details
- Written by: Mr Alexandre J-S William ELISÉ
- Category: Free Forever
-
Also available:
- Hits: 3441
Hello super joomlers!
During your Joomla! journey, you will from time to time have a problem that can be solved by: "The Power of the Guest"
In fact it is the Guest access level, that is by default in Joomla! core
The Power of the Guest relies upon the fact that we can show elements of our Joomla! site like (menus, articles, modules, etc...) just to guests (not logged in users)
Therefore we can tailor an awesome user experience just for our guests.
Don't hesitate to use this functionality in your Joomla! sites.
That's all for today! Take care

- Details
- Written by: Mr Alexandre J-S William ELISÉ
- Category: Free Forever
-
Also available:
- Hits: 3232
Hello super joomlers!
After searching the web, the official website, php documentation and forums, I found, at last, the solution thanks to a friend's suggestion : "What if it was just the image background?"
Read more: SOLUTION - How to show a png image with transparent background using Imagick...

- Details
- Written by: Mr Alexandre J-S William ELISÉ
- Category: Free Forever
-
Also available:
- Hits: 2593
Hello super joomlers!
As a Joomla! developer, in my opinion, there are 3 things to master:
Read more: SUGGESTION - 3 things to master as a Joomla! developer

- Details
- Written by: Mr Alexandre J-S William ELISÉ
- Category: Free Forever
-
Also available:
- Hits: 2538
Hello super joomlers!
Assuming your plugin was a system plugin named helloworld. (plg_system_helloworld)
The base structure of the link to access to your plugin directly from your Joomla! website backend would therefore be:
Read more: TIPS - Direct access to a Joomla! plugin configuration using a link

- Details
- Written by: Mr Alexandre J-S William ELISÉ
- Category: Free Forever
-
Also available:
- Hits: 2438
After watching many conferences about clean code on Youtube. I share with you what I have learned.
General rules about clean code:
- do not abbrieviate
- return early
- do not use return
- Keep classes and methods small
- features separeted in methods
- defensive controls exit early
- one ident level
Read more: NOTES - Conferences notes about "clean code"

- Details
- Written by: Mr Alexandre J-S William ELISÉ
- Category: Free Forever
-
Also available:
- Hits: 2435
Hello super joomlers!
If you are like me and like using the latest and greatest stuff, you might have tried to install Joomla! 4.x-dev on your computer. But maybe you had the same issue than I had. Either on frontend and backend modules won't show up. However no prominent error pops up. An SQL query to the rescue! Here it is:
UPDATE `#__modules` SET `publish_down` = '0000-00-00 00:00:00' WHERE 1=1;
UPDATE `#__content` SET `publish_down` = '0000-00-00 00:00:00' WHERE 1=1;
At first sight, the second query is not required. But just in case the articles won't show up, you can execute the second query. To do this you can use tools like phpMyAdmin, adminer, Sequel Pro, HeidiSql or MySQL Workbench.
Take care super joomlers

- Details
- Written by: Mr Alexandre J-S William ELISÉ
- Category: Free Forever
-
Also available:
- Hits: 2324
Hello super joomlers!
Sorry for being so quiet for so long. I'm back with a new present for you: How to load global language file from your Joomla! site in any of your custom extensions. Are you a Joomla! extension developer? You might have had, just like me, that same problem when coding your extension.
Read more: SOLUTION - Force loading of Joomla! backend global language file in your...

- Details
- Written by: Mr Alexandre J-S William ELISÉ
- Category: Free Forever
-
Also available:
- Hits: 2311
Hello Super Joomlers!
Today I will talk about percona server. An optimized and ultra high performance fork of MySQL to have enterprise level quality for free. Here is the 5 steps to install it on Ubuntu Bionic.
Read more: TIPS - How to install Percona Server on Ubuntu Bionic in 5 steps

- Details
- Written by: Mr Alexandre J-S William ELISÉ
- Category: Free Forever
-
Also available:
- Hits: 2241
Hello super joomlers!
By default, you can only send and email in text only or html only with JMail api in Joomla! 3.
But with this code snippet, you can send both, html and text email at the same time.
This is useful to improve your score and find your email less and less in your customers spams mailbox.
Here is the code.