Nick Ottens
Forum Replies Created
-
Forum: Plugins
In reply to: [Newsletter Glue - Best WordPress email newsletter plugin] Placement of LogoAwesome! I’d love that too.
Forum: Plugins
In reply to: [Liveblog] More than 5 postsFantastic! Thank you so much.
In case anybody else is wondering, it’s in /classes/class-wpcom-liveblog-lazyloader.php
Change:
self::$number_of_entries = 5;
Forum: Reviews
In reply to: [Gutenberg] Should not be the default editorHi Courtney, thanks for your message!
I use Gutenberg for one of my blogs, which is heavier on graphics, and I’ve gotten used to it there. For the other, I prefer Classic. That’s mostly a text blog and I like to code headers, link, etc. manually. I also often move paragraphs, or parts of paragraphs, around there and I find that’s much easier in Classic than in Gutenberg.
So pros and cons. Gutenberg is a good fit for the first blog, but I hope Classic will remain available indefinitely so I can continue to use it for the other one.
Forum: Fixing WordPress
In reply to: Link to full-size media fileIf this were a theme issue, the problem should go away if I switched themes. It doesn’t.
Forum: Fixing WordPress
In reply to: Link to full-size media fileI don’t see more options when I try with a different theme, though (Twenty Nineteen).
In the Block edit menu, it gives me the option to link to Attachment Page, Media Files or None — nothing about images size. Same in the Edit Gallery menu.
Forum: Fixing WordPress
In reply to: Link to full-size media fileOf course! Here’s an example:
https://forgottentrek.com/designing-the-next-generation-bridge/
Forum: Themes and Templates
In reply to: [Hamilton] Add author nameThanks!
In case anyone is interested, here’s what I did:
<div class="meta"> <?php echo __( 'In', 'hamilton' ) . ' '; the_category( ', ' ); ?> <span>•</span> <?php echo __( 'By', 'hamilton' ) . ' '; the_author_posts_link(); if ( comments_open() ) : ?>
Great theme!
- This reply was modified 5 years, 11 months ago by Nick Ottens.
Forum: Plugins
In reply to: [Liveblog] Links in Key Events Widget no longer workThis has been fixed in the most recent update. Thank you!
Yes, I realized that and changed it to
get_template_part( 'content', 'search' );
after I posted — but no effect.No, it still loads the wrong one starting from Page 2.
Here’s what I put in my functions file, but the problem remains, I’m afraid:
/* * Enable infinite scroll */ add_theme_support( 'infinite-scroll', array( 'container' => 'main', 'render' => 'jetpack_sentinel_infinite_scroll_render', 'footer' => 'page', ) ); /** * Custom render function for Infinite Scroll. */ function jetpack_sentinel_infinite_scroll_render() { while ( have_posts() ) { the_post(); if ( is_search() ) { get_template_part( 'template-parts/content', 'search' ); } else { get_template_part( 'template-parts/content', get_post_format() ); } } }
Sorry — I’m afraid I’m not enough of a coder to understand.
I’m not sure what you mean?
This is the code I put in my functions file to enable Infinite Scroll:
/* * Enable infinite scroll */ add_theme_support( 'infinite-scroll', array( 'container' => 'main', 'footer' => 'page', ) );
Twenty Sixteen displays all the search results the same.
Thanks for your reply!
Yes — if I disable Infinite Scroll, the problem disappears.