Hi!
Hope you can help me with this question from an earlier thead
How do I remove the sidebar in all single portfolios? I have tried it with the php code in this thread, but no luck yet…
Can you see what needs to be done?
Hope you can help me :-)
Maaike
Hey lindemarie,
Please add the following code into your functions.php
add_filter('avia_layout_filter', 'avia_change_post_layout', 10, 2);
function avia_change_post_layout($layout, $post_id) {
if( is_singular('portfolio') ) {
$layout['current'] = $layout['fullsize'];
$layout['current']['main'] = 'fullsize';
}
return $layout;
}
Best regards,
Basilis
Perfect!
Thank you Basilis!
Hi lindemarie,
Glad we could help :)
If you need further assistance please let us know.
Best regards,
Victoria