scribu
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-UserOnline] Server Crashing Because of High Load@fagiano1973 It’s a feature in the Google Analytics dashboard. I don’t know if you can access it through a plugin.
Forum: Plugins
In reply to: [scbFramework] Using scbFramework in multiple pluginsI’ve followed the instructions on the wiki and put the framework folder scb in the root of the plugins directory and the file scb-load.php in the plugin root as well.
There are two methods of loading the framework described in the wiki. The problem is that you used both.
Require
scb/load.php, instead ofscb-load.php.Forum: Plugins
In reply to: [scbFramework] Shortcodes with html()This should work:
$content = do_shortcode( 'Click on this [permalink id="123"]link[/permalink] for more information.' ); echo html( 'p', $content );Forum: Plugins
In reply to: [Smarter Navigation] Not working with custom taxonomiesI really couldn’t tell you what’s going on, without looking at your code.
It works fine with custom taxonomies on my site.
If it turns out that the error is in the plugin, pull requests welcome at https://github.com/scribu/wp-smarter-navigation
Forum: Plugins
In reply to: [Posts 2 Posts] Search in admin connection boxWith the development version (1.6-alpha), you can use the
'p2p_candidate_title'filter to display extra meta information next to the title of the possible connections:https://github.com/scribu/wp-posts-to-posts/wiki/Admin-box-filters#p2p_candidate_title
Forum: Plugins
In reply to: [Front-end Editor] selected value in select custom fieldJust add
'default' => 'value2'.Forum: Plugins
In reply to: [Smart Archives Reloaded] DO NOT USE THIS PLUGINTo be fair, I only added that note a few minutes ago.
PS: Is there a rule somewhere that you have to explicitly say in the readme that you don’t provide support?
Forum: Plugins
In reply to: [Smarter Navigation] No update since Sept 2011. Is this dead?It’s actually pretty stable; works fine on my 3.5 install. I just forgot to update the version.
Forum: Plugins
In reply to: [Front-end Editor] WP 3.5 new media uploaderForum: Plugins
In reply to: [WP-UserOnline] Server Crashing Because of High LoadI would suggest replacing the plugin with the Realtime feature from Google Analytics.
Forum: Plugins
In reply to: [Posts 2 Posts] Admin box don't workForum: Plugins
In reply to: [Posts 2 Posts] count connections not workingIt means it only contains a page-worth of posts. To get all of them, you need to pass
'nopaging' => true.Forum: Plugins
In reply to: [WP Super Cache] Patch for wp-cli commandAnd here’s the same command bundled as a separate plugin:
Forum: Plugins
In reply to: [Posts 2 Posts] get_related only next and previous post'connected_orderby'only works for connection custom fields, so it doesn’t help.Forum: Plugins
In reply to: [Posts 2 Posts] Search in admin connection boxIt’s not an issue with P2P, but with WP_Query.
You’re telling it to find posts that contain
$searchboth in post_content AND in the ‘_personaldata_firstname’ custom field.You should take a look at how plugins that enhance WP’s search functionality handle this.