tosak
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Ajax result get’s 0 appendedI’m thinking it might be a boolean..
Here’s an example result:
<a href="http://localhost/mysite/2010/03/native/">Native</a>00 appended.. I am stumped
Forum: Fixing WordPress
In reply to: Can a child Subcategory have multiple parent CategoriesI think you want the POST to have several categories.. Which is possible.
When you write a post, just check off all the categories you want the post to appear in.
As far as I know, having multiple parents for a category is not possible.
Forum: Fixing WordPress
In reply to: Avoid “admin” as nick in anonym commentsYou could add a filter..
Add this to your theme’s functions.php
function checkCommenterName($data) { $name = trim(strtolower($data['comment_author'])); if($name == 'admin') { $data['comment_author'] = 'Not admin'; } return $data; } add_filter('preprocess_comment', 'checkCommenterName');Forum: Fixing WordPress
In reply to: echo php in <?php wp_list_pages( $args ); ?>Sorry, I just re-read your post and realize my answer is wrong..
You mean when $post -> ID is 33 you want to exclude some pages..?
Something like
$query = "depth=2&title_li=&child_of=".$post->ID; if($post -> ID == 33) { $query .= "&exclude=1,2,3"; } $children = wp_list_pages($query);I hope that was better?
Forum: Fixing WordPress
In reply to: echo php in <?php wp_list_pages( $args ); ?>You just want to exclude certain pages from being selected?
$children = wp_list_pages("depth=2" . $exclude . "&title_li=&child_of=".$post->post_parent."&echo=0");Forum: Fixing WordPress
In reply to: How can I make just the footer wider or fluid?Its not easy advising you what to do without seeing your markup.
You could try taking the footer out of the container.
instead of:<div id="container"> <div id="footer"></div> </div>use:
<div id="container"> </div> <div id="footer"></div>Forum: Fixing WordPress
In reply to: Carousel images wacky with Contact Form 7Some javascript is being used to write out an email in the green box (im guessing to obfuscate it or something), and this is producing errors.
Is the content in the green box being produced by CF7?
Forum: Fixing WordPress
In reply to: New page – can it look like this?? Please helpTo get the design you want you either have to find a similar theme and modify it, or create a theme yourself.
There are some good tips on working with themes here: http://codex.wordpress.org/Main_Page
Forum: Fixing WordPress
In reply to: How to upload a pluginYou can either go to “plugins” -> “add new” and search for your plugin or upload your plugin (under the “upload” option) in zip format.
Or you can get yourself an FTP client, and upload it manually to your website. FTP is the most common way of commecting to a server like this.
Check this guide: http://codex.wordpress.org/FTP_Clients
Forum: Fixing WordPress
In reply to: Carousel images wacky with Contact Form 7Without links to examples or error messages its hard to tell.. Most likely a javascript/css issue.
Forum: Fixing WordPress
In reply to: How can I make just the footer wider or fluid?width:100% means that the element will occupy 100% of the parent width. That can either be the document or another element.
So check what element your footer is inside of, and adjust the width of that. Or better yet, post a link to your site so we can see what you mean.