derekisbusy
Forum Replies Created
Viewing 6 replies - 1 through 6 (of 6 total)
-
Lol oops… your right sorry I posted to the wrong plugin support.
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Menu link in admin not showingAny ideas?
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Menu link in admin not showingAnd yes I’m signed in as the admin and in usermeta:
wp_capabilities = a:1:{s:13:”administrator”;s:1:”1″;}
wp_user_level = 10
Forum: Plugins
In reply to: [NextScripts: Social Networks Auto-Poster] Menu link in admin not showingYes the plugin is activated. No it’s not multisite. Now I get “You do not have sufficient permissions to access this page.” when trying to visit the above url.
Had the same problem… Here is a quick fix:
Go into plugins/types/wpcf.php and edit the lines starting at #166 from this…
// Add taxonomies $custom_taxonomies = array_keys( (array) get_option( 'wpcf-custom-taxonomies', array() ) ); $taxonomies = array_merge( array_combine( $custom_taxonomies, $custom_taxonomies ), get_taxonomies() );
To this…
// Add taxonomies $custom_taxonomies = array_keys( (array) get_option( 'wpcf-custom-taxonomies', array() ) ); if(count($custom_taxonomies)) $custom_taxonomies = array_combine( $custom_taxonomies, $custom_taxonomies ); $taxonomies = array_merge($custom_taxonomies , get_taxonomies() );
This should work as a temporary fix until the next update.
I think that this topic is resolved, as no change in Types is required.
I disagree… this plugin would’ve worked perfectly for my project if it weren’t for the prefix.
Viewing 6 replies - 1 through 6 (of 6 total)