| 1 |
<?php |
| 2 |
|
| 3 |
/* |
| 4 |
* this array provides name, plugin dir ,is_front_end, css of a conflicted plugin |
| 5 |
*/ |
| 6 |
$compatibility_items = array ( |
| 7 |
|
| 8 |
'MiniMax-Page-Layout-Builder' => array( |
| 9 |
'plugin_dir' => 'page-layout-builder/page-layout-builder.php' , |
| 10 |
'is_front_end' => false , |
| 11 |
'css' => '.fca_eoi_settings_layout_2 p { |
| 12 |
overflow: inherit; |
| 13 |
visibility: inherit; |
| 14 |
width: inherit; |
| 15 |
height: inherit; |
| 16 |
}' |
| 17 |
) |
| 18 |
|
| 19 |
|
| 20 |
); |
| 21 |
|