moizlife
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Video Player] Remove Filter WpautopPlease check the file /php/FWDEVP.php line 517.
public function disable_wp_auto_p
Forum: Plugins
In reply to: [Easy Video Player] Remove Filter WpautopI have tried it while deactivating the plugins. Your plugin is causing the problem. Please check the below link.
http://microstagi.wpengine.com/fleet-management/fleet-compliance-and-safety/
Above video the content from from the_content.
- This reply was modified 5 years, 4 months ago by moizlife.
Forum: Plugins
In reply to: [Booking Addon for WooCommerce] Availability RulesHi David,
I don’t think so. These are the options.
Block Duration: 30
Max Booking Per Slot: 100
Min Bookable: 1
Max Bookable: 1Availability Rules:
Minimum Advance Booking: 1
Maximum Advance Booking: 90
Slot Increment for time selector dropdown: 1
Buffer Period: 0New Rule:
Range Type: Week Days
Time Start: Friday
Bookable: Not Bookable
Priority: 10Please check using these options.
Forum: Plugins
In reply to: [CMB2] Not Working on Multi Network Sub FolderYep, I know that updating in the core file will cause a problem. But I couldn’t found any other solution.
My role is super admin.
Here is the code.
function microlise_workshop_details() {
$prefix = ‘microlise_workshop_’;$microlise_workshop = new_cmb2_box( array(
‘id’ => $prefix . ‘details’,
‘title’ => __( ‘Workshop Details’, ‘microlise’ ),
‘object_types’ => array( ‘workshop’ ),
‘priority’ => ‘high’,
) );$microlise_workshop->add_field( array(
‘name’ => esc_html__( ‘Workshop Time’, ‘microlise’ ),
‘id’ => $prefix . ‘time’,
‘type’ => ‘text_time’,
‘time_format’ => ‘H:i’,
‘attributes’ => array(
‘required’ => ‘required’,
),
) );}
add_action( ‘cmb2_admin_init’, ‘microlise_workshop_details’ );Forum: Plugins
In reply to: [CMB2] Not Working on Multi Network Sub FolderBut I already reset my user capabilities.
Forum: Plugins
In reply to: [CMB2] Not Working on Multi Network Sub FolderHi,
I got it.
$do_not_pass_go = (
! $this->can_save( $post_type )
// check user editing permissions
|| ( ‘page’ == $post_type && ! current_user_can( ‘edit_page’, $post_id ) )
|| ! current_user_can( ‘edit_post’, $post_id )
);if ( $do_not_pass_go ) {
// do not collect $200
return;
}Due t the above code its not updating the subfolder site. Currently I comment the return. I you have a feasible solution then please let me know.
Forum: Plugins
In reply to: [CMB2] Not Working on Multi Network Sub FolderWhich configuration you are talking abt ?
Multisite or CMB2 ?