Joomla Software Developer
A couple days ago when I was working on a Joomla project for a client, I came across a wonderful software developer from Romania, who was extremely knowledgeable about Joomla and php coding. In addition, he has created numerous extensions for the Joomla content management system. One of my favorite is the fully customizable contact form that one can embed on the website. I had some trouble with getting the fields to show up on the page. I emailed the gentleman named Alex and he responded very promptly.
In my case, I was using mySQL version 5 (this I found on the control panel of the database) and php version 4.3.11 (this I found creating a file called info.php and running it). Within that file, I enclosed the following code:
I was instructed to add the following lines of code:
The file that needs modifications is:
components\com_aicontactsafe\views\message\view.html.php
You have to modify the line 226 from :
foreach($fields as $field) {
to
foreach($fields as $field_key=>$field) {
And add a new line above the 412:
$fields[$field_key] = $field;
In the end the lines 411, 412 and 413 should beȘ
}
$fields[$field_key] = $field;
}
Now you may be wondering, what else does he do? They also provide web hosting, software and web development services to clients worldwide. Anyway, I wish you all the best of luck with your programming!