Geet Jacobs
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] [Plugin: WordPress SEO by Yoast] Remove columns in post listWould be much better to get a option to hide the columns. I develop sites for clients and would rather not explain to each of them that they need to go to “Screen options” to hide those. The most recent release of the plugin is great other than it putting the SEO columns before the page/post/type title and adding 4 total columns.
Forum: Plugins
In reply to: [Query Multiple Taxonomies] Query Multiple TaxonomiesI am looking to achieve the same thing with this plugin.
i found a function which will likely help, but not got it working yet, will post back if I make any break thru.
function wdd_in_category_count($catslugs = ”, $display = true) {
global $wpdb;$post_count = 0;
$slug_where = ”;
$catslugs_arr = split(‘,’, $catslugs);foreach ($catslugs_arr as $catslugkey => $catslug) {
if ( $catslugkey > 0 ) {
$slug_where .= ‘, ‘;
}$slug_where .= “‘” . trim($catslug) . “‘”;
}$slug_where = “cat_terms.slug IN (” . $slug_where . “)”;
$sql = “SELECT COUNT( DISTINCT cat_posts.ID ) AS post_count ” .
“FROM ” . $wpdb->term_taxonomy . ” AS cat_term_taxonomy INNER JOIN ” . $wpdb->terms . ” AS cat_terms ON ” .
“cat_term_taxonomy.term_id = cat_terms.term_id ” .
“INNER JOIN ” . $wpdb->term_relationships . ” AS cat_term_relationships ON ” .
“cat_term_taxonomy.term_taxonomy_id = cat_term_relationships.term_taxonomy_id ” .
“INNER JOIN ” . $wpdb->posts . ” AS cat_posts ON ” .
“cat_term_relationships.object_id = cat_posts.ID ” .
“WHERE cat_posts.post_status = ‘publish’ AND ” .
“cat_posts.post_type = ‘post’ AND ” .
“cat_term_taxonomy.taxonomy = ‘category’ AND ” .
$slug_where;$post_count = $wpdb->get_var($sql);
if ( $display ) {
echo $post_count;
}return $post_count;
}
xanderashwell, very cool was just looking to solve this!
I think the zip file on dropbox is corrupt, least from the 3 unzip programs I tried. Might try to write my own files but seemed to perfect that you just adding this 1 hour ago!
Thank you
Forum: Plugins
In reply to: [Scissors Continued] [Plugin: Scissors Continued] edCanvas is not definedlikely the plugin developer needs to add a javascript hook kind of like the below.
Replacing ‘group-desc’ with which ever text area ID it is.
function add_edCanvas() {
echo ‘<script type=”text/javascript”>
jQuery(document).ready(function(){
edCanvas = document.getElementById(“group-desc”); });
</script>
‘;
}
add_action(‘wp_head’, ‘add_edCanvas’);I would also like to be able to add shortcode for sidebar, header positions.
Ok, for anyone else going form wordpress MU pre 3.0 to a wordpress 3.0 upgrade you can add three records to the wp_sitemeta table and it should work.
When I upgraded to EM 4.0 it added the records to the wp_1_options table instead of the default sitemeta table.
So go to the database and add these records below as the meta_key and the meta_value of 1.
dbem_ms_global_events
dbem_ms_global_events_links
dbem_ms_global_tableCheers!
I think it might relate to the fact that I was on a WordPress MU before 3.0 upgrade, so my table structure is different? My sitemeta table only has information for the default main site, not any of the others.
all the dbem_ information is in each of the three option tables wp_1, 4 and 7.
Will keep digging and see if I can track down the issue.
The weirdest thing is even when I hard code it like Iused to before EM4…the plugin doesnt use the same event tables for all sites.
if( get_site_option(‘dbem_ms_global_table’) ){
$prefix = “wp_1_”;
}else{
$prefix = “wp_1_”;
}Thank you for the reply.
I always use permalinks, but sadly the joomla coder didnt active them on his build, so the search engines have indexed the whole site with that ugly url above.
I was planning to use redirects to route the bad URL and regex it to a wordpress url, which let me not loose any rankings and wordpress would rewrite site.com/?p=68 to site.com/page-name.
This will only work if the joomla article ID and wordpress post ID are the same though.
Unless you know how to handle it better?
Thanks again!
Hello Marcus,
Thanks for the reply. I uninstalled, reinstalled. Still after clicking Save all Changes the global table goes back to “no”. Even if I edit the options table in the database and set it to 1 instead of zero the checkbox still shows no.
Could it be some php setting? I can try to turn off all plugins also, but all other settings in the plugin can be turned on and off.
P.S. I use your event manager on 15 different sites, one of my favorite plugins, thank you for all the amazing work.
Would this issue have anything todo with not having a default wp_options table, only a wp_1_wp_options, wp_2_wp_options and so on?
Forum: Plugins
In reply to: [SurveyMe] [Plugin: SurveyMe] Other FieldI came here looking on how to add “other” with a text field, semi important option, hopefully you can find the right way to do it and still keep the plugin as clean and slick as it is.
Thank you.
Forum: Plugins
In reply to: [Link Library] [Plugin: Link Library] Empty LinksSame issue for me, Version 4.9.3 WordPress 3.1
Forum: Plugins
In reply to: [Plugin: CollabPress] Front End?Great news, thank you Brad.
Really solid plugin.
Forum: Plugins
In reply to: [Plugin: CollabPress] Front End?Did shortcode not make it into v1.0? Loving how CollabPress works, wanting to add it to a buddypress install.
I did see you mentioned you were considering fully integrating it into buddypress.
Would that mean group integration? That would be very slick.Forum: Plugins
In reply to: [Meteor Slides] [Plugin: Meteor Slides] Make slideshow have a random order.Oops!
Not sure how I missed that meta option for random..
Reset your plugin code to the original and using meta as I should have before!
Thank you.