wordpress-plugin

Wordpress: custom_post_type image upload

Can anyone help me to add a field for image uploading.Here is my current code! add_action('init', 'pictures_portofolio'); function pictures_portofolio() { $args = array( 'label' => __('Bilder'), 'singular_label' => __('Bilder'), 'public' => true, 'show_ui' => true, 'capability_type' => 'p...

using wordpress category plugin - how do i list in order=desc?

I'm using this plugin http://watershedstudio.com/portfolio/software-development/wordpress-category-posts-plugin/ that uses this php works just fine but it lists the category posts alphabetically - how can i list them so that the newest ones are listed first? ...

Remove /category/ base wordpress

So this is my url: http://site.com/category/my-nice-category/my-nice-subcategory/ how can I remove category from the URL, i've tried alot of things and plugins but doesn't work. Best Regards, ...

Wordpress Chat Plugion with private Chat rooms and Wp SUer integration

Hi, I am looking for a non branded Wordpress Plugin, which allows Users to chat with each other. It must have the option for a private conversation and should display the User Names. Can anybody recommedn anything that fulfill my requirements? ...

call ajax inside wordpress posts/pages

Sorry for this but I searched the whole web for a solution to my probleme but in vain :( What I want to achieve is creating a normal Post and adding a form to it that once submitted, goes to a database and gets back a value. I created a plugin for that and integrated it in the admin menu then set a function that queries the db : myfun...

In Wordpress how do you add a link to the Dashboard menu box in the top left?

I found a way to add a "Dashboard Widget", but that is not what I want. All I want is a link in the first menu on the top left that says "Dashboard". ...

I want a simple CRM in wordpress, any suggestions as how to do? which plugins to use??

I want a simple CRM in wordpress, any suggestions as how to do? which plugins to use?? ...

Does a WordPress plugin exist that allows you to protect certain pages via a username/login?

I have 10 pages, 4 of which should be accessible by logged in users. Is there a plugin that exists to password protect these pages? Ideally, you can login once and then subsequently view all these protected pages. I have Googled a bit, but haven't been able to find something that lets you protect individual pages, only the entire WordP...

How customize wordpress for intranet purpose?

I want to use wordpress for intranet portal/blog purpose. So i want, there should be no link to internet from wordpress. No traffic should be to internet from my intranet. Like there are many link are in wordpress: help,resister,forget password etc. Please some plug-in or theme for this purpose. Thanks in Advanced Rahul Singh Rathau...

Custom Top level menu error in Wordpress Plugin

Below is the code snippet. But when I call it the top menu is repeated twice it also repeats itself in the submenu. if (!class_exists("ex")) { class ex { function ex() { //constructor } function Main() { echo "test"; } function ConfigureMenu() { add_menu_page("Ex", "ex", "manage_options", 's_ex', array('ex','Main...

Get list of all posts (not pages)

I'd like to create a drop down menu with all posts currently on my site using Wordpress 3.0. How can I fetch this data from the database using the wordpress API? ...

Check in Wordpress if user with ID or name X is online

Hi, is there any way to chekc if a user with a special id is online in Wordpress? ...

Wordpress Sociable Plugin - widget not showing on posts

I'm using the Sociable Wordpress Plugin to add Facebook Connect functionality to my site: http://NaplesCheapEats.com. The widgets are on the right side title w/ "sociable". 1) The widgets seems to work on the home page and other pages but does not show up on the sidebar on posts. When you are on the post, only the title of the widget...

Are there any Worpdress plugins to change the theme editor?

I've been browsing around a bit, but haven't been able to find any plugins for changing the default theme editor. Currently it's a text area with no syntax highlighting. I'd like something that at least gives syntax highlighting. There are all sorts of plugins for the post editor, but I've yet to find one for the theme editor. If all...

How to include all custom post types instead of only Posts

$this->add_meta_box( 'select_post_template', __( 'Post Template', 'custom-post-templates' ), 'select_post_template', 'post', 'side', 'default' ); To make a plugin work with custom post types, I've been told to change "post" to the name of the custom post type. Does anyone know if I can make it work with all custom post types (including...

Wordpress 3.0 Menu - faster and easier arranging.

I'm working on a site that I built using wordpress 3.0. The site will be taken over completely by the client once its been completed, so it uses the new menu tool to order/arrange the navigation. I'm now adding all the pages to the navigation currently I have over 180 pages on the site and I'm finding it very time consuming working wit...

Wordpress get option:selected value

Build a quick plugin that makes use of dropdown menus in some instances. Is there a wordpress correct way in recalling option:selected values? ...

Wordpress Plugin and Jquery

I am trying to create a gallery through a plugin I am making but am getting a javascript error and cant figure out why. Below is my code any help would be greatly appreciated. Here is where I have implemented it. http://findlegalanswers.com/?page_id=4 <?php /* Plugin Name: iPad and iPhone Swipe Gallery Version: 1.0 Plugin URI: http://ww...

Wordpress WP ecommerce plugin PHP

Becuase nobody could answer my previous question; http://stackoverflow.com/questions/3483171/wp-ecommerce-plugin-show-categories-and-products-in-tree-view I'm going to do a repost. I've been working on something like this where I'm displaying the categories but now I need to loop round each category within the loop to display products...

Stripping Wordpress Post Content, Leaving Permalink Intact

Is it possible to execute an SQL query that would strip all post content, except for the Permalink (and/or Post Title) from Wordpress posts marked as "Private" in your database? Basically, I have a ton of old Wordpress posts that I have marked as Private. I don't want to delete the posts entirely, I just want to slim down my database by...