You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i´ve made two minor changes for the Website https://seife.lavendelhexe.net/. I want to place them here so you can think about implementing them. They are not perfectly, need some work and also other things should be removed and changed but you will get the point. Also i dign´t want to make a pull request because of that.
I moved <?php mercia_header_image(); ?>
under <div id="page" class="hfeed site">
and changed the function to
Than i added an comment counter to the meta tags. It should be linked to the comments section from the post - but i haven´t done this yes. So i changed this
if ( ! function_exists( 'mercia_entry_meta' ) ) :
/**
* Displays the date, author and categories of a post
*/
function mercia_entry_meta() {
$postmeta = mercia_meta_date();
$postmeta .= mercia_meta_author();
$postmeta .= mercia_meta_comment();
$postmeta .= mercia_meta_category();
echo '<div class="entry-meta">' . $postmeta . '</div>';
}
endif;
and added this
if ( ! function_exists( 'mercia_meta_comment' ) ) :
/**
* Displays the post comment count
*/
function mercia_meta_comment() {
$comment_string = get_comments_number_text();
$posted_comment = mercia_get_svg( 'comment' ) . $comment_string;
return '<span class="meta-author"> ' . $posted_comment . '</span>';
}
endif;
Thank you for the Theme.
Best Regards
Jens
The text was updated successfully, but these errors were encountered:
Hi,
i´ve made two minor changes for the Website https://seife.lavendelhexe.net/. I want to place them here so you can think about implementing them. They are not perfectly, need some work and also other things should be removed and changed but you will get the point. Also i dign´t want to make a pull request because of that.
I moved
<?php mercia_header_image(); ?>
under
<div id="page" class="hfeed site">
and changed the function to
The Header Image was way too big and didn´t look good from my opinion. Now its in the site area. I also made css changes so that it looks good.
Than i added an comment counter to the meta tags. It should be linked to the comments section from the post - but i haven´t done this yes. So i changed this
and added this
Thank you for the Theme.
Best Regards
Jens
The text was updated successfully, but these errors were encountered: