Hi.
I'm trying to make a payment plugin, this plugin has some custom fields I added manually in example.xml file.
Here is code how I added.
How it displays:
So far, everything is fine.
My problem is with last 3 fields, I can't accessing them correctly.
Access to the fields above them works perfectly, but with files it doesn't.
I am trying the code You provided like this:
$plugin = JPluginHelper::getPlugin('hikashoppayment', 'example');
$this->params = new JRegistry(@$plugin->params);
echo $this->params->get('caTest');
This shows me only the name of the file I entered.
The question is how can i get the entire file added there? I need the file and its content inside to make request.
Hope I was clear.
Regards.