darvdombach
Forum Replies Created
-
I have a solution. It involves changing replacing 5 lines of function em_events_admin in events-manager/em-template-tags.php with 2 if statements:
function em_events_admin($args = array()){ ... //template $args for different views //if statement below replaces 4 lines of code if( current_user_can('edit_others_events') ) { $args_views['pending'] = array('status'=>0, 'scope' => 'all'); $args_views['draft'] = array('status'=>null, 'scope' => 'all'); $args_views['past'] = array('status'=>'all', 'scope' => 'past'); $args_views['future'] = array('status'=>'1', 'scope' => 'future'); } else { $args_views['pending'] = array('status'=>0, 'owner' =>get_current_user_id(), 'scope' => 'all'); $args_views['draft'] = array('status'=>null, 'owner' =>get_current_user_id(), 'scope' => 'all'); $args_views['past'] = array('status'=>'all', 'owner' =>get_current_user_id(), 'scope' => 'past'); $args_views['future'] = array('status'=>'1', 'owner' =>get_current_user_id(), 'scope' => 'future'); } ... //deal with view or scope/status combinations //if statement below replaces one line of code if( current_user_can('edit_others_events') ) { $args = array('order' => $order, 'search' => $search); } else { $args = array('order' => $order, 'search' => $search, 'owner' => get_current_user_id()); } ... }
I haven’t tried on either Chrome or Safari.
All the user capabilities are checked. The problem exists for admins and authors, on Firefox and IE.
Forum: Plugins
In reply to: [Postie] Postie Not Posting even though it says it hasI found the problem. My default post type was set to “attachment” instead of “post.” I changed the default, and now it works perfectly.
I found the problem. I had been on the Visual tab rather than the Text tab in the WP editor. It turns out that WP had inserted some
<code>
tags inside my shortcode. They obviously broke it.My site is https://www.csiphila.org/. At the moment, my shortcode is [events_list scope=”month”]. I think that means I shouldn’t be seeing anything because the two events that are showing are both next month. However, I have my default Event List Limits set at “2”, which is giving me the display I want for this month.
Forum: Plugins
In reply to: [Front-end Editor] Front-end Editor is adding tags automaticallyI’m getting a similar problem, but for me, it is adding
tags on save, resulting in double line spacing throughout the entire edited area.