CrestaProject
Forum Replies Created
-
Hi @lazzaro95
go in your WordPress Dashboard under “Appearance-> Customize-> Additional CSS” and paste this code:
body.single-product .site-branding {
background: rgba(0, 0, 0, 0.4);
}This will apply a darker opacity to the header of single product pages.
You can change the background color as you like or change the last value (0.4) to increase/decrease the opacity of the color.Forum: Themes and Templates
In reply to: [Elementare] Where to find input field searchHi @haarbollen
this is a javascript code that will insert autofocus into the search field when it appears.(function($) { $(document).ready(function() { $('.search-button').click(function() { setTimeout(() => { $('.search-container .search-field').focus(); }, 200); }); }); })(jQuery);
There are various plugins that allow you to add javascript code into your website, you can use whichever you prefer.
Thanks
Forum: Themes and Templates
In reply to: [Elementare] Where to find input field search@haarbollen
If you want to add autofocus to the search button when it appears, then I can do that in the next theme update.
I’ll put it on the todolist ??Forum: Themes and Templates
In reply to: [Elementare] Where to find input field searchHi @haarbollen
get_search_form() is a WordPress function (you can read more about it here).
This function takes care of printing the HTML code for the search form.Forum: Themes and Templates
In reply to: [Elementare] Where to find input field searchHi @haarbollen,
are you looking for the CSS path or do you want to know in which file the HTML code that generates the file is located?
If you’re looking for the CSS selector, it’s this one:.search-container input[type="search"]:focus
If you want to know which file the HTML code is in, here it is:
/themes/elementare/footer.php from the line 21 to the line 23
Thanks
Forum: Plugins
In reply to: [Cresta Social Share Counter] Twitter new icon@vivipapaliaga
Ok perfect, I can confirm that I can see it correctly now.Forum: Plugins
In reply to: [Cresta Social Share Counter] Twitter new iconHi @vivipapaliaga
I tried manually editing the HTML of the page to replace the Twitter icon with the X icon and everything seems ok.
https://prnt.sc/-0jbQKk75hXUThe only thing I can think of is a cache issue.
Can you activate the X icon and leave it active for me to see?
Thank youForum: Plugins
In reply to: [Cresta Social Share Counter] Twitter new iconHi?@vivipapaliaga,
It seems as if it is missing the CSS style of the icon.Do you have any caching plugins installed?
If you try to visit the page by adding a parameter to the URL (example: https://aegeanoutdoors.com/faq/?test ) do you get the same result?Forum: Plugins
In reply to: [Cresta Social Share Counter] Twitter new iconHi @vivipapaliaga,
can you send me a screenshot of what you see when you activate the X icon?
Forum: Plugins
In reply to: [Attesa Extra] multisite deploymentHi @m3mm ,
Attesa PRO works in the same way as Attesa Extra.
Forum: Plugins
In reply to: [Attesa Extra] multisite deploymentHi @m3mm ,
currently no, the plugin does not support multinetwork (network active).
You can still install it in a multisite and activate it in individual subdomains.Forum: Plugins
In reply to: [Cresta Social Share Counter] PHP 8.1 deprecated noticeHi @salzano
thanks for the report, we will fix the problem in the next plugin update.
Forum: Themes and Templates
In reply to: [Croccante] svg is doing whaaatttt?Hi @website-rob
The hidden svgs that appear immediately after the body are not part of the theme.
They are generated by WordPress itself since version 5.9, they should be part of the extra styles for Gutenberg.If you want to remove them, you can use a PHP snippet as shown on this page https://github.com/WordPress/gutenberg/issues/36834#issuecomment-1048923664
Forum: Plugins
In reply to: [Cresta Help Chat] It doesn’t work on my home page@marcellamarraro glad to help you ??
Forum: Plugins
In reply to: [Cresta Help Chat] It doesn’t work on my home page@marcellamarraro you’re right, on mobile the home page doesn’t seem to work.
It’s most likely a cache issue. If you use a caching plugin on your site, try clearing your cache and retrying in incognito mode.