Sure, use the footer button “Privacy” over at https://www.protel.net
Then hit the small “printer” icon to see what I mean. Thx very much!
-
This reply was modified 6 years, 4 months ago by daddydodo.
Hi there,
You’ll need to modify your theme’s (or better still, your child theme’s) functions.php.
Here’s the code I have successfully used.
Please feel free to correct it/report back to the community if you have a neater workaround, as my skillz are a bit rusty!
/** Add polylang to Divi Library Window */
add_filter('pll_get_post_types', 'my_pll_get_post_types');
function my_pll_get_post_types($types) {
return array_merge($types, array('et_pb_layout' => 'et_pb_layout'));
}