Andre Varinski
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Bold Headline] Post summary layout on New Posts pageThanks, Christine!
Forum: Themes and Templates
In reply to: [Bold Headline] Post summary layout on New Posts pageI think a found a solution!
Firstly, I copied content.php into the Bold Headline Child folder.
Then, I modified the file by changing line 18
<?php the_excerpt(); ?>
into:
<?php the_content( __( 'Continue reading <span class="meta-nav">...</span>', 'bold_headline' ) ); ?>
and it worked like a charm!
(To be frank, I got the idea from examining the content.php file I found in your own Stripay theme, which I used for a long time before chancing upon Bold Headline.)
Could you confirm that this solution is 100% kosher?
Thanks.Forum: Themes and Templates
In reply to: [Bold Headline] Disabling Fittext@christine
Thanks for the advice. Your solution is neater than mine, no doubt about it. I’ll look into it when I have a minute… or two (to a layman like me, the operation seems a little bit more complicated than creating a child theme, I’m afraid…).
Hats off again for your wonderful theme!Forum: Themes and Templates
In reply to: [Omega] Adding author's name to postWell, thanks again for the hint. As a newbie, looking inside the omega/partials folder isn’t something I would’ve thought of in the first place! I’m still dabbling into code… bit by bit!
Forum: Themes and Templates
In reply to: [Omega] Adding author's name to post@templates4all
You put me on the right track! As a matter of fact, in omega/partials/entry-byline.php these lines of code can be found:if (is_multi_author()) { echo apply_atomic_shortcode( 'entry_author', __( 'Posted by [entry-author] ', 'omega' ) ); } else { echo apply_atomic_shortcode( 'entry_author', __( 'Posted ', 'omega' ) );
But as you can see, Posted by [entry-author] only applies (as I understand it) to multi-author websites, whereas mine is a single author site. I thus modified the code into this:
if (is_multi_author()) { echo apply_atomic_shortcode( 'entry_author', __( 'Posted by [entry-author] ', 'omega' ) ); } else { echo apply_atomic_shortcode( 'entry_author', __( 'Posted by [entry-author] ', 'omega' ) );
and bingo! that was it.
Thanks again!Forum: Themes and Templates
In reply to: [Omega] Adding author's name to post@templates4all:
I followed your suggestion and removed the line of code I had added to single.php (by the way, I use a child theme of the Omega theme). The problem remains. Under the post title only this appears:Posted on October 21, 2013
No author whatsoever. To be continued…
Thanks anyways!Forum: Themes and Templates
In reply to: [Omega] Adding author's name to postThe author’s name does appear, but over the post title
I meant above the post, not over. My bad!