Will the Social Media Feather Plugin work on WordPress Version 3.0.1 ?
Thanks for your help!!
https://www.ads-software.com/plugins/social-media-feather/
]]>The code of this plugin is nearly a one-to-one copy! Only difference? This developer only added some promo-links and a donate button… well done. Not enough? Original plugin was created several years ago, this plugin about 3 month ago.
So guys better use the original instead of this cr*p.
https://www.ads-software.com/extend/plugins/wp-301/
]]>Thanks so much for taking the time to make such a great, easy to use plugin! I appreciate your time.
https://www.ads-software.com/extend/plugins/wp-301/
]]>blogs.mydomain.com/blog
blogs.mydomain.com/blog2
blogs.mydomain.com/blog3
…
etc
and to have
blogs.mydomain.com
With all the posts made in each blog. Is it possible to do that with a plugin? whats the easiest way?
Thank you very much.
]]>I can’t find version 1.7, any idea when it will be availbe?
Thanks
Ivan Gillis
My problem is this: I’m running a multisite WordPress installation with secondary blogs located on sub domains.
Everything work great, I mean everything. BUT the RSS feeds of the secondary blogs are showing only the excerpt.
All blogs are configured to show the entire post in the feed but they keep publishing only the excerpt and without images.
Only the main blog is working correctly showing the post and images as it should do. The others don’t.
Any idea?
Please help me, I’m going crazy :-S
]]>i have a jvascript function:
function show_players_page(id)
{
jQuery()
{
var data = {
action: 'bbnuke_players_page',
bbnuke_player_id: id
};
// since 2.8 ajaxurl is always defined in the admin header and points to admin-ajax.php
jQuery.post( ajaxurl, data,
function( response )
{
alert(response);
}
);
};
}
and my php function which is called via ajax:
function bbnuke_show_players_page()
{
global $wpdb;
$player_id = $_POST['bbnuke_player_id'];
$user_id = get_current_user_id();
if (!$user_id)
$user_id = 1;
// create the page content
$bbnuke_post_content = bbnuke_widget_playerstats( $player_id, false );
$bbnuke_post = array(
'menu_order' => 0,
'comment_status' => 'closed',
'ping_status' => 'closed',
'post_author' => $user_id,
'post_content' => $bbnuke_post_content,
'post_name' => 'baseballnuke-players-page',
'post_status' => 'publish',
'post_title' => 'baseballNuke - Players Page' . $player_id,
'post_type' => 'page'
);
$post_id = wp_insert_post( $bbnuke_post );
sleep(3);
$url = get_bloginfo('url') . '/?p=' . $post_id;
bbnuke_update_option( 'bbnuke_ajax_post_url' , $url );
exit;
}
in the main php file i have defined:
action( 'wp_ajax_bbnuke_players_page', 'bbnuke_show_players_page');
add_action( 'wp_ajax_nopriv_bbnuke_players_page', 'bbnuke_show_players_page');
I would like to receive from the ajax call the post id i have created and/or the post_content to show in a new window to the user.
how i can send data back? i only get a “success: true” message back.
]]>The sub site excists but it doesn’t look great at all, and I can’t log in. Check it out here: geriche.dk/fotobloggen
I followed a You Tube tutorial when I Created the WP network.
I have done something wrong but what???
Hope someone can help me!
Cheers from Jon
]]>I’m having trouble using WP 3.01 in combination with a mySQL 5.0 database. Specifically, I can’t edit pages (posts seem to work) – I am getting an error 500 and the page fails to load in the editor.
Display of the page on the web site works ok. Also, I can’t seem to upload new images (http error), both with the browser and flash uploader. WP auto-update fails as well.
This is on a x86 Linux server running mySQL 5.0 (I only have the options to use mySQL 5.0 or 4.0 and WP 3 doesn’t work with 4.0).
Interestingly, downgrading to WP 2.91 solved the problem but I’d rather like to use the latest if possible.
Any ideas, comments, suggestions would be appreciated.
BTW there’s a bug in mySQL 5 that prevents backups to be restored. You need to add USE <databasename>
; at the beginning of your .sql file in order to correctly restore it.
Thanks
Stephan