1,066 reputation
213
bio website twitter.com/lumpysimon
location United Kingdom
age
visits member for 2 years, 3 months
seen May 14 at 21:59
stats profile views 50

Co-founder of Lumpy Lemon, a small & friendly UK-based WordPress design & development company specialising in custom-built WordPress CMS sites. I work mainly, but not exclusively, with not-for-profit organisations.

Find me on Twitter, Skype & GitHub: lumpysimon


Mar
4
asked Creating custom permalink structure for languages
Mar
4
awarded  Revival
Feb
1
awarded  Yearling
Jan
29
comment Insert wp gallery shortcode into custom textarea
i've just come across the advanced custom fields plugin which allows galleries to be inserted via the 3.5 media uploader (support.advancedcustomfields.com/discussion/4486/…), perhaps that could be useful?
Jan
27
answered Insert wp gallery shortcode into custom textarea
Jan
27
comment $wp_query meta_key naming issue
doh! ignore me, i just noticed the [] ...
Jan
27
answered $wp_query meta_key naming issue
Jan
27
comment How to add custom text editor in add post section?
which features do you want to add or remove? knowing that will help determine whether it's possible with the default tinymce editor. tinymce is very strongly integrated with wordpress, so attempting to use another one is likely to cause more problems than it solves.
Jan
27
comment Custom Post Type archive
have you tried flushing the rewrite rules (by going to the permalinks settings page & clicking save)? also (sorry, this bit isn't an answer to your question, just me being picky!), i find it more logical to follow the convention of naming custom post types using the singular noun (as used in core for "post" & "page"). "type" is also a reserved term in WordPress so you shouldn't use that for your taxonomy.
Jan
27
revised How to attach a uploaded video to post from front end
added more info
Jan
27
answered How to attach a uploaded video to post from front end
Jan
27
comment How to attach a uploaded video to post from front end
videopress is for site owners to upload video via the admin interface - the question is about front-end uploading.
Jan
26
revised Query custom post types and a specific page?
fixed typo: specificity -> specifying
Jan
26
suggested suggested edit on Query custom post types and a specific page?
Jan
26
answered Avoiding using a loop to access a single post
Jan
26
answered How to add script right after <head>?
Jan
22
answered Wordpress “Loop” with large set of results
Jan
22
comment Currency (price) formating on custom fields
it looks like @s_ha_dum has answered this below, it's THEME_DIR that's causing the problem.
Jan
22
comment Get post-meta value of all custom-posts - lowest to highest year-count?
i've updated my answer based on your foreach loop. hard to say why it isn't working - try putting in print_r($years) to check if the array has something in it. you'll also need to delete the transient as it lasts for 4hrs. set it to 10 seconds while you're debugging.
Jan
22
revised Get post-meta value of all custom-posts - lowest to highest year-count?
added foreach loop based on change to original question