Samara
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changing Comments ColorScratch that, I added it in. It is increasing the text size but it is still green like the rest of the links.
Forum: Fixing WordPress
In reply to: Changing Comments ColorDoes it matter where I put that code in or can I just place it in a generic stop in the stylesheet?
Forum: Fixing WordPress
In reply to: Remove Author | Remove CommentsLast question while this thread isn’t locked! 0:)
How would I position the date above the title entry?
Forum: Fixing WordPress
In reply to: Remove Author | Remove CommentsAwesome! That’s exactly what I needed. Thank you so much for your patience. 🙂
Forum: Fixing WordPress
In reply to: Remove Author | Remove CommentsThere you go, the functions.php I appreciate all the help you’ve been giving me. 🙂
Forum: Fixing WordPress
In reply to: Remove Author | Remove CommentsAh I suppose I didn’t understand what you meant by edit. What exactly am I supposed to change the code to? I do not know php so I’m not sure how I am supposed to modify the function.
Forum: Fixing WordPress
In reply to: Remove Author | Remove CommentsBy removing the
<?php brunelleschi_posted_on(); ?>it also removed the date the entry was posted which I would still need to keep in there.The second two codes are to remove the comments I assume? In terms of the comments I found a widget which simply disabled it for my pages.
Forum: Fixing WordPress
In reply to: Remove Author | Remove CommentsHmm. I’m at a loss then. Here are the entire pages of both the loop.php and single.php
Single.php
[code removed - for future posting of code, please use the http://pastebin.com/ ]
Forum: Fixing WordPress
In reply to: Remove Author | Remove CommentsI found this in loop-attachment.php
<header> <h2 class="entry-title"><?php the_title(); ?></h2> <div class="entry-meta"> <?php printf( __( '<span class="%1$s">By</span> %2$s', 'brunelleschi' ), 'meta-prep meta-prep-author', sprintf( '<span class="author vcard"><a class="url fn n" href="%1$s" title="%2$s">%3$s</a></span>', get_author_posts_url( get_the_author_meta( 'ID' ) ), sprintf( esc_attr__( 'View all posts by %s', 'brunelleschi' ), get_the_author() ), get_the_author() ) ); ?> <span class="meta-sep">|</span> <?php printf( __( '<span class="%1$s">Published</span> %2$s', 'brunelleschi' ), 'meta-prep meta-prep-entry-date', sprintf( '<span class="entry-date"><abbr class="published" title="%1$s">%2$s</abbr></span>', esc_attr( get_the_time() ), get_the_date() ) ); if ( wp_attachment_is_image() ) { echo ' <span class="meta-sep">|</span> '; $metadata = wp_get_attachment_metadata(); printf( __( 'Full size is %s pixels', 'brunelleschi' ), sprintf( '<a href="%1$s" title="%2$s">%3$s × %4$s</a>', wp_get_attachment_url(), esc_attr( __( 'Link to full-size image', 'brunelleschi' ) ), $metadata['width'], $metadata['height'] ) ); } ?> <?php edit_post_link( __( 'Edit', 'brunelleschi' ), '<span class="meta-sep">|</span> <span class="edit-link">', '</span>' ); ?> </div><!-- .entry-meta --> </header>And in the loop-single.php file I found this;
<?php if ( get_the_author_meta( 'description' ) ) : ?> <div id="entry-author-info"> <div id="author-avatar"> <?php echo get_avatar( get_the_author_meta( 'user_email' ), apply_filters( 'brunelleschi_author_bio_avatar_size', 60 ) ); ?> </div><!-- #author-avatar --> <div id="author-description"> <h2><?php printf( esc_attr__( 'About %s', 'brunelleschi' ), get_the_author() ); ?></h2> <?php the_author_meta( 'description' ); ?> <div id="author-link"> <a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) ); ?>"> <?php printf( __( 'View all posts by %s <span class="meta-nav">→</span>', 'brunelleschi' ), get_the_author() ); ?> </a> </div><!-- #author-link --> </div><!-- #author-description --> </div><!-- #entry-author-info -->Should I be simply deleting that entire code?
Forum: Fixing WordPress
In reply to: Remove Author | Remove CommentsUnfortunately I do not know what piece of code to look for within the files. I’ve searched for “author” but I am not finding anything.
Also still need to remove comments on the pages.
Forum: Fixing WordPress
In reply to: Remove Author | Remove CommentsAhh I did the CSS line but it hides the date of the posting. The site author wants to be able to see the date but not the author.