Pleae find the <a> tag with rel="lightbox[nimble_portfolio_gal]" attribute and set its title to the content of portfolio item.
like:
<a href="<?php echo nimble_portfolio_get_meta('nimble-portfolio'); ?>" rel="lightbox[nimble_portfolio_gal]" title="<?php the_content();?>">
Is the code you are referencing found in the add-meta-boxes.php file?
If so, there are multiple instances of that same line of code and I am not sure which to add the title to.
Sorry for my lack of understanding, I tend to excel mostly in design!
Sorry I forgot to mention, its templates/3colround/template.php (for FREE version only)
When I make this change (love the idea of it in the popup and not a page, it is screwing up the ones that have a link attached to it.
Ex: http://kjnarts.com/portfolio/
Any ideas? I still need to remove the Read/View buttons but when I took them out in template.php the nimble_portfolio_title white box remained.
Thanks.
1/2 the battle is the descriptions. If you have URLs in any of them, it will screw up the entire row they’re on. Removing all the URLs from descriptions (aka this was grandfathered in from another portfolio system at one point) fixes the initial appearance.
Now to open up a thread to remove that damned white space.. 🙂
Just to confirm this works well for me.
I also want to display the item-type in the description. Does anyone know the php to call this?
Thanks
In case some of you guys purchased the premium edition and still struggle to set the title not only for the first image, but all appended ones (using the seperate gallery feature):
edit (nimble-portfolio.php):
function nimble_portfolio_item_gallery($post_id = null, $_contentid = 0) {
if ($post_id === null)
return;
if (nimble_portfolio_get_meta('nimble-portfolio-owngal', $post_id)) {
$_images = nimble_portfolio_get_item_gallery($post_id);
foreach ($_images as $_img) {
$_galname = nimble_portfolio_get_gallery_name($post_id, $_contentid);
$_galtitle = get_the_title($post_id);
echo "<a href='$_img' rel='lightbox[$_galname]' title='$_galtitle'></a>";
}
}
}