Forum Replies Created

Viewing 11 replies - 16 through 26 (of 26 total)
  • Thread Starter Samara

    (@blouishhotmailcom)

    Scratch that, I added it in. It is increasing the text size but it is still green like the rest of the links.

    Thread Starter Samara

    (@blouishhotmailcom)

    Does it matter where I put that code in or can I just place it in a generic stop in the stylesheet?

    Thread Starter Samara

    (@blouishhotmailcom)

    Last question while this thread isn’t locked! 0:)

    How would I position the date above the title entry?

    Thread Starter Samara

    (@blouishhotmailcom)

    Awesome! That’s exactly what I needed. Thank you so much for your patience. 🙂

    Thread Starter Samara

    (@blouishhotmailcom)

    http://pastebin.com/rVvFQtD2

    There you go, the functions.php I appreciate all the help you’ve been giving me. 🙂

    Thread Starter Samara

    (@blouishhotmailcom)

    Ah 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.

    Thread Starter Samara

    (@blouishhotmailcom)

    By 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.

    Thread Starter Samara

    (@blouishhotmailcom)

    Hmm. 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/ ]

    Thread Starter Samara

    (@blouishhotmailcom)

    I 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 &times; %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">&rarr;</span>', 'brunelleschi' ), get_the_author() ); ?>
    								</a>
    							</div><!-- #author-link	-->
    						</div><!-- #author-description -->
    					</div><!-- #entry-author-info -->

    Should I be simply deleting that entire code?

    Thread Starter Samara

    (@blouishhotmailcom)

    Unfortunately 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.

    Thread Starter Samara

    (@blouishhotmailcom)

    Ahh 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.

Viewing 11 replies - 16 through 26 (of 26 total)