jaytime
Forum Replies Created
-
Forum: Plugins
In reply to: CGM Calendar Time stampI also need to be able to not have to post an end time.
Forum: Plugins
In reply to: [Plugin: CGM Event Calendar] Add a classes and events calendar to your site.Great plug in. The only thing it lacks is the ability to put events without posting a start time. Can we get that function? This would make the plug in hands down the single most useful calendar plug in for wordpress.
Forum: Fixing WordPress
In reply to: numbers in address instead of titleThank you. Exactly as I needed.
Forum: Installing WordPress
In reply to: change order of nav. barBelow is my header.php…I can’t find anything that says “wp_list_pages” I realize I may simply be overlooking it…if so, please tell me where it is, I have been looking over this code for a week…
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”https://www.w3.org/1999/xhtml”>
<head profile=”https://gmpg.org/xfn/11″>
<meta http-equiv=”Content-Type” content=”<?php bloginfo(‘html_type’); ?>; charset=<?php bloginfo(‘charset’); ?>” />
<title><?php bloginfo(‘name’); ?> <?php if ( is_single() ) { ?> » Blog Archive <?php } ?> <?php wp_title(); ?></title>
<meta name=”generator” content=”WordPress <?php bloginfo(‘version’); ?>” />
<link rel=”stylesheet” href=”<?php bloginfo(‘stylesheet_url’); ?>” type=”text/css” media=”screen” />
<link rel=”alternate” type=”application/rss+xml” title=”<?php bloginfo(‘name’); ?> RSS Feed” href=”<?php bloginfo(‘rss2_url’); ?>” />
<link rel=”pingback” href=”<?php bloginfo(‘pingback_url’); ?>” />
<?php wp_head(); ?>
</head>
<body>
<div id=”page” <?php if (is_home()) echo ” class=\”singlecol\””; ?><?php if (is_page()) echo ” class=\”singlecol\””; ?><?php if (is_archive()) echo ” class=\”singlecol\””; ?>>
<div id=”header”>
<div id=”headerimg”>
<h1>/”>
<?php bloginfo(‘name’); ?>
</h1>
<div class=”description”>
<?php bloginfo(‘description’); ?>
</div>
</div>
</div>
<!– navigation …………………………… –>
<div id=”navigation”><?php
$pages = get_pages();
if ($pages) {
foreach ($pages as $page) {
$page_id = $page->ID;
$page_title = $page->post_title;
$page_name = $page->post_name;
if ($page_name == “archives”) {
(is_page($page_id) || is_archive() || is_search() || is_single())?$selected = ‘ class=”selected”‘:$selected=”;
echo “<li”.$selected.”>Archives\n”;
}
elseif($page_name == “home”) {“”;
}
elseif($page_name == “about”) {
(is_page($page_id))?$selected = ‘ class=”selected”‘:$selected=”;
echo “<li”.$selected.”>About\n”;
}
elseif ($page_name == “about_short”) {/*ignore*/}
else {
(is_page($page_id))?$selected = ‘ class=”selected”‘:$selected=”;
echo “<li”.$selected.”>$page_title\n”;
}
}
}
?></div>
<!– /navigation –>
<hr />Forum: Installing WordPress
In reply to: change order of nav. barCan anyone help me please?
Forum: Installing WordPress
In reply to: change order of nav. barI don’t know what a parameter to my wp list page templete tag means…
I don’t know what a parameter is and I don’t know where my wp_list page templete is..I don’t have anything that is called wp_list-page templete or anything like it…I went to my “pages” in my admin. panel and where it asked to number the page I have done that…but they still show up in alphabetical order
I’m not trying to be difficult, I simply don’t understand what you mean by the above…
Forum: Installing WordPress
In reply to: change order of nav. barsorry, I seem to be making this more difficult with my lack of the lingo…… The horizontal bar…with what I believe has the “pages” there…such as home, about, etc.
Forum: Installing WordPress
In reply to: change order of nav. barI don’t think so…just the nav. bar that came with the templete…I got the templete from here…https://themes.wordpress.net/columns/2-columns/563/beach-house-121/
Forum: Installing WordPress
In reply to: change order of nav. barI have looked in my themes..I looked in header, stylesheet, main index templete,sidebar and page temples…I can’t find “wp_list_pages” anywhere…any ideas?
Forum: Installing WordPress
In reply to: change order of nav. barCan anyone please help me?
Forum: Installing WordPress
In reply to: change order of nav. barI see what your telling me to look at. but where do I put the code? I don’t understand their instructions….where in my admin panel?
Forum: Fixing WordPress
In reply to: main page :static” and want to make a “post page”I figured out the second part and the first part that you told me to delete seemed to do the trick. Thanks
Forum: Fixing WordPress
In reply to: main page :static” and want to make a “post page”Anyone?
Forum: Fixing WordPress
In reply to: main page :static” and want to make a “post page”Sure. It’s called beach house and I downloaded it here…
https://themes.wordpress.net/columns/2-columns/563/beach-house-121/
Forum: Fixing WordPress
In reply to: main page :static” and want to make a “post page”I have been trying to figure this out…I went to the options>read and where it says front the dropdown only has (about) as an option. The templete came with a home button and an about button. I created a new page called home, I was able to set that in the options dropdown menu and then I have 2 buttons that say home in the nav. bar. How do I make the home page static and not have the other “home” button show up?