Forum Replies Created
-
AuthorPosts
-
December 15, 2020 at 9:54 am in reply to: Navigation Pro – category name above specific category blog page #502310atmanParticipant
Thanks for the answer Anita. So is the lack of the H1 tag with the page title consistent with the principles of website accessibility?
December 14, 2020 at 9:40 am in reply to: Navigation Pro – category name above specific category blog page #502302atmanParticipantAre you getting private posts? I posted links in them.
December 11, 2020 at 10:33 am in reply to: Navigation Pro – category name above specific category blog page #502286atmanParticipantThis reply has been marked as private.December 11, 2020 at 9:29 am in reply to: Navigation Pro – category name above specific category blog page #502284atmanParticipantThanks for your help. I filled out the forms you wrote about but still there is no title on category blog page 🙁
Screenshots:
December 10, 2020 at 12:59 pm in reply to: Navigation Pro – category name above specific category blog page #502280atmanParticipantAs I said I try to create category archive page. It works but there isn't title H1 heading on this page before list of posts.
I can't provide a working link because when I try to put the url in this post and submit it, the post doesn't get published. So I have to put a space in the url. Please remove this space and the link will work.
Here is screenshot:
December 10, 2020 at 10:24 am in reply to: Navigation Pro – category name above specific category blog page #502274atmanParticipantCan I count on your help? There is no H1 heading on custom blog page now.
December 9, 2020 at 5:20 am in reply to: Navigation Pro – category name above specific category blog page #502261atmanParticipantThis reply has been marked as private.December 9, 2020 at 5:20 am in reply to: Navigation Pro – category name above specific category blog page #502260atmanParticipantThis reply has been marked as private.December 9, 2020 at 5:17 am in reply to: Navigation Pro – category name above specific category blog page #502259atmanParticipantThis reply has been marked as private.atmanParticipantOk, thanks, I know this tutorial but Genesis footer widgets use one line action:
add_theme_support( 'genesis-footer-widgets', 3 );
...and I thought second row have to be done in similar way.
Ready-made solution below (maybe helpful for someone).
In the functions.php file:
1) register widget areas
genesis_register_sidebar( array(
'id' => 'footer-2-1',
'name' => 'Footer 2-1',
'description' => 'Description',
) );
genesis_register_sidebar( array(
'id' => 'footer-2-2',
'name' => 'Footer 2-2',
'description' => 'Description',
) );
genesis_register_sidebar( array(
'id' => 'footer-2-3',
'name' => 'Footer 2-3',
'description' => 'Description',
) );2) and add actions
add_action( 'genesis_before_footer', 'footer_2_1' );
function footer_2_1() {
echo '<div class="footer-widgets" id="footer-widgets"><div class="wrap"><div class="footer-widgets-1 widget-area">';
dynamic_sidebar( 'footer-2-1' );
echo '</div>';
}add_action( 'genesis_before_footer', 'footer_2_2' );
function footer_2_2() {
echo '<div class="footer-widgets-2 widget-area">';
dynamic_sidebar( 'footer-2-2' );
echo '</div>';
}add_action( 'genesis_before_footer', 'footer_2_3' );
function footer_2_3() {
echo '<div class="footer-widgets-3 widget-area">';
dynamic_sidebar( 'footer-2-3' );
echo '</div></div><!-- end .wrap --></div>';
}atmanParticipant...installation News child theme, of course.
atmanParticipantok, here is my fresh installation of Magazine Child Theme.
I need to add another row with footer widgets (footer 1_1, ..1_2, ..1_3) above existing one (2_1, 2_2, 2_3).
atmanParticipantThere is no installation yet. I have only design (.psd) at this moment. I need only code for function.php.
-
AuthorPosts