jowens
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Google Analytics for WordPress] Compatibility with 2.9.2?Having the same problem in 2.9.2 on a fresh install of both WordPress and the plugin.
I made sure wp_footer() is present before installing the plugin. Grateful for any ideas on this.
Forum: Fixing WordPress
In reply to: [Plugin: NextGEN Gallery] can singlepic also be linked to album?I’d like to be able to do this as well. I keep my albums/galleries on a separate page and want to be able to link to new pictures by putting single images within posts. Has anyone figured out how to do this?
Forum: Requests and Feedback
In reply to: [Plugin: NextGEN Gallery] Gallery description text?Alex, thanks for the quick response.
Here’s what I did. It may not be pretty code, as I’m new to this, but it works.
In the nggCreateGallery function, I added:
global $wpdb; $galleriesOfAlbum = $wpdb->get_results('SELECT * FROM '.$wpdb->nggallery.' WHERE gid ='.$galleryID, OBJECT); $galleriesOfAlbum = ngg_emulate_objekt_k($galleriesOfAlbum); $gallerycontent = $galleriesOfAlbum[$galleryID];near the beginning, and then added:
$out .= '<h3 class="gallerytitle">'.$gallerycontent->title.'</h3>';to show the title where I wanted it.
If there is a more elegant way to do this, please let me know.
Forum: Requests and Feedback
In reply to: [Plugin: NextGEN Gallery] Gallery description text?I’m very interested in this as well. Would it be possible to just give us a pointer as to where to look to add the code ourselves?