fixedentropy
Forum Replies Created
-
Forum: Requests and Feedback
In reply to: I love all of you.hahaha
Forum: Fixing WordPress
In reply to: outside links in the main menuWonderful! Thanks so much, totally made my night!
Forum: Themes and Templates
In reply to: [responsive theme]i will visit the forum, thanks, love the theme btw ??
Forum: Themes and Templates
In reply to: [Theme Responsive] Remove Menu Baropen up the header.php document
find this exactly and delete. it will remove the main menu at the top of the page on every page. save a copy of that just incase you change your mind, of the header or of the code ??
start here ———- >
<?php wp_nav_menu(array(
‘container’ => ”,
‘theme_location’ => ‘header-menu’)
);
?><?php if (has_nav_menu(‘sub-header-menu’, ‘responsive’)) { ?>
<?php wp_nav_menu(array(
‘container’ => ”,
‘menu_class’ => ‘sub-header-menu’,
‘theme_location’ => ‘sub-header-menu’)
);
?>
<?php } ?></div><!– end of #header –>
end here ————->
Forum: Themes and Templates
In reply to: Recent Posts Including Pagesso this is the code, that is in my side bar… that has anything to do with recent posts, other than that i dont know what i am looking for to change it
if ( $recentposts = $wpdb->get_results(“SELECT ID, post_title FROM $wpdb->posts WHERE post_status = ‘publish’ AND post_date_gmt < ‘$today’ ORDER BY post_date DESC LIMIT 10”)):
Forum: Fixing WordPress
In reply to: Duplicate posts by categorySame here. I have no plugins currently installed. I have a fresh upload of Wp and I am running in to this issue.
any help would be fantastic
Forum: Themes and Templates
In reply to: Recent Posts Including Pageswell thats just it, i read the article and i do understand why it is doing this. tho maybe i am missing it but i dont know where to start in fixing this i am very new to wordpress having being used to cutenews.
and there is no “code/plugin” that is being used. its just WP on its own that is doing this.
as in where do i start?
Forum: Themes and Templates
In reply to: Recent Posts Including Pagesok so definately a beginner, and i cant seem to get the pages out of my recent posts
any help would be appriciated ??