Hiranthi
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Register Plus] Problem with custom fieldsHmm.. that’s weird. Unfortunately I can’t think of a reason why the plugin would behave like this..
Is the site, you have this issue on, online?
Forum: Plugins
In reply to: [Plugin: Heatmap Plugin] no documentation whatsoever!any news regarding this issue?
Forum: Plugins
In reply to: [Plugin: Register Plus] Problem with custom fieldswhat’s the type of field you added? (select field?)
Forum: Plugins
In reply to: [add-browser-search]I’m currently using v2.7.1
Forum: Your WordPress
In reply to: Email issueyou should look at the sticky: this section of the forums is not for support issues.
// and yes it is possible, just search for the Mail From plugin.
Forum: Plugins
In reply to: [Plugin: MailPress] Custom fields for subscription formIt’s already possible. Go to Users and select one of the users. Once you’re on that page you can add a custom field.
To add the info of that custom field in your email template use $args->your_data (see the api page on the mailpress website for more info).
Forum: Plugins
In reply to: [Plugin: Heatmap Plugin] no documentation whatsoever!I was wondering whether it was me or the plugin..
Dimitry has made a few adjustments I mailed him about (404’s on a PHP file trying to include within the JS class, tablename in one of the files which was static – if you didn’t have the wp_ prefix you’d get errors). With 1.2 I had a memory_overflow error (still don’t know why) and with 1.3 the error is gone, but also no output (as ajfpp said: no dots on the heatmap).
Forum: Plugins
In reply to: [Plugin: NextGen Gallery] Thumbnails don’t get createdUpdated to v1.2.0, added a test gallery and uploaded an image: thumbnails are created again 🙂
And to test it a little more I deleted the thumbnail image and recreated the thumbnail inside the gallery (didn’t work before). Also created 🙂
So, I don’t know about the others, but my problems are fixed now 🙂
Forum: Plugins
In reply to: [Plugin: NextGen Gallery] Thumbnails don’t get createdNo, not getting any errors..
Forum: Developing with WordPress
In reply to: [Plugin: NextGEN Gallery] picpreviewI’m using the following in my portfolio:
<?php function getItemPreview() { global $wpdb, $post; $img_cat = $wpdb->get_row('SELECT * FROM '.$wpdb->nggallery.' WHERE gid = '. get_post_meta($post->ID, 'pf_nextgen_gallery', true) .' ORDER by gid DESC limit 0,1'); $first_image = $wpdb->get_row('SELECT * FROM '. $wpdb->nggpictures .' WHERE exclude != 1 AND galleryid = '. get_post_meta($post->ID, 'pf_nextgen_gallery', true) .' ORDER by pid DESC limit 0,1'); $albumPreview = $wpdb->get_results('SELECT pid, filename FROM '.$wpdb->nggpictures.' WHERE pid = '.$img_cat->previewpic.'', OBJECT_K); $toppreview = get_option ('siteurl') . '/' . $img_cat->path . '/' . $first_image->filename; if ( $previewimg = $albumPreview[$img_cat->previewpic]->filename ) { $toppreview = get_option ('siteurl').'/' . $img_cat->path . '/' . $previewimg; echo '<style type="text/css">#image { background-image:url('.$toppreview.')!important; }</style>'; } else { echo '<style type="text/css">#image { background-image:url('.$toppreview.')!important; }</style>'; } } ?>As you can see I add a custom field pf_nextgen_gallery that stores the ID of the gallery I want the preview of on that page/post. Ofcourse the output can be changed according to your wishes 🙂
Forum: Plugins
In reply to: [Plugin: NextGen Gallery] Thumbnails don’t get createdbtw, I’m using the latest stable version (v1.1.0)
Forum: Plugins
In reply to: [add-browser-search]Just downloaded the latest version, installed and configured it and when I want to add it to my FF browser search, I get a notice that FireFox couldn’t load the opensearch.xml.
This means that the issue I reported two months ago is still there..
Forum: Your WordPress
In reply to: WordPress designers (Dutch)WordPress designers/developers from Belgium can register now too!! 🙂
Forum: Fixing WordPress
In reply to: Pretty permalinks only show homepageWell, to be quite honest, I don’t want to use the year or id of the post/page in the permalink. Especially not in the beginning of it (that’s why I always use the one I mentioned before).
But hey, that’s just my opinion. Thanks for mentioning it though 🙂Forum: Fixing WordPress
In reply to: Pretty permalinks only show homepageWell, you should use something similar to /%category%/%postname%/
If you’d set the permalink structure to something like /%category%/%postname%.html you’ll notice that only the posts will have the %postname%.html part in the url. Pages don’t use that part of the permalink structure and my guess is that that’s why you’ve been getting the 404’s.