michalrama
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zakra] The Facebook logo is not displayed.Hello @rohitkc32
Yes, it worked. I had to adjust the size and color of the logo via css, but it is now displayed.
That solves the problem.
Thank you very much
Michal
Forum: Themes and Templates
In reply to: [Zakra] The Facebook logo is not displayed.Hello @rohitkc32
Of course. Here is how the third column in the footer appears (I highlighted it so you can see that the logo is not there and not just hidden) – link
And here is how it is set up. – link
As I said, I didn’t change anything. And I tried different browsers and devices, so I guess there won’t be a problem there either.
Forum: Fixing WordPress
In reply to: Why isn’t the image full width?Hello @poku1010
So I did it this way.
const newImg = $('<img>', {
id: 'new-img',
src: "https://skolkaadis.euweb.cz/wp-content/uploads/2022/11/Navrh-bez-nazvu-e1666377754550.jpg",
css: {
filter: "brightness(120%)",
position: "absolute",
left: "0px",
top: "0px",
zIndex: "5",
width: "100%",
height: "auto"
}
});
// P?idáme obrázek do stránky
$("#page").append(newImg);I deleted the image from the page. Then I created it and added it cleanly using Jquery to another element that does not limit the width. So I can simply set the absolute position to 0 and the width to 100%.
This solves the problem,
Thanks for your effort anyway.
Forum: Fixing WordPress
In reply to: Why isn’t the image full width?Hello @poku1010
Thank you. It looks good. But there is one problem that I forgot to mention. The reason I tried to set it only for the image is that if I set it for
.zak-container
, it also affects its content, which I didn’t want. You can see it clearly in your printscreen for the menu. When it’s stuck to the edge of the screen, it doesn’t look nice. That’s why I wanted to set full width only for the image.Hello,
Thank you, I solved the problem using WPCode as you yourself mention in the tutorial.
Have a nice day
Michal
Hello,
I just added a simple code there introducing WPForms itself
/**
* Set the language for Google reCAPTCHA.
*
* @link https://wpforms.com/developers/how-to-set-the-language-for-google-recaptcha/
*/
function wpf_dev_recaptcha_language( $url ) {
// Set the language code to FR (French)
return esc_url_raw( add_query_arg( array( 'hl' => 'cs '), $url ) );
}
add_filter( 'wpforms_frontend_recaptcha_url', 'wpf_dev_recaptcha_language', 10, 1);However, I already figured it out.
When I changed run everywhere to frontend conditional logic and added to the logic only for a specific URL, it already works.
Thanks for the quick reply and have a nice day
Michal
Forum: Plugins
In reply to: [The Events Calendar] Issue with the publish button when editing a theme.Hello @d0153
customizer-views-v2-controls.css
– It is in your plugin folder /wp-content/plugins/the-events-calendar/src/resources/csscustomize.php
– In /wp-adminHello,
I finally solved it by viewing the source code (CTRL + U) and finding a specific ID/class in it.
I did have to go through all the pages manually, but there aren’t many, so it didn’t take long.
I would probably close this question with that.
Still, thank you all for the advice.
Forum: Plugins
In reply to: [The Events Calendar] Issue with the publish button when editing a theme.Hello @d0153
Ah, obviously there’s a problem. If I turn on the console, there is one warning and one error (screenshot)
Warning deprecated feature is probably not related to this.
But the error failed to load a stylesheet from a URL is clearly the problem, because it disappears after deactivating the plugin.
Do you know how to fix this please?
Thank you
Forum: Plugins
In reply to: [Comments - wpDiscuz] Comment Sorting Options missingHello @gvectorssupport ,
You are right. It was actually a setting change in WordPress that caused this. It’s already showing.
Thank you
Forum: Plugins
In reply to: [The Events Calendar] Issue with the publish button when editing a theme.Hello @d0153
I already tried this plugin. Apart from uninstalling inactive theme/plugins, it doesn’t report any major error. And most importantly, if I turn on troubleshooting mode and switch to the Blocksy theme, it’s fine. But just activate the Event Calendar plugin and it no longer works.
I would probably close it. I don’t want to mess with it too much because I often end up breaking something that worked before. In addition, it can be saved anyway and nothing is noticeable from the point of view of the visitor and the user without admin.
Nevertheless, thank you for your cooperation.
Forum: Plugins
In reply to: [The Events Calendar] Issue with the publish button when editing a theme.Hello @d0153
WP version – 6.6.1
PHP version – 8.1.29I don’t have a higher PHP version, because on Active24 (where we have them all registered), I can only have 3 different versions and we also have a domain that only has version 8.0.30 and even 7.1.33, so upgrading would require changing all domains with version 8.1.29, which is almost all of them.
Anyway, as I said, it works for another domain and it has the same version of PHP, so that won’t be a problem for sure.
Forum: Plugins
In reply to: [The Events Calendar] Issue with the publish button when editing a theme.Hello @d0153
I’m so sorry, I haven’t had time to deal with this lately.
Anyway, I have the theme up to date (I have a plugin there that automatically updates everything)
And I found that when editing the event calendar and then publishing, the button was grayed out. However, when re-edited, it is clickable again and grayed out again when clicked.
However, the main thing is what it does on the event calendar page. It will also be grayed out there during publication. However, when I edit it again, it displays the message Something went wrong.
This changeset cannot be further modified. From where you can click through to the editing itself.I really don’t know what to think about it.
Forum: Plugins
In reply to: [Comments - wpDiscuz] Why are comments loading late?Hello @gvectorssupport
OK. Thank you for the quick response