davesgonebananas
-
Make WP strip span tags?
Have you tried using the Paste from Word button. It usually does a good job of cleaning up text.
-
Display array items one at a time?
Good stuff! It's always better when you find your own solutions, we just sometimes need a hint on where to look!
-
Styling Pages vs. Posts?
If you use post_class() in your theme then styling different posts / pages becomes very easy. You could use .post h3 to style headings on a post and .page img to style images on a page. It also supports tags, categories and sticky posts. http://c…
-
Joomla inherited CSS attribute problem
Try changin it to #section2 h3#resource-listings - just a thought.
-
Array Problem
Just use mysql_fetch_array() to, well fetch an array of the query results.
-
installing wp on 3 subdomains... best way?
There's lots of options on the Codex article: http://codex.wordpress.org/Installing_Multiple_Blogs Best regards, Dave
-
Wufoo form not displaying
Most CMS have some sort of restrictions on what HTML tags the user can input, including some that cost hundreds of thousands of dollars. The reason being that the end user of the product probably doesn't understand the nuances of (x)HTML, and …
-
WordPress - Taxonomy -> Ob errors
Sounds like some sort of Javascript problem. Ensure JS is enabled and you have debugging turned off.
-
Wufoo form not displaying
Neither nor are part of the Wordpress allowed HTML tags list which means they will be stripped from your post when you try to publish it. You should create a custom template for your contact page and paste the Wufoo form in there, or use a cust…
-
How to make a multi-peer PHP array based on WP cat heirachy?
You can use a custom walker to achieve this. It's a fairly advanced topic but i'll "walk" you through it :roll: Start by creating a class for your walker either in functions.php in your theme, or wherever you like. You can u…
-
WP: how to change images in post excerpt?
Well you could either wait until Wordpress 2.9 - when posts get thumbnail images - or use a custom field in your post as found in the article above. .
-
WordPress - Taxonomy -> Ob errors
Your syntax for register taxonomy is wrong. It should be : register_taxonomy( 'Year', 'page', array( 'hierarchical' => false, 'label' => 'Year', 'query_var' => 'c…
-
Printing From An Online Photo Company?
Ok I see what you are trying to do. If you are not happy with the Iframe solution you could find a printer with an API - such as Moo (http://www.moo.com/api/documentation.php). I don't know of any of the shelf solutions that use this but you …
-
Wordpress & Firebug Issue
That code is wrapped in a try..catch block so it shouldn't produce an error. Have you enabled "Break on all errors" or something similar in FireBug?
-
Printing From An Online Photo Company?
I think you can just upload your photos to Shutterfly and create an album. Visitors can then choose to print selected photos using Shutterfly. Is that what you are looking for? http://www.shutterfly.com/nav/signedOutShare.sfly
-
Noob Wordpress Questions
Hi I was looking for a way to explain this then stumbled upon this http://lorelle.wordpress.com/2005/09/22 ... ategories/ - it's a better explanation than I could give about creating multiple single.php for different categories. Dave
-
Wordpress Categories and Sub Categories Dropline Css
Actually one of my favourite features of Wordpress 2.9 is post images is being built into core (blog post coming soon...) But until there is support in the core each theme handles this differently, so it's difficult to give advice without seei…
-
Wordpress Categories and Sub Categories Dropline Css
I really like the site, so good luck getting this fixed! I've moved the topic to CSS Help & Troubleshooting as you might get a few more responses in there :)
-
Wordpress - Joomla - other ???
No, it's not possible to use a Joomla theme in Wordpress as they are not compatible. It may, however be possible to convert a Joomla theme into a Wordpress theme if you have some knowledge of HTML/CSS, Wordpress and Joomla.
-
ColdFusion CMS / Blog System
I'm sure there are options for ColdFusion CMS - even roll your own. However, ColdFusion CMS that don't use a backend database (MySQL, SQL Server, etc) is gonna be hard to find.
-
ColdFusion CMS / Blog System
...the fact the server can't support PHP is holding me back. Why not have your fraternity put aside a couple of beers worth of money a month and setup your own website on a proper host then? :mrgreen:
-
Wordpress Sub Category "Tree" Problem
is_category() is only true if the current page is the category's archive page, so it won't help you if you want to style a single post page. To determine if the current post has a certain category assigned you can use in_category(). E.g.…
-
Wordpress - Joomla - other ???
Congratulations on the success of your business! I'm sure it will continue. There is no end to the number of plugins for Wordpress, and I'm sure you will find some that do what you are looking for, or very similar. There is no inherent r…
-
How can I tell how long a PHP script can run + how to extend
I agree that the way in which you are going about this is not the most efficient approach. Firstly, 6000 transactions/hour = 100 transactions/min = 1.66 transactions/sec = a very slow script! It's possible that it's just necessarily slow…
-
WordPress The Loop check if has another entry
Indeed it does :-( Not to worry you can still check with this less concise code: if ( $wp_query->current_post + 1 < $wp_query->post_count ) : // This looks like voodoo but it works, trust me :) endif;
-
Paypal
There is a tutorial on NetTuts that would allow you to do this. http://net.tutsplus.com/tutorials/php/u ... -with-php/
-
Trying to Highlight Author comments
You have 4 funny quotes to fix - one on the line starting
-
Is starkers still the best...
Thanks for the replies and if anyone else has an opinion please feel free to add yours!
-
Trying to Highlight Author comments
You have curly quotes, or "smart quotes" - the kind generated by Microsoft Word - in your code. PHP won't recognise them so make sure you use a programmers text editor to edit PHP files, and only use " and ' for quotation m…
-
Show posts by specific user (wordpress)
You can create a page template - and assign it in the editor. Instructions can be found at http://codex.wordpress.org/Pages#Page_Templates