Tagged: Tags
Am I missing something, I cannot find anything that displays the portfolio tags.
I want to display a cloud of the tags assigned to the portfolio that is being displayed.
Hey hookedonweb!
Thank you for using our theme.
Have a look at:
https://kriesi.at/support/topic/portfolio-tags-and-photo-galleries-for-images-with-different-sizes/
Maybe this will help you.
Regards,
Günter
Thanks, I ended up writing a custom element and added it to your advanced page builder; however, I have one question that is out of scope for support, but hopefully you can help.
The popup elements works fine, i.e., function popup_elements() so does the key required in the popup_elements array, i.e., “required” => array(‘src’,’not’,’’).
The problem I am having is when you select an option the required fields show, but when you unselect the fields the required fields do not hide.
This video explains what I am talking about:
http://screencast.com/t/avr3yo3bEMwn
Hopefully, you can point me in the right right direction.
Hey!
Thank you for the update.
How did you add the element? You can place the code on pastebin.com. I think you’re missing the third entry on the required attribute which is the value of the Add Title’s subtype “Show”. If you have this code to render the “Add Title” setting:
array ( "name" => __("Add Title", 'avia_framework' ),
"desc" => __("Description here", 'avia_framework' ),
"id" => "src",
"type" => "select",
"std" => "no-title",
"subtype" => array(
__('None', 'avia_framework' ) =>'no-title',
__('Show', 'avia_framework' ) =>'show-title',
)
),
The required attribute of the “Title Location” and “Title Name” options should be:
"required" => array('src','not','show-title'),
Best regards,
Ismael