Laly York
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Twenty-One] How To Remove Prefixes of Category/TagHi,
here is the answer:
https://www.ads-software.com/support/topic/remove-category-titles-3/
The CSS code mentioned at the beginning doesn’t work anymore.
Use the code for the functions file ??Forum: Themes and Templates
In reply to: [Twenty Twenty-One] Excess space at bottom of page bodyHi Steve
Could you please add the website you need help with?Forum: Themes and Templates
In reply to: [Twenty Twenty-One] How to remove extra space between blocks?Could you please add the website you need help with?
Forum: Themes and Templates
In reply to: [Twenty Twenty-Two] Live Preview Not AvailableHi there,
The only preview we don’t get (with Full Site Editing and this theme) is the desktop’s, because we are seeing how it’s going to look like right there in the editor.Check out these quick lessons about Full Site Editing. They are going to help you understand what’s missing and why, and etc. https://learn.www.ads-software.com
Saludos!
ok, thank you for your time
It did!
Thank you so much!
At least that is fixedDo you you know how to replicate this using
apply_filter()
andwp_link_pages
()?Forum: Themes and Templates
In reply to: [Twenty Twenty-One] move categories on top of the post contentHi,
You’ll need to create a child theme and then addthe_category()
andthe_tags()
where you want them.Here’s how you create a child theme https://developer.www.ads-software.com/themes/advanced-topics/child-themes/
How to add the categories: https://developer.www.ads-software.com/reference/functions/the_category/
And how to add the tags https://developer.www.ads-software.com/reference/functions/the_tags/Forum: Themes and Templates
In reply to: [Twenty Twenty-One] Remove large box near bottom of page?Hi,
could you please share where your blog is at?Forum: Themes and Templates
In reply to: [Twenty Twenty-One] CSS Styling Posts and Not PagesHi!
I wouldn’t recommend to do that… The theme is made to make the most of the blocks.
Have you tried to, for instance,
1) add paragraph block
2) group that block
3) set the group to full width?That being said, with the following snippet you’ll change the width of single posts only, and on big screens
@media (min-width:48em) { /*Expand width for single posts in big screens*/ .single .entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.woocommerce), *[class*=inner-container] > *:not(.entry-content):not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.wp-block-separator):not(.woocommerce), .default-max-width { max-width:1200px; } }
I hope this helps you!
Forum: Themes and Templates
In reply to: [Twenty Twenty] Twenty Twenty child theme doesn’t workAwesome!
Thank you for taking the time to say thanks
I’ll see if I can close this topic, ok?
(If I can’t, please do so, so it’s marked as solved ??)
Happy blogging!Forum: Themes and Templates
In reply to: [Twenty Twenty] Having trouble finding full width templateWhich website do you need help with?
And, are you using the Twenty Twenty Theme? Because if you do, there shouldn’t be a problem…[Edited] You need to click on “Template” instead of “Page Attributes”
- This reply was modified 3 years, 4 months ago by Laly York.
Forum: Themes and Templates
In reply to: [Twenty Twenty] Drop Down Menu appearance in twenty twenty themeHello!
If you are referring to the menu that one opens with the three dots, try this on your CSS:.modal-menu li .ancestor-wrapper a { font-size:2rem;/*the default is at 2.4*/ }
Hello,
Thank you for your response.
I am in fact using the Twenty Twenty Theme, with a Child Theme, and my child theme is mainly based on CSS changes.
About the plugins I have, they are the most basic ones (such us Jetpack, Yoast, Google Site Kit, etc) I wouldn’t deactivate them because they matter most than this.The “save the text” option, is now working. And I must emphasize many things got broken with “your” update, and nothing else.
I also received the Error Code 0002
Forum: Themes and Templates
In reply to: [Twenty Twenty] Twenty Twenty child theme doesn’t workHello,
the following for your functions.php file should work (this is how I have it)function my_theme_enqueue_styles() { $parent_style = 'twentytwenty-style'; // Make sure here it's the parent theme. wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ), wp_get_theme()->get('Version') ); } add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
You’ll find at WordPress Codex everything you need about Child Themes. Check it out at https://developer.www.ads-software.com/themes/advanced-topics/child-themes/
Forum: Themes and Templates
In reply to: [Twenty Twenty] Tweak the style on Twenty Twenty blog posts pageHi!
I see everything in green. Did you manage to change the background on your own?To reduce the height, for instance, of the caption, this should work:
figcaption.wp-caption-text { margin-top:0.5rem; }
Is this what you were looking for?