Patricia
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: line breaks disappearThanks, Tara. I think what happened was that the post began as a “PRESS THIS” document, then I began editing it and it got confused. ??? Everything seems to be working well now. Thanks again for your suggestions.
Forum: Plugins
In reply to: [WordPress Importer] WordPress Importer – Hand This Over To Another DeveloperRyan, I could not find an xml importer, can you? If so, can you give us a link or at least an exact title for the importer? thanks.
hi! i need to remove the header nav bar in fourteen. i already bombed my blog ‘guessing’, so can you tell me where to put this code in fourteen? thanks.
Forum: Fixing WordPress
In reply to: youtube videos are smaller with twenty fourteen themeznuffn, hi. thank you very much for responding. i have two questions.
1) do i put these anywhere in those files?
2) i use a link to the youtube video on its own line, usually, not an embed. will that make a difference?
thanks for your help.
patriciaForum: Fixing WordPress
In reply to: Remove Home Button from Navigation Bar – header.php codemore information…
http://www.authorsupportcoop.com . macintosh . safari
i get two ‘home’ tabs on the navigation bar. if you go to any page on the navigation bar other than ‘at your service’ (which is the ‘Home’ page), then ‘Home’ shows up even tho there is no ‘home’… i renamed ‘home’ below to ‘at your service’ and then i had two ‘at your service’ tabs. i am using the veryplaintxt theme and i believe this is where the problem lies but i only speak very simply html and i don’t want to damage anything.
—
Theme Functions (functions.php)
<?php
// Produces links for every page just below the header
function veryplaintxt_globalnav() {
echo “<div id=\”globalnav\”><ul id=\”menu\”>”;
if ( !is_front_page() ) { ?><li class=”page_item_home home-link”>/” title=”<?php echo wp_specialchars(get_bloginfo(‘name’), 1) ?>” rel=”home”><?php _e(‘Home’, ‘veryplaintxt’) ?><?php }
$menu = wp_list_pages(‘title_li=&sort_column=menu_order&echo=0’); // Params for the page list in header.php
echo str_replace(array(“\r”, “\n”, “\t”), ”, $menu);
echo “</div>\n”;
}Forum: Fixing WordPress
In reply to: Remove Home Button from Navigation Bar – header.php codep.s. i think one of these groups is the code that is responsible for my double ‘Home’ in the navigation bar…
—
<?php
// Produces links for every page just below the header
function veryplaintxt_globalnav() {
echo “<div id=\”globalnav\”><ul id=\”menu\”>”;
if ( !is_front_page() ) { ?><li class=”page_item_home home-link”>/” title=”<?php echo wp_specialchars(get_bloginfo(‘name’), 1) ?>” rel=”home”><?php _e(‘Home’, ‘veryplaintxt’) ?><?php }
$menu = wp_list_pages(‘title_li=&sort_column=menu_order&echo=0’); // Params for the page list in header.php
echo str_replace(array(“\r”, “\n”, “\t”), ”, $menu);
echo “</div>\n”;
}—
or
—
function widget_veryplaintxt_homelink($args) {
extract($args);
$options = get_option(‘widget_veryplaintxt_homelink’);
$title = empty($options[‘title’]) ? __( ‘Home’, ‘veryplaintxt’ ) : $options[‘title’];
if ( !is_front_page() || is_paged() ) {
?>
<?php echo $before_widget; ?>
<?php echo $before_title; ?>/” title=”<?php echo wp_specialchars(get_bloginfo(‘name’), 1) ?>” rel=”home”><?php echo $title; ?><?php echo $after_title; ?>
<?php echo $after_widget; ?>
<?php }
}Forum: Fixing WordPress
In reply to: Remove Home Button from Navigation Bar – header.php codeexcuse me, but which document did you revise?
where do i find that document?
in appearance > editor ?
or in the docs on the server?
thank you!Forum: Fixing WordPress
In reply to: posts don't show up except on first visit to sitei think i figured it out. i have a plugin installed – page links to – and i think that was the glitch. i set it to point at the domain. thanks for responding!!!
Forum: Fixing WordPress
In reply to: How To Stop Stripping Div Tags in HTML/Visual Editordidn’t seem it was that way when i started using wordpress.
is this an improvement?
is there a setting to set to avoid the ‘help’ of the <div> tags?
as limey said, it’s frustrating as hell.
why not just wisiwig?