• Hello,

    I want to know how I can set fullwidth layout and mobile responsive for the page I sent.
    At the moment, I couldn’t set it. In the blog page, it goes well with the setting from Ocean WP.

    I am using the Business Directory plugin, they told me 90% coming from the main theme.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Hello,

    Add the below code to the oceanwp child theme’s functions.php file to make it full-width –

    function my_post_layout_class( $class ) {
    	if ( is_singular( 'wpbdp_listing' ) ) {
    		$class = 'full-width';
    	}
    	return $class;
    }
    add_filter( 'ocean_post_layout_class', 'my_post_layout_class', 20 );
Viewing 1 replies (of 1 total)

The topic ‘Layout and Mobile responsive’ is closed to new replies.