hey guys,
how can active advanced layout builder for pop maker plugin ?
Hey Amir,
I’m not really sure I understand the question, please checkout this thread: https://kriesi.at/support/topic/layout-builder-added-to-popup-maker/
Hope it helps.
Best regards,
Nikko
Thanks for reply Nikko,
i actually want to add ” Advanced Layout Builder ” to Popup Maker plugin For designing popups,
i try this https://kriesi.at/support/topic/layout-builder-added-to-popup-maker/
but i did not get result.
Hi coreil,
Can you try adding this php code in functions.php of your child theme? (the one in the link has some issues with quotes)
function add_builder_to_posttype($metabox)
{
foreach($metabox as &$meta)
{
if($meta['id'] == 'avia_builder' || $meta['id'] == 'layout')
{
$meta['page'][] = 'popup';
}
}
return $metabox;
}
Let us know if this helps.
Best regards,
Nikko