Quantcast
Channel: bbPress.org » All Posts
Viewing all articles
Browse latest Browse all 3638

Reply To: Topic View

$
0
0

Yes, its a tricky theme –

all this is in page.php is this

<?php
/**
* Single Page
*/

get_template_part(‘single’);
?>

So, I go look in single.php and this is what is in there..

<?php
/**
* Single post
*/
get_header();

$single_style = lorem_ipsum_books_media_store_storage_get(‘single_style’);
if (empty($single_style)) $single_style = lorem_ipsum_books_media_store_get_custom_option(‘single_style’);

while ( have_posts() ) { the_post();
lorem_ipsum_books_media_store_show_post_layout(
array(
‘layout’ => $single_style,
‘sidebar’ => !lorem_ipsum_books_media_store_param_is_off(lorem_ipsum_books_media_store_get_custom_option(‘show_sidebar_main’)),
‘content’ => lorem_ipsum_books_media_store_get_template_property($single_style, ‘need_content’),
‘terms_list’ => lorem_ipsum_books_media_store_get_template_property($single_style, ‘need_terms’)
)
);
}

get_footer();
?>

I tried so many things yesterday..am giving it a bit more today..but any help would be great. Even if I can just get rid of the sidebar (and no deleting the sidebar line does not work)


Viewing all articles
Browse latest Browse all 3638

Trending Articles