Hi, obviously this is a duplicate. But I can't find the threads about this anymore.
1) I want to remove the welcome msg, and edit the css to raise the 3 columns up...
2) I'm using the template with pages only (no posts, no blog, no categories.. just pages). I need to figure out how to remove the default "Categories" and "Archive" widgets in the page sidebar (when the page is in default mode, with a sidebar)...
They keep showing up, and are not removable via the widget admin tool...
here's a link:
http://www.devocean.ma/?page_id=5
Welcome msg, and sidebar issues
6 posts from 4 voices-
Posted 2 years ago #
-
Hey,
1.) I'm not sure what you want to remove when you say "remove the welcome msg" - please post a screenshot highlighting exactly which section you want to modify.
2.) Open up sidebar.php in the theme directory; find and remove this code:
//default dummy sidebar if ($default_sidebar && $k_option['includes']['dummy_sidebars'] == 1) { //left dummy sidebar if($sidebar == 'left'){ $exclude = ''; if($k_option['mainpage']['blog_widget_exclude'] == 1) { $exclude = '&exclude='.$k_option['blog']['blog_cat_final']; } ?> <div class='box box_small'> <h3>Categories</h3> <ul> <?php wp_list_cats('sort_column=name&optioncount=0&hierarchical=0'.$exclude); ?> </ul> </div> <div class='box box_small'> <h3>Archive</h3> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> </div> <?php //right dummy sidebar }else { ?> <div class='box box_small'> <h3>Pages</h3> <ul> <?php wp_list_pages('title_li=' ); ?> </ul> </div> <div class='box box_small'> <h3>Bloggroll</h3> <ul> <?php wp_list_bookmarks('title_li=&categorize=0'); ?> </ul> </div> <?php } }They are the "dummy sidebar" widgets to populate the area with some content whilst getting setup.
James
Posted 2 years ago # -
The Welcome MSG is the is "This is «display», a unique Themeforest template for showcasing your work and perfect for any business in need of a stunning website..." that's on the demo site. How do you remove this and move up the bottom 3 columns on Display?
Posted 2 years ago # -
Hey,
go to Display Options > Mainpage Options. There you can change the message text.Posted 2 years ago # -
I want to delete that section completely and move the 3 columns ads at the bottom up just under the 3D slider. How do I do that? I don't where the code is
Posted 2 years ago # -
Open up index.php and delete following code:
<div id="infotext"> <h2><?php echo $k_option['mainpage']['welcome']; ?></h2> </div><!--end infotext-->Posted 2 years ago #
Reply
You must log in to post.














