910 reputation
211
bio website sneekdigital.co.uk
location
age
visits member for 2 years, 4 months
seen May 13 at 10:01
stats profile views 48

Feb
14
comment Posts don't appear on the Blog page
This is not the correct fix, you are now showing an archive page. What are your reading settings like? You need to set a page as the 'Posts page' for the correct templates to be used.
Feb
13
answered Posts don't appear on the Blog page
Feb
13
comment Make WP_Query more efficient?
I would look to store the results in a transient. Depending on how often you need to recalc the data it could be a solution?
Feb
12
comment Setting selected term_id with wp_dropdown_categories?
Could you post the dump of the $terms array please? Also, could you dump the HTML of the wp_dropdown_categories thanks :)
Jan
3
awarded  Yearling
Dec
21
comment Isotope Drop Down Categories Filter Function
Im guessing it was voted down as it's not a WordPress specific question. You might be better of over at stackoverflow.
Nov
30
answered Displaying posts limit: can't get pagination to display
Nov
26
revised NextGen - Display Image Count Per Gallery
added 68 characters in body
Nov
26
answered NextGen - Display Image Count Per Gallery
Nov
26
comment NextGen - Display Image Count Per Gallery
Hi Ian, if you review my comment, please tell me which path you need to take as they are different.
Nov
21
comment How to stop _wpnonce and _wp_http_referer from appearing in URL
take a look at wp-admin/edit.php it checks for any actions and removes the query arguments then redirects. I've added a filter on the init action to do something similar.
Nov
20
comment NextGen - Display Image Count Per Gallery
If you are outputting a gallery then there is a global called $images just use echo count( $images ). However if you are listing all galleries without being in an albumn and want to show the number of images I will have to do some more digging.
Nov
20
comment NextGen - Display Image Count Per Gallery
Do you want a single page with a link to each gallery? If so I would suggest using the Album feature, as I think that's exactly what you want.
Nov
19
comment NextGen - Display Image Count Per Gallery
I remember using custom templates for NextGen, can you not just count() the images in the array?
Nov
17
comment wp_query to display custom taxonomy terms
If you are using the default wp template hierarchy (which it looks like you are) you won't need any special WP query, WordPress will just know. So take a standard loop. Make a backup of that template, then add a normal WP look and see how you get on. It should be what you want.
Sep
19
awarded  Popular Question
Jul
25
comment WP_enqueue_script() loads them always in wp_footer()?
The code to instantiate your jQuery objects should be dependant on which ever library you are using. Thus if you wp_enqueue_script your scripts and pass in the dependiency array the relevant library like 'jquery-ui-dialog', and load your script in the footer; everything should work as intended.
Jul
25
comment WP_enqueue_script() loads them always in wp_footer()?
I believe and could be wrong, but as they have been registered already, when enqueueing them with no src will trigger WP to look at the registered details rather than your item. Similarly, you should be using the wp_enqueue_scripts hook. Lastly, it's considered a best practice to load your JS in the footer for page speed.
Jul
25
answered List all the tags from a custom post type
Jul
25
comment Custom Login with Ajax not working with IE
Server side code would not run or work differently depending on the browser. I would also advise to use the power of WP rather than 'extend' it. Your current '$dbquerry' is viable to SQL injection.