kufloyd
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Twenty-One] Editing category textMarking as resolved.
Forum: Themes and Templates
In reply to: [Twenty Twenty-One] Editing category textThanks…that works.
Forum: Fixing WordPress
In reply to: Editing text in a blockThanks for the reply…that resolved the issue.
One other question: I created categories…here’s one example: Writing – Kunal Mehra Writing Photography and Filmmaking
Do you know how to edit the introductory text at the top of the page? (like “My writing has been nominated…”.). I did it at one point, but now I don’t remember how to edit that text.Thanks.
Forum: Fixing WordPress
In reply to: Editing text in a blockForum: Everything else WordPress
In reply to: Images getting scaled downLooks like adding this line to functions.php fixes the issue:
add_filter( ‘big_image_size_threshold’, ‘__return_false’ );
Forum: Fixing WordPress
In reply to: Adding text on category pageThanks….that works.
Thanks for the clarification.
Forum: Everything else WordPress
In reply to: Good contact form pluginThanks…I checked there, but it’s hard to tell which plugins require complete email access and which ones don’t..it’s only after installing Fluent Forms plugin that I realized they want complete access to your email.
Forum: Everything else WordPress
In reply to: Adding a tab for newsletter signupI think it’s a feature, but I’ll check with theme part of the forum…thanks for your help.
Forum: Everything else WordPress
In reply to: Adding a tab for newsletter signupI went to Appearance –>Widgets and clicked on the + sign, and typed in ‘newsletter’ in the search box. I clicked the ‘newsletter signup’ widget that showed up.
Forum: Everything else WordPress
In reply to: Adding a tab for newsletter signupRight now, it’s a widget…I searched the widgets for ‘newsletter’ and picked one called ‘newsletter signup’.
Forum: Fixing WordPress
In reply to: Adding ‘next page’ button to a pageThanks…that works. Appreciate your help.
Forum: Fixing WordPress
In reply to: Change page title font sizeI was doing it in the wrong place (in additional CSS). Now, doing it in functions.php works.
Thanks.
Forum: Fixing WordPress
In reply to: Change page title font sizeThanks…I tried this code:
add_filter(‘get_the_archive_title_prefix’, function( $prefix ) {
return is_category() ? ” : $prefix;
});but it still displays ‘category’ as a prefix: https://kunalmehra.com/category/films/
Not a big deal to have the category prefix, but just thought I’d check if it’s possible to do it w/o too much effort. Like you said, the Twentig plugin might not be worth the effort.
Forum: Fixing WordPress
In reply to: Change page title font sizeThanks again…that works. If I may, one other question: Right now https://kunalmehra.com/category/films/ displays “category: Films” as the title. Is there a way for it to just say “Films” and not prefix the word ‘category’?