Greetings…I’m guessing you are referring to the “Bottom” widgets not showing up on the “full post” view?
If so, the full post does not have those sidebar positions, only actual pages do and the blog home page (where post intros are shown).
You could have them show up on the full post view, but you would need to modify a theme file. This also means you would need to switch to using a child theme to make that kind of custom change. If you still want to do that, let me know and I will give you some additional info as to what code is needed and what file.
Yes, you are correct. Please move forward with the additional info (code/file) since I am currently working out of a child theme. Thank you for the quick response. Much appreciated!
No worries… this is what you need:
Copy the single.php file from the parent theme over to your child theme in the same location as the parent theme has it.
Then open is and copy & paste this code:
<?php get_sidebar( 'bottom' ); ?>
…just above this line:
<?php get_template_part( 'template-parts/site-footer' ); ?>
That should do it 🙂