wordpress

WordPress Contact Form 7: Send button does not submit, redirects to same page (jquery / anchor navigation)

I am developing a WordPress page that uses a jquery.slideto.js navigation system and html anchors. I am using the Contact Form 7 plugin When pressing the "send" button, the form does not submit, and the included jQuery validation script does not fire. Instead, it just reloads the current page without submitting. I have included the ...

Show Attached Image to Post on Wordpress

Hello. How i can show attached images of my posts on Wordpress? ...

Check if_parent and if_child in Wordpress

I need to create a function for WP that will check if the current category is both child of X category and parent to Z category. Ideas? ...

Wrapping Current Category Text with Span in Wordpress 2.8.6

Hello. I'm showing categories with this codes. Normally there is no problem. <?php $categories = wp_list_categories('current_category=1&hide_empty=0&title_li=&echo=0&link_before=<span>&link_after=</span>'); $categories = preg_replace('/title=\"(.*?)\"/','',$categories); echo $categories; ?> But i want to wrap current category's text ...

Magpie removes angle brackets from RSS feed

I've found two WP installs on different servers, same WP version. Magpie returns different RSS content from same feed, one of the blogs returns the contents with angle brackets removed. The XML is retrieved exactly the same for both blogs, the difference comes after calling Magpie($rss_content). Here's the XML PHP config from both serv...

Exclude templates in wordpress page

If I put a file up in my theme folder named foo.php that only contains <h1>Foo</h2>, WordPress will automatically pull in the home.php file. Is there any function to prevent that and have it simply render the file foo.php. I'll still want to be able to use the wordpress functions from that page. Thanks! ...

Is There are a Way to Write just Next/Prev Post Link on Wordpress?

Hello. I want to customize next/previous posts links pagination to this structure: <!--PAGINATION--> <a href="#prev_post_link#" id="pagePrev" class="button"><span>&laquo; Önceki</span></a> <a href="#next_post_link#" id="pageNext" class="button"><span>Sonraki &raquo;</span></a> <!--/PAGINATION--> So i want to echo just next/previous p...

Redirecting a /?p=xxx wordpress URL

I need to redirect a single Wordpress URL that is formatted like this: www.bluewidgets.com/?p=123 to a clean URL on another domain. How can I do this via .htaccess? All of the tutorials I've seen say that I need to specify another part of the url, like index.php, before the query string, but my URL doesn't have one - it's just the domain...

Wordpress support

I like to get a customer website to full cms website / blog / magazine / ecommerce I will go with wordpress (joomla and drupal on the runner up list) I will for sure need support for customizing template, code, php and plugins I always found AMAZING support from stackoverflow, i like to have the same thing for wp... do you know where ...

JQuery Navigation Menu Animation with Wordpress Page List

So I am using Jquery to display a pop up menu on my current site. The html is a wordpress wp_list_pages output for all you wordpress types out there. For all you non-wordpress types, this means that wordpress will output nested ul & li elements in accordance with page architecture on wordpress. Bottom line, I want the jquery code to be w...

Wordpress Category Problem

I'm using this codes for category.php template on my new work (photos page). But there are problem on category bar. When i click on any category link then all post is showing under first category item. I can't categorize my posts. How i can solve this problem? ...

Add URLs to list of urls to send pingbacks to in Wordpress

Is it ok to ask question about Wordpress development here? Any way i have a plugin that inject some HTML into a post to display some information from our site alternativeto.net. The plugin is located here: http://wordpress.org/extend/plugins/alternativeto/ The problem is that our content is added to the post via javascript when the pos...

show/hide ajax? javascript toggle

Hi I'm looking for a wordpress plugin that hides to start with the when I click say an arrow image an ajax feature pops out with say a contact form inside and also another show hide feature at the bottom of the page to show and hide multiple divs. Is there a plugin that can do all this? My pages have to be editable for my client so i...

How can I determine a first-time hit in Wordpress?

For analytics purposes, I need to determine if a user is a first time visitor, and output some Javascript. Preferably I'd be able to do this from the theme editor, not having to edit the code, but if that is the best way to achieve this, that's fine. I was thinking something with the session, but it seems like I would have to hack som...

Test for posts matching specific category and not belonging to exclusion category

I have a function below whose purpose is to create a listing of posts where the category assigned to each post is "top-menu". However, I first want to exclude any posts where the category is "hidden"... How can I edit this code to do that? global $post; $cat = get_cat_ID('top-menu'); if ($cat > 1) $myposts = get_posts('numberposts=5...

How do you remove inline styles in Wordpress?

I am currently trying to remove inline styles that come from the wysiwyg in Wordpress. My problem comes from editors styling their blog posts and its looking terrible, the main culprit being font sizes. I was wondering if anyone knew of a plugin for Wordpress? OR if anyone knows if it is possible to turn off CSS inline styles in tinyMCE...

Embedding Sitemap Meta Tag on Free Wordpress Blog That I have a Domain For

I have a free wordpress blogging account and I have a domain from GoDaddy which is forwarding to my wordpress blog. I want to use Google's sitemap which requires me to add the meta tag in my wordpress page. In Google Webmaster tools or Yahoo's, if I use mysite.wordpress.com and get the meta tag in the blog, it works, but if I use my do...

I'm having a scroll bar error problem with IE7 for my Wordpress Blog

http://rivermarksantaclarahomes.com santaclaraliving.com santaclaravalleyreo.com All these websites have the same issue and use different themes, the vertical right hand scroll bar does not move when you click it with the mouse. It will move if you used the scroller in a mouse fit with a scroller. Not sure whats causing this ...

Lighttp and wordpress URL rewrite

I'm having a problem while rewriting the wp-login URL using Lighttpd I have the following rule "^/wp-login.php?([^\?]+)(\?(.*))?" => "/wp-login.php?$1" but it doesn't seem to work. when I load the signup page (http://domain.com/wp-login.php?action=register )it keeps ignoring the action=register querystring what's the correct rule ...

Getting Theme information from the style.css file in Wordpress

With a Wordpress theme, it is necessary to add information to the top of the style.css file: e.g; for the default theme there is this: /* Theme Name: WordPress Default Theme URI: http://wordpress.org/ Description: The default WordPress theme based on the famous <a href="http://binarybonsai.com/kubrick/"&gt;Kubrick&lt;/a&gt;. Version: 1...