I put a lot of time into writing guides that make tech easier to understand.
If you found one useful, consider
buying me a coffee ☕ — it’s a small way to say thanks and it motivates me to keep sharing.
In this guide, I will show you how easy it is to translate the frontend of your custom Magento Extension. While building your extension you should format the text in your template files that you would want to be easily translated like this. If you need to use strings in classes or blocks you can…
In this example, I will show you how easy it is to retrieve a single piece of Data from your database. For this post, we assume you already have a working extension and just need to know how to retrieve a single piece of data from your controller. Let’s pretend that you have the need…
So what is a variable you may ask? A variable allows you to store values and expressions. What does that mean exactly? Let’s imagine you are writing a script for a client with some certain HTML that appears numerous times throughout your script. Now you can simply type out this HTML every single time or…