Csaba (LittleBigThings)
Forum Replies Created
-
Ow great thanks! I just checked Google’s information about this. ??????
Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] Filter member discountGreat, thank you very much! ??
Forum: Plugins
In reply to: [My Tickets - Accessible Event Ticketing] Filter member discountOw I’m sorry, but I did not mean discount codes, but the general setting for Member discount in the plugin at wp.org.
Thanks!Forum: Plugins
In reply to: [Slim SEO - Fast & Automated WordPress SEO Plugin] Polylang and other issuesHi,
How can I find the sitemap for other languages if I use Polylang?
I don’t seem to have them…Thanks!
CsabaThank you, great, it works fine now on single and multisite!!! ??
Thanks! The clue was (obviously) not making the parent style a dependency when enqueueing the child theme
style.css
and indeed setting the priority higher than 10.For anyone having the same issue, I have used the following code in my child theme’s
functions.php
:function child_enqueue_styles() { // dequeue the Twenty Twenty-One parent style wp_dequeue_style( 'twenty-twenty-one-style' ); // Theme stylesheet wp_enqueue_style( 'child-style', get_stylesheet_uri(), array(), wp_get_theme()->get('Version') ); } add_action( 'wp_enqueue_scripts', 'child_enqueue_styles', 11 );
Thanks! ??
Forum: Plugins
In reply to: [Slim SEO - Fast & Automated WordPress SEO Plugin] MultisiteThanks!
I’ll try. I realised that I have some staging sites on that multisite install, so for now, I’ll go with activating it on separately on the sites.
Forum: Reviews
In reply to: [Twenty Nineteen] How to choose fonts and colors?I just tested and this plugin works quite well for adding Google Fonts to Twenty Nineteen via the Customizer:
Good luck!
I have WP 5.0 running on my site and I use the Twenty Nineteen theme. I have a static front page and a different page for the blog posts.
I am pretty sure that the setting is not removed from the admin or from the Customizer, so I am not sure what the problem is on your site/with your setup.
Do you have other plugins running? Make also sure that you first select the option to set a static page as a front page (it should be there) to be able to select the page.
Forum: Alpha/Beta/RC
In reply to: Theme Options missing in 5.0-RC3Hi,
The Twenty Nineteen theme has no Theme Options panel/section. All the custom settings are under the Colors section in the Customizer.
I am not sure when it was removed but I believe it was only there in a very early stage.
Cheers,
CsabaForum: Fixing WordPress
In reply to: Custom User Roles not displayed in Author List BoxIs there a reason you are using user levels? They were deprecated a long time ago.
Forum: Fixing WordPress
In reply to: Having trouble adding a new line!You should probably try to drag your second, smaller image to find the ‘right spot’. In front of the next paragraph?
The image is now just before the ‘Before’ paragraph. Since this image is floated right, the paragraph wraps around it. You could also float the image to the left or not float it at all.
Forum: Fixing WordPress
In reply to: Background Image Responsive AlignmentHi,
You can adjust the position of your image using the CSSbackground-position
property on thebody
element with custom background. It is set like this now:body.custom-background { background-position: top center !important; }
If you change center to left then you’ll see more of the left part of the image (and actually the first one should be the horizontal and the second one the vertical position):
body.custom-background { background-position: left top !important; }
You can also fine tune this by using percentages (0 for top and choose the correct one for the horizontal position):
body.custom-background { background-position: 20% 0 !important; }
If you only want this for small screens, you should wrap it in a media query that defines the max. screen size this style is applied to, like this:
@media screen and (max-width: 480px) { body.custom-background { background-position: 20% 0 !important; } }
I mustn’t forget: you should apply this to your style.css file (at the end) in a child theme or in your theme if it allows custom CSS.
Forum: Fixing WordPress
In reply to: How to stop certain posts displaying in recent posts widget?I have not tested it but this solution may work for you (3 years old).