Hi,
If this is possible already, let me know.
Paul.
---
Relational Variables:
You have a variable, say "Brand" that you can assign other variables to, e.g. Logo, Url, ID, Phone etc etc. When you select that variable in code, all the subvariables come available. Here is an example.
Main:- Brand (Jux Jewellery)
Sub:- Logo (juxlogo.jpg)
Sub:- Url (www.juxjewellery.co.uk)
Sub:- OurUrl (jux-jewellery.php)
Sub:- Description (jux do silver jewellery)
Sub:- DesignerName (mrs. jux)
Usage, In Properties you select the brand (or whatever). In Code you use it like:
Brand (results in "Jux Jewellery"
Brand.Logo (results in juxlogo.jpg)
Brand.OurURL (results in juxjewellery.php)
etc
Why? This would make it much easier to set up one time info and reference it all over the place. At the moment you either have to have a lot of different variables to select for each product etc or you have to have lots of "block ifs" (e.g. if brand=jux then show this logo etc).
If this is possible already, let me know.
Paul.
---
Relational Variables:
You have a variable, say "Brand" that you can assign other variables to, e.g. Logo, Url, ID, Phone etc etc. When you select that variable in code, all the subvariables come available. Here is an example.
Main:- Brand (Jux Jewellery)
Sub:- Logo (juxlogo.jpg)
Sub:- Url (www.juxjewellery.co.uk)
Sub:- OurUrl (jux-jewellery.php)
Sub:- Description (jux do silver jewellery)
Sub:- DesignerName (mrs. jux)
Usage, In Properties you select the brand (or whatever). In Code you use it like:
Brand (results in "Jux Jewellery"
Brand.Logo (results in juxlogo.jpg)
Brand.OurURL (results in juxjewellery.php)
etc
Why? This would make it much easier to set up one time info and reference it all over the place. At the moment you either have to have a lot of different variables to select for each product etc or you have to have lots of "block ifs" (e.g. if brand=jux then show this logo etc).
Comment