comptech520
Forum Replies Created
-
To be a little more clear, I want to use Apache’s error 404 error page, not WordPresses.
Any ideas on that?
Forum: Fixing WordPress
In reply to: How can I speed up the loading time for my word press site?I’ve tried a lot of stuff in the WordPress Optimization link and still nothing. Still a slow load.
Forum: Fixing WordPress
In reply to: How can I speed up the loading time for my word press site?Godaddy. I’m on a dedicated server.
Forum: Fixing WordPress
In reply to: Navigation questionI mean when someone clicks on the page link “services” or “companies” how can I make those link go to a home?
Services and compaines are drop downs. I need the drop downs, but if someone were to click on services or companies (pages)
or better yet can I redirect a page?
Forum: Fixing WordPress
In reply to: 2 columns questionIs that a plugin or HTML?
Forum: Fixing WordPress
In reply to: Static Home Page but remove link from nav areaThat did the trick, thanks!
Forum: Fixing WordPress
In reply to: Static Home Page but remove link from nav areaActually, I believe that 30 is the post for the page home.
This is what I have coded, and does not work. Any ideas off this?
<!– menus START –>
<ul id=”menus”>
<li class=”<?php echo($home_menu); ?>”>” href=”<?php echo get_settings(‘home’); ?>/”><?php _e(‘Home’, ‘inove’); ?>
<?php
if($options[‘menu_type’] == ‘categories’) {
wp_list_categories(‘title_li=0&orderby=name&show_count=0’, ‘exclude=30’);
} else {
wp_list_pages(‘title_li=0&sort_column=menu_order’, ‘exclude=30’);
}
?>Forum: Fixing WordPress
In reply to: Static Home Page but remove link from nav areaAnyone have any ideas on this?
Forum: Fixing WordPress
In reply to: Static Home Page but remove link from nav areaThis is what I have for code in that area.
The home that is in this code is what I want to stay. I want to remove home from from my pages not to show.
<ul id=”menus”>
<li class=”<?php echo($home_menu); ?>”>” href=”<?php echo get_settings(‘home’); ?>/”><?php _e(‘Home’, ‘inove’); ?>
<?php
if($options[‘menu_type’] == ‘categories’) {
wp_list_categories(‘title_li=0&orderby=name&show_count=0’);
} else {
wp_list_pages(‘title_li=0&sort_column=menu_order’);
}
?>Forum: Fixing WordPress
In reply to: Static Home Page but remove link from nav areaStill inclear.
In laymans terms, what do they mean by this:
To change it, edit the appropriate template file featuring the code of the navigation bar with the template tag wp_list_pages. Set the parameters to change the link title.
Forum: Fixing WordPress
In reply to: Static Home Page but remove link from nav areaAnybody have any ideas on this?
When I set up a static “home” page it added the link in the navigation called “home”.
There is already a home link there. How can I delete the one I made?