djkunai
Forum Replies Created
-
@kate, I wanted to delete all information (Author, date, etc.) from the bottom of my posts, so keep in mind that deleting that chunk of code will delete all information that would normally appear.
I figured it out:
1. Go to Editor.
2. Edit content-single.php
3. Find this:<div class=”entry-meta-wrapper”>
<span class=”post-date”>
<?php spun_posted_on(); ?>
</span><?php
/* translators: used between list items, there is a space after the comma */
$tags_list = get_the_tag_list( ”, __( ‘, ‘, ‘spun’ ) );
if ( $tags_list ) :
?><span class=”tags-links”>
<?php printf( __( ‘%1$s’, ‘spun’ ), $tags_list ); ?>
</span>
<?php endif; // End if $tags_list ?><?php edit_post_link( __( ‘Edit’, ‘spun’ ), ‘<span class=”edit-link”>’, ‘</span>’ ); ?>
</div>4. Delete it.
Forum: Themes and Templates
In reply to: [Spun] Reverse order of previous and next posts in SpunI added to it custom CSS but the arrow locations are simply switched. Now instead of it being
<- [content] ->
it appears as
-> [content] <-
It looks wrong. I was hoping the arrows would still point in the same direction but the newer/older would be reversed.
Forum: Themes and Templates
In reply to: [Spun] Reverse order of previous and next posts in SpunSo this is the code:
.site-content #nav-below .nav-next a:before, .site-content #image-navigation .nav-next a:before { content: "?"; } .site-content #nav-below .nav-next a, .site-content #image-navigation .nav-next a { left: 0; } .site-content #nav-below .nav-previous a:before, .site-content #image-navigation .nav-previous a:before { content: "?"; } .site-content #nav-below .nav-previous a, .site-content #image-navigation .nav-previous a { left: 86%; }
I’m not sure where to inject this, or if I’m supposed to replace a block with it. Also, what are the “?” supposed to be?