Dears,
I'm preparing the new version of a website for a volleyball company, using the latest free version of JooDB.
As I've to manage different teams, I was trying to concatenate different DB fields to dinamically build information and retrieving images from the folder.
In a catalog view I wanted to build the srouce images in this way:
<img style="max-width: 35px; width: 95%;" alt="" src="images/{joodb Stagione}/{joodb Campionato}/loghi/{joodb ShortA}.png">
having the following values in my DB:
Stagione="2018-2019"
Campionato="B2FA"
ShortA="TEST"
I expected the url to be filled as follow
<img style="max-width: 35px; width: 95%;" alt="" src="images/2018-2019/B2FA/loghi/TEST.png">
while this is the result I get
/nuovob2/images/2018-2019/<a href='/nuovob2/index.php/serie-b2/calendario-e-risultati-b2-2018-2019/182-b2fa' title='Read more...' class='joodb_titletink'>B2FA</a>/loghi/TEST.png
I really can't understand why the second field is not properly filled.
Please note that /nuovob2/index.php/serie-b2/calendario-e-risultati-b2-2018-2019 is the url of the page where I'd like to show the catalog view...
Do you have any idea what's wrong here?
Thanks in advance for any suggestion.