Hi,
Need assistance in finding out how do I exclude the photoQDescr & photoQExif that is below the image as part of the link that brings users to the previous photo?
Also how can I increase the font size of the photoQDescr text?
Thanks!
Hi,
Need assistance in finding out how do I exclude the photoQDescr & photoQExif that is below the image as part of the link that brings users to the previous photo?
Also how can I increase the font size of the photoQDescr text?
Thanks!
guess you are talking about the iq2 theme?
you need to uncheck the description and exif checkboxes under photoq settings -> views -> the_content as it is described here: http://www.whoismanu.com/iq2-wordpress-photoblog-theme/
font size usually via css. just saw however that the photoQDescr class doesn't seem to be there in the iq2 demo. i'll check on this.
no, i'm not using the iq2 theme, it's Spotless by Taly, If i uncheck the 2 boxes , i won't get the description nor the exif data shown which is what i want.
in a simple way, i want to display description and exif information, but these would be just text and not a link.
I've search through your plugin's css as well as my theme's css, but changing anything dosn't help!
quite puzzled with these!
the problem is that the theme you are using shows them in a link. also if you show the description in a blockquote as suggested by the theme author the result is the same: it is shown as part of the link.
the only solution i see is that you adapt the theme but this means tweaking the theme files and some knowledge of php might be needed. basically, you can put a statement like this one
<?php echo get_post_meta($post->ID, 'photoQDescr', true); ?>
into theme at the place where you want the description to show. this shows the content of the photoQDescr field where photoq stores the photo description. for exif it is more or less the same, only that you need to show the custom field photoQExif instead of photoQDescr.
great! I'll give it a shot and see what's the out come.
thanks!
You must log in to post.