Hi there π
Still looking for a way to edit CSS for tags-links and move them below the title, I can’t find how to do π
The easiest way to remove links, like Edit or Author is to use CSS rule for that element, like:
.element {
display: none;
}
See how to find element you need:
http://mtomas.com/389/tiny-forge-framework-child-themes-comprehensive-guide#Use-web-dev-tools
Another way is to copy from main theme to your child theme file in:
template-parts/content.php
and when you see:
<?php
// Functions located in: inc/template-tags.php
tinyframework_entry_meta();
tinyframework_edit_link();
?>
You can just delete …_edit_link(); part.
Otherwise for more granular control, you can see inc/template-tags.php and these functions:
tinyframework_entry_meta_top()
tinyframework_entry_meta()
You can copy those (without if ( ! function_exists( 'tinyframework_entry_meta' ) ) : at the top and without endif; at the bottom) to your child’s functions.php and modify.
Thanks a lot ! It works ! π
However, I only need to keep the tags-links, not the author and date, and need to remove the “,” between the tags, how could I do so ? Any clue would be helpful π
-
This reply was modified 9 years, 3 months ago by
macawole.
Then you will have to copy over those functions to your child’s functions.php and to some editing over there as these functions produce the output you need to correct.