nvolkert
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I make comments visiblehas anyone figured out how to make this possible? thank you
Forum: Fixing WordPress
In reply to: right sidebar disappearsthanks so much– that was it
this is the plugin I changed setting in:
Twenty Eleven Theme Extensions (by MozTools)This is the setting I selected:
Widget Sidebar
Enable the widget sidebar on single-post pagesForum: Themes and Templates
In reply to: changing font size of all post titlesthanks.. I fixed that line 36 and all other changes fixed correctly
Forum: Themes and Templates
In reply to: changing font size of all post titlesAm I correct in that validating a website is asking someone to look over your code?
Is this what you suggest for fixing the size of my font on my post?
Forum: Themes and Templates
In reply to: changing font size of all post titlesWell all other code I’ve changed in child theme has worked so I believe it’s set up correctly.
where do I add h1 exactly?
Can you explain these errors?
Forum: Themes and Templates
In reply to: changing font size of all post titlesof course I refreshed my browser. And I haven’t posted a link to my site because it’s not live it’s in draft version. I don’t know if you’ll be able to view it but here is the link:
https://www.milkallergyguide.com/?p=616&preview=trueAnd you never change the theme code you always add and change the CHILD theme code which overwrites main theme.
Does anyone else have suggestions?
Forum: Themes and Templates
In reply to: feedburner email subscribe not enabled? URGENTI figured out my issues on this topic and have described here:
https://www.ads-software.com/support/topic/feed-does-not-have-subscriptions-by-email-enabled-twenty-eleven?replies=2Good Luck to anyone with issues.. hard to get help on here for people new to website building etc.
Forum: Plugins
In reply to: In need of subscribe/connect/follow widget…I ended up going with the Subscribe / Connect / Follow Widget
Works well.
Forum: Plugins
In reply to: Need "follow blog email" plugin that send LinkI instead went to Twenty Eleven Theme: Settings–Reading
then where it said the following below I selected Summary.. hopefully this works.
For each article in a feed, show
Full text
SummaryForum: Fixing WordPress
In reply to: adding sidebar to all pagesworked like a charm… thanks again
Forum: Fixing WordPress
In reply to: feed does not have subscriptions by email enabled- Twenty Elevenwell I figured it all out myself… as usual on here.
basically, when the Feedburner email widget asked for my Feed URL… I gave it my feed e-mail URL to sign-up. However, I was supposed to fill in my standard Feed URL. https://www.feeds.feedburner/YOURFEEDNAME
ALso on another widget when asked for Feed Name. I provided name of Feed with spaces and you have to add the name without any spaces.
Good luck.
Forum: Themes and Templates
In reply to: feedburner email subscribe not enabled? URGENTI’m having same problem! Please can someone help??
Forum: Fixing WordPress
In reply to: adding sidebar to all pagesThanks, I’ll give this a try.
Do you know if it allows you to add different sidebars for different pages? I originally wanted this feature but had too much trouble setting it up and decided to just go with same sidebar every page.
Forum: Themes and Templates
In reply to: Add sidebar to all pages in Duster@kimjcastleberry Can you please share the code you used as I have been unsuccessful with figuring it out myself!
Thanks!
Forum: Fixing WordPress
In reply to: core sidebars plugin not workingI’ve found information that says:
Widget SupportWidget support is enabled by default and you do not have to add any code. The only recommended change is that you go to your template’s functions.php file and remove any coding containing a function similar to the one below.
if ( function_exists('register_sidebar') ) register_sidebar();
HOwever: when I go into my functions.php I find the following code below and have NO IDEA what to delete. Can someone please help!
* Register our sidebars and widgetized areas. Also register the default Epherma widget. * * @since Twenty Eleven 1.0 */ function twentyeleven_widgets_init() { register_widget( 'Twenty_Eleven_Ephemera_Widget' ); register_sidebar( array( 'name' => __( 'Main Sidebar', 'twentyeleven' ), 'id' => 'sidebar-1', 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Showcase Sidebar', 'twentyeleven' ), 'id' => 'sidebar-2', 'description' => __( 'The sidebar for the optional Showcase Template', 'twentyeleven' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Footer Area One', 'twentyeleven' ), 'id' => 'sidebar-3', 'description' => __( 'An optional widget area for your site footer', 'twentyeleven' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Footer Area Two', 'twentyeleven' ), 'id' => 'sidebar-4', 'description' => __( 'An optional widget area for your site footer', 'twentyeleven' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' => __( 'Footer Area Three', 'twentyeleven' ), 'id' => 'sidebar-5', 'description' => __( 'An optional widget area for your site footer', 'twentyeleven' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => "</aside>", 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); }