bruceleeon
Forum Replies Created
-
Forum: Plugins
In reply to: [SpeakOut! Email Petitions] Settings page is blankIt’s definitely the theme… not sure what to do now. I can zip up my theme and send it somewhere if you would like to take a whack at it.
Forum: Plugins
In reply to: [SpeakOut! Email Petitions] Settings page is blankI have every plugin disabled (except petition), still a no go on admin. I am using the theme Sahifa, if I switch to twenty ten, it works. Going to look into functions.php and remove all.
Forum: Plugins
In reply to: [SpeakOut! Email Petitions] Settings page is blankWordpress is current, all plugins are current, theme is current.
Forum: Plugins
In reply to: [Edit Flow] Only Admin can PublishActually, I think I figured it out. I added:
function disable_authors_publish_cap() { // Get author role object $author = get_role( 'editor' ); // Remove the post publishing capability $author->remove_cap( 'publish_posts' ); } add_action( 'init', 'disable_authors_publish_cap' );
to my functions.php after the EXTEND functions for Edit flow. It now looks like this:
/** * Hide the "Publish" button until a post is ready to be published */ function efx_hide_publish_button_until() { if ( ! function_exists( 'EditFlow' ) ) return; if ( ! EditFlow()->custom_status->is_whitelisted_page() ) return; // Show the publish button if the post has one of these statuses $show_publish_button_for_status = array( 'ready-for-publish', // The statuses below are WordPress' public statuses 'future', 'publish', 'schedule', 'private', ); if ( ! in_array( get_post_status(), $show_publish_button_for_status ) ) { ?> <style> #publishing-action { display: none; } </style> <?php } } add_action( 'admin_head', 'efx_hide_publish_button_until' ); /** * Limit custom statuses based on user role * @param array $custom_statuses The existing custom status objects * @return array $custom_statuses Our possibly modified set of custom statuses */ function efx_limit_custom_statuses_by_role( $custom_statuses ) { $current_user = wp_get_current_user(); switch( $current_user->roles[0] ) { // Only allow a contributor to access specific statuses from the dropdown case 'author': $permitted_statuses = array( 'pending', 'pitch', 'draft', 'in-progress', ); // Remove the custom status if it's not whitelisted foreach( $custom_statuses as $key => $custom_status ) { if ( !in_array( $custom_status->slug, $permitted_statuses ) ) unset( $custom_statuses[$key] ); } break; } return $custom_statuses; } add_filter( 'ef_custom_status_list', 'efx_limit_custom_statuses_by_role' ); /** * Remove Publish Capabilities for Editors */ function disable_authors_publish_cap() { // Get author role object $author = get_role( 'editor' ); // Remove the post publishing capability $author->remove_cap( 'publish_posts' ); } add_action( 'init', 'disable_authors_publish_cap' );
However, is this the best way to accomplish what I am after or is there a better way?
Forum: Plugins
In reply to: [SB RSS feed plus] media:content image not resizedImages are not resized in my RSS feed either. Please assist.
Forum: Plugins
In reply to: [Table2Chart] Charts are brokenIt appears to be working now…
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] GraphingUgh… I got it working.
1. I rolled back to the original version of the plugin.
2. Copied the highcharts.js to a local folder on my website.
3. Modified table2chart.php (line 51) to reflect the new location of the highcharts.jsLine 51:
Original: wp_enqueue_script(“highcharts”, “http://code.highcharts.com/highcharts.js”,array(“jquery”),null,true);
New: wp_enqueue_script(“highcharts”, “http://domain.com/folder/highcharts.js”,array(“jquery”),null,true);Forum: Plugins
In reply to: [Table2Chart] Charts are brokenyou can bypass all optimizations by using the following URL
I also rolled back your plugin version… almost works.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] GraphingI figured everything with TablePress was good… given the update to Table2Chart and the start of the issues. I just hope he can sort things out.
Thanks for your efforts… more donations coming soon!
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] GraphingRolled back…
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] GraphingI would believe that to be true if the table2charts plugin hadn’t worked previously.
If I roll back the plugin, the charts work halfway. The first dataset is missing but the second is present.
I am going to roll back the table2charts plugin to the original version.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] GraphingAll caching is disabled
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] GraphingForum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] GraphingRocketscript? That may be from cloudflare optimizations. I will turn on development mode to turn off all optimizations.
Forum: Plugins
In reply to: [TablePress - Tables in WordPress made easy] Graphing