vlgee
Forum Replies Created
-
Forum: Themes and Templates
In reply to: StudioPress Duplicate TabsDoes anyone have any ideas on how to fix the duplicate page issue?
Thanks
Forum: Themes and Templates
In reply to: StudioPress Duplicate TabsI did not find a line like the one you posted. What it has is
<div id="nav"> <?php function get_the_pa_ges() { global $wpdb; if ( ! $these_pages = wp_cache_get('these_pages', 'pages') ) { $these_pages = $wpdb->get_results('select ID, post_title from '. $wpdb->posts .' where post_status = "publish" and post_type = "page" order by ID'); } return $these_pages; } function list_all_pages(){ $all_pages = get_the_pa_ges (); foreach ($all_pages as $thats_all){ $the_page_id = $thats_all->ID; if (is_page($the_page_id)) { $addclass = ' class="current_page"'; } else { $addclass = ''; } $output .= '<li' . $addclass . '><a href="'.get_permalink($thats_all->ID).'" title="'.$thats_all->post_title.'"><span>'.$thats_all->post_title.'</span></a></li>'; } return $output; } ?> <ul> <?php if (is_home()) { $addclass = ' class="current_page"'; } else { $addclass = ''; } echo "<li" . $addclass . "><a href='" . get_option('home') . "' title='Home'><span>Home</span></a></li>"; echo list_all_pages();?> </ul>Forum: Themes and Templates
In reply to: StudioPress Duplicate TabsOk, thank you so much. I will try that!
Thanks
Forum: Themes and Templates
In reply to: StudioPress Duplicate TabsThanks Esmi, that’s what I was afraid of. I barely know how to make simple changes to my CSS stylesheet. I am a little nervous about tinkering with the PHP. My site is http://mylocaljobmarket.com
Thanks for your help.
Forum: Themes and Templates
In reply to: How to edit color of footer in WP Classic themeThank you both!
Maybe someday, I will grow to appreciate the greenish gray, but for now, not so much.
Thanks
Forum: Fixing WordPress
In reply to: Post edits not updatingNevermind, I found the problem and fixed it. I had the front page set to a static page, so I had to paste the edits in.
Forum: Your WordPress
In reply to: My First Blog! What do you think?Beautiful site. I really like the clean, uncluttered feel of it. Looks like great content, too. I bookmarked it so I can go back and read it when I have some time.
Vicki
Forum: Fixing WordPress
In reply to: Theme changes disappearedThat explains it! Thanks so much. I did make a copy of my changes, so I can fix it. I will just have to remember to do the upgrades manually in the future.
Thanks again,
VickiForum: Fixing WordPress
In reply to: Theme changes disappearedThanks, I tried that. The changes are long gone.
One idea…when I upgraded, I clicked the option for auto upgrade. Could that have something to do with it?
Forum: Fixing WordPress
In reply to: How to link to blog from Static pageIf I understand correctly, you want people to see the blogs that have been written from your static page. you would have to edit the page with a snippet from the blog entry, maybe the title and the first few lines, then create a hyperlink to the actual blog entry. You could add text at the end of the snippet that says something like “read more” and then make a hyperlink to the actual post.
Hope that helps
Forum: Everything else WordPress
In reply to: Assigning Authors vs ContributorsThanks, that is exactly what I needed