wordpress-plugin

Facebook updates posted to wordpress blog.

I am trying to set up a page on a wordpress site that displays the feed for a facebook fan page. I can't seem to locate the RSS link and it seems tons of people are having the same problem. Anyone know of a way to approach this problem? ...

Change Tweetmeme button colour under wordpress

I've had a poke around in the TweetMeme plugin code and IANA JS Guru, but I cant find any sensible way to make specific styling changes; you can add div-specific CSS characteristics, but I'm talking about changing the resting colour and the hover colour of the button. I've googled around and noone seems to have asked it on here so I tho...

What's the best WordPress plugin for embedding/executing PHP code?

Hi there. I have an existing webapp created in PHP and would like to embed some of the PHP code into some WordPress pages. What's the best WordPress plugin for that? ...

What is the best minifying plugin or tool for wordpress based sites

My Website is built on Wordpress, now I want a plugin or tool to minify all my CSS and JS scripts to one. What is the best known plugin for this ? ...

Modify flutter / magicfields duplicate group code to show all groups except the first

Hello! I am making a table of DJ mixes in WordPress and using the duplicate group / custom field functionality of magicfields (a fork of the flutter plugin) to 'CMS-i-size' the process of adding a new mix to the table. The order of the mixes matters: I need to put the first mix in the section, the rest in the section. Right now I am...

WordPress Write Cache Problem with Multiple Sessions

I'm working on a content dripper custom plugin in WordPress that my client asked me to build. He says he wants it to catch a page view event, and if it's the right time of day (24 hours since last post), to pull from a resource file and output another post. He needed it to also raise a flag and prevent other sessions from firing that sam...

How Do I Programmatically Check if a WordPress Plugin Is Already Activated?

I know I can use activate_plugin() from inside a given, active plugin in WordPress, to activate another plugin. But what I want to know is how do I programmatically check if that plugin is already active? For instance, this snippet of code can be temporarily added to an existing plugin's initial file to activate a partner plugin: add_a...

is there any wordpress plugin to send email notification to commentators?

Is there a plugin that will send an email to someone who comments on my blog when someone replies to their comment? Thanks in advance for any info ...

Adding posts with thumbnail programatically in WordPress

I know I can use the wp_insert_post() function in WordPress to add posts programatically, but I want to add posts with a thumbnail, and for that matter, also resize/crop the post photo to the correct WordPress sizes. Is all this possible programatically, or do I need to do some work manually (i.e. the resizing/cropping)? ...

Wordpress add_action of wp_head for javascript / css files in plugin

For some reason, the following is not loading my js and css into wordpress. This code is in an activated plugin, which is otherwise executing. Also, I checked and wp_head does exist in the theme. add_action ( 'wp_head', 'lbIncludes'); function lbIncludes() { wp_enqueue_script('jquery'); wp_register_script('myScript', WP_P...

How Do I Detect A WordPress Admin Panel in my Plugin?

I've got two events in my plugin. One is run for the front-end. The other is run for the admin panel. Both call the same function in one particular situation, and this echoes stuff to the screen. How do I make it such that the function is smart, calls something in WordPress, and detects whether it's being loaded in the front-end versus t...

wp_get_archives(cat=id) <-- Any way to specifiy cat id in archives?

Does anyone know how to specify an INCLUDE ONLY category using wp_get_archives? I would like to specify a category but then list results by month. I've tried kwebble's plugin to no avail. I've also found the following on WP forums, but it appears to only exclude categories. Perhaps it can be modified to do include? Even given that, I'm ...

Slidepress plugin not showing up thumbnails

I installed slidepress plugin for wordpress and it is not generating any thumbnails. Using httpfox i see the slidepress generated the thumbs folder but not the images so it means permissions are ok. The funny thing is that i zip up the whole wordpress installation and put it on another box and it works just fine. This is my environment...

Cannot Call WordPress Plugin Files Under wp-content

I have a client who has many blog customers. Each of these WordPress blogs calls a plugin that provides a product link. The way that link is composed looks like this: {website}/wp-content/plugins/prodx/product?id=432320 This works fine on all blogs except two. On those two, when you try to call the URL, you get a 404. So, I disabled a...

WP plugin: How to split to multiple pages, automatically ?

Hello there. I'm writing a WP plugin, that shows DB records in a table. Because the list is too long, I'd like to split it to multiple pages, based on the same display. I can do that manually with handling URL parameters, and using PHP, but I wanted to know if there's a structed method to to that. http://site.com/list --> records 1-20 h...

How do I check if a user has the 'manage_options' capability in WordPress?

I'm trying to figure out if the current user can manage options. I'm using the following code: if (current_user_can('manage_options')) { add_filter('comments_array', 'myFunctionCall'); } But it produces this error (in WordPress 2.9.2, latest): Fatal error: Call to undefined function wp_get_current_user() in /Users/*/Sites/...

How to make WordPress "Add/Edit Post" form more Tumblr like?

Hi, WordPress requires you give each blog post at least two fields: a title and text body content. I'm wondering how to modify WordPress admin so I can sometimes enter a single field for a blog post, in particular a URL, without WordPress requiring a title (related but not the point of this question: a custom theme would then know how ...

Wordpress Widget auto activate

Hello! Im new att widgets, but i have manage to write my own widget and get it to display correctly in my theme. The only problem i have now is that i want the widget to "auto activate" in the sidebar. So when the theme is installed on any wordpress installation the widget should be active so the user dosent need to drag it to the sideb...

Is it possible to add .NET code (sections) to a WordPress site?

Our shop is primarily .NET but because of the lack of any really good popular .NET CMS products, we have chosen to use WordPress (and Drupal at times) for our public facing sites. I realize this is highly subjective, but it is the conclusion we came to for our purposes. One could certainly make a case for DotNetNuke and others, but tha...

wordpress plugin for certain tweets

Hello I would need to get tweets from my twitter account on my wordpress site. Okey, the basics i could do, but there is one special need. I would need to get only certain tweets. Tweets that have some #hashstag for example only tweets with hashtag #myss would show up on my wordpress site. Is there ready made plugin for this? I have be...