Tomas
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Automatic redirection to child site from mainbwinn, you sure there’s no extra chars or spaces in your paste?
As stated before, this worked out of the box for us.There are more plugins/themes causing varnish issues aswell.
i.e wordpress.com custom css and themes with background, style, header options etc. Changes are not shown instantly.
The wp-varnish plugin only purges on new posts or comments or when the ttl is reached I believebump 😉
still haven’t found a solution/info/workaroundForum: Networking WordPress
In reply to: Automatic redirection to child site from mainThanks David, your mu-plugin fixed our issues after upgrading to 3.2.1
Forum: Networking WordPress
In reply to: Cannot login globally after upgrade to 3.2.1Finally found this
http://wordpress.org/support/topic/automatic-redirection-to-child-site-from-main?replies=15
Thanks David Sader, your mu-plugin fixed it!
Forum: Plugins
In reply to: [WordPress MU Sitewide Tags Pages] Blog titles with linksThanks for your input
Forum: Plugins
In reply to: [Analytics360] [Plugin: Analytics360] no graphs are shownI just have the same issue.
Just installed wordpress-varnish plugin recently but to disable it makes no difference. Strange…Forum: Plugins
In reply to: [WordPress MU Sitewide Tags Pages] Blog titles with linksOpps, looks like it’s actually working now (had a cache issue)
Thank you both for your help 🙂
Forum: Plugins
In reply to: [WordPress MU Sitewide Tags Pages] Blog titles with linksThanks Ron but sorry…no dice.
Still same global blog title output on each post.Maybe I’m doing the loop wrong?
In the theme file loop I have it like this (twentyten standard):[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Plugins
In reply to: [WordPress MU Sitewide Tags Pages] Blog titles with links@miklb – I get the blogtitle value in the post_meta now but it’s always the global blog title and not the corresponding blog title.
Maybe I put your code in the wrong place?
From the plugin line 367:switch_to_blog( $tags_blog_id ); $global_meta['blogtitle'] = get_bloginfo('title'); if( is_array( $cats ) && !empty( $cats ) ) { foreach( $cats as $t => $d ) { /* Here is where we insert the category */ wp_insert_category( array('cat_name' => $d['name'], 'category_description' => $d['name'], 'category_nicename' => $d['slug'], 'category_parent' => '') ); /* Now get the category ID to be used for the post */ $category_id[] = $wpdb->get_var( "SELECT term_id FROM " . $wpdb->get_blog_prefix( $tags_blog_id ) . "terms WHERE slug = '" . $d['slug'] . "'" ); } } $global_post = $wpdb->get_row( "SELECT * FROM {$wpdb->posts} WHERE guid = '{$post->guid}'" ); if( $post->post_status != 'publish' && is_object( $global_post ) ) { wp_delete_post( $global_post->ID ); } else { if( $global_post->ID != '' ) { $post->ID = $global_post->ID; // editing an old postForum: Plugins
In reply to: [WordPress MU Sitewide Tags Pages] Blog titles with linkshmm, I’m not getting the expected output?!
Instead of the blog title from the corresponding blog I get the global blog title on each post.
miklb, would you consider sharing your modified plugin?tia
TomasForum: Plugins
In reply to: [WordPress MU Sitewide Tags Pages] Blog titles with linksmiklb, this is fabulous info.
Will have a try out later todayMany many thanks!
Forum: Plugins
In reply to: [WordPress MU Sitewide Tags Pages] Blog titles with linksThanks Ron, I came to that conclusion aswell.
The post_meta table on the global blog only contains the blogid and permalink for each post so I’d probably need to customize the plugin which is just a little above my php knowledge 😉
Forum: Plugins
In reply to: Wordbooker Facebook posting issuesAh, ok thanks for the info.
I had a look at wordbooker but think it’s to many parameters for our multi users to handle. We just need something like wordbook to let them post excerpts to their FB accounts (if any) when they write new posts.Thanks!
Just installed v0.16.3 and get the same error