keithdevon
Forum Replies Created
-
Forum: Plugins
In reply to: [Really Static] Can the plugin create relative URLs?Hi Erik,
Have you had a chance to look at this? I would really appreciate that plugin that you mentioned.
Cheers,
Keith
Forum: Plugins
In reply to: [Regenerate Thumbnails] [Plugin: Regenerate Thumbnails] Odd PHP when failingSame for me:
Debugging Information
Total Images: 7
Images Resized: 0
Resize Failures: 7function (){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this} function (){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this} function (){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this} function (){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this} function (){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this} function (){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this} function (){if(c){var a=c.length;m(arguments),i?k=c.length:e&&e!==!0&&(j=a,n(e[0],e[1]))}return this}
Thanks in advance for any help.
Forum: Themes and Templates
In reply to: has_post_thumbnail returns true on every postI just had this same problem. To fix it I had to set a featured image and then remove it, for each offending post. Annoying I know, but it worked for me.
Forum: Fixing WordPress
In reply to: Custom Post Type Pagination – 404 on last pageThanks @netconstructor, that worked for me. Question is, what’s that all about?!
Forum: Plugins
In reply to: [WP Orbit Slider] [Plugin: WP Orbit Slider] loading gif not showingSame problem for me. I get a flash of all the slides stacked up, and then it starts working perfectly.
This is because the orbit js code is only called after the page has loaded. So it’s plain html/css up to that point.
I’ve tried using the css provided, i.e.
/* PUT IN YOUR SLIDER ID AND SIZE TO MAKE LOAD BEAUTIFULLY ================================================== */ #caseStudies { width: 1000px; height: 210px; background: #fff url('../images/orbit/loading.gif') no-repeat center center; overflow: hidden; } #caseStudies>img, #caseStudies>div, #caseStudies>a { display: none; }
I’ve changed
#caseStudies
to.orbit-wrapper
and#featured
, but these just both hide the slider altogether. Thedisplay:none
rules are not being over-written by the js.Any help on this would be much appreciated.
P.s. I also need to keep it all responsive!
Forum: Plugins
In reply to: [WP-Cufon] Hover not working (I have read the other posts on this)OK. I got it kind of working. Here’s what I used:
Cufon.replace('a', { fontFamily: 'ITC Avant Garde Std Bk', hover: true }); Cufon.set('fontFamily', 'ITC Avant Garde Std Bk').replace('h1')('h2')('h3')('h4')('p')('li')('#access .menu')('#access div.menu ul')('#couples h3')('#pros h3')('.textwidget'); Cufon.set('fontFamily', 'ITC Avant Garde Std Md').replace('strong')('h3')('#footer h4')('#footer h3')('h1.entry-title');
The text-decoration:underline that I set for the hover state didn’t work, so I used border-bottom instead. Colors now change and nothing turns bold that shouldn’t. Weird.
Forum: Plugins
In reply to: [WP-Cufon] Hover not working (I have read the other posts on this)I’d love an update on this also.
I’m using the following:
Cufon.set('fontFamily', 'ITC Avant Garde Std Bk').replace('a')('h1')('h2')('h3')('h4')('p')('li')('#access .menu')('#access div.menu ul')('#couples h3')('#pros h3')('.textwidget'); Cufon.set('fontFamily', 'ITC Avant Garde Std Md').replace('strong')('h3')('#footer h4')('#footer h3')('h1.entry-title');
I would like to be able to set hover states for my links. I added changed to the following:
Cufon.set('fontFamily', 'ITC Avant Garde Std Bk').replace('a', {hover: true})('h1')('h2')('h3')('h4')('p')('li')('#access .menu')('#access div.menu ul')('#couples h3')('#pros h3')('.textwidget'); Cufon.set('fontFamily', 'ITC Avant Garde Std Md').replace('strong')('h3')('#footer h4')('#footer h3')('h1.entry-title');
This hasn’t made any difference. I was able to get a hover effect working by adding:
Cufon('a', {hover: {color: 'aqua'}});
… to the top of the code. However this was very buggy. The links would change color but also turn bold.
Cufon('a', {hover:true});
means that the color doesn’t change, but again the links turn bold.
Can someone please shed some light on this!
Thanks for the replies. Paul, I’m not exactly sure what you mean. I basically need users that don’t have gravatars to be added to the $hiddenusers array.
Using the code that Ipstenu linked to, I have a way of doing this, but it has to ping the gravatar site for every user, which takes ages!
If I figure something out, I’ll let you know.
Forum: Themes and Templates
In reply to: Custom post type tags/categories archive pageBig thanks to the clever folk on this thread. I had this exact problem, including the nav issue. Now solved.
Thanks.
I’m also having this problem.
I have a custom post type called ‘Accommodation’. The slug is ‘accommodations’ as there is an accommodation page already.
I have created a category ‘Accommodation Type’, and a sub-category ‘Boutique Hotels’. How do I display the category archive for ‘Boutique Hotels’?
I’ve tried:
- /accommodations/accommodation-type/boutique-hotels/
- /accommodations/boutique-hotels/
/boutique-hotels/ brings up a test post using the built in posts function but none of my custom posts.
Please help! Thanks.
To save everyone time. I found the problem. It was simply a PHP memry error.
I fixed it by adding define(‘WP_MEMORY_LIMIT’, ’64M’); to my wp-config file.
Can’t wait to start using the plugin!