dheerg
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Space over GalleryForum: Plugins
In reply to: Styling post according if it contains a tagI took the more complicated way for myself (i have to assign new categories to a sh*t load of post) and decided to go with in_category() to get the task done.
Regards,
DheerForum: Plugins
In reply to: Photography Protection Widget or PluginYou can use Nextgen Gallery plugin to show the picture online and it comes with a feature to add a watermark. A complex watermark is the only way you can protect your interests.
another plugin is, Flexible Upload though I have not used this before. Check ’em out.
Cheers!!
Dheer
Forum: Plugins
In reply to: Custom fields with Google MapI had tried doing this once before, if you are trying to call for the custom fields you could create a new loop before the google js. To my knowledge it will go as follows:
<$php global $lat; ?> <$php global $longt; ?> <?php if ( is_single() ) { ?> <?php $lat = get_post_meta($post->ID, 'Latitude', true); ?> <?php $longt = get_post_meta($post->ID, 'Longitude', true); ?> <?php } ?> <?php echo $lat; ?> <?php echo $longt; ?>The first two lines can be skipped.
the third line starts the loop
‘Latitude’ and ‘Longitude’ in the 4 & 5th line is the name of the custom field.
Line 6 closes the loop
The last two lines call for the value in your google js.Hope this helps,
Cheers!!
Dheer