Forum Replies Created
-
AuthorPosts
-
Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeNovember 5, 2023 at 1:42 pm in reply to: Sidebar on page is displayed at the end before the footer #1424721Hi,
Thank you for your patience, when I check your page I see a color section that I assume is the “banner” that you want the sidebar to be after, then I see your content and sidebar.
So this seems to fore fill your original question, I’m not sure that I understand what you wish to achieve next, please explain further and perhaps a screenshot would help.Best regards,
MikeHi,
Thank you for the link to your site and the screenshot, I couldn’t find the exact path to your “kundenberatung23.jpg” image, so I tested with the image I could find linked below.
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top.home #full_slider_1::before { content: ""; position: absolute; top: 10%; right: 10%; width: 181px; height: 304px; background-image: url('kundenberatung23.jpg'); background-size: cover; z-index: 999; }
and change the image url to the full path of the correct image, please see my screenshot of the expected results below.
If you need further assistance please include an admin login in the Private Content area so we can be of more help.Best regards,
MikeNovember 5, 2023 at 12:52 pm in reply to: Show a default search field instead of search icon #1424719Hey Silje,
Thank you for the link to your site, does your ‘FiboSearch’ plugin offer a shortcode to display the search field? If so you could add a header widget area for it, please see our documentation here. Another option mat be to add the ‘FiboSearch’ shortcode as menu item, in the navigation label.
Then to hide the default search icon you can disable it at Enfold Theme Options ▸ Main Menu ▸ General ▸ Append search icon to main menuBest regards,
MikeNovember 5, 2023 at 12:33 pm in reply to: Gallery issue with “open the images in a new browser/window tab” #1424718Hi,
Thank you for your patience, when I check your test page the images open in a new tab and not in the “lightbox” is this by intention? I believe that one of the following snippets will help, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function avia_change_gallery_thumbnail_link($link, $attachment, $atts, $meta){ $link = wp_get_attachment_image_src($attachment->ID, "full"); return $link; } add_filter('avf_avia_builder_gallery_image_link', 'avia_change_gallery_thumbnail_link', 10, 4);
if that one doesn’t help, please remove it and try this one:
function change_lightbox_size() { return "full"; } add_filter('avf_avia_builder_helper_lightbox_size','change_lightbox_size', 10);
if neither of these help, please include an admin login in the Private Content area so we can examine further.
Best regards,
MikeHey rqn,
If you are using the scrinking header on scroll option in the theme, then on scroll the class header-scrolled is added, so if you add a custom class like custom-image then you should be able to use this css:#header.header-scrolled .custom-image img { height: 200px !important; }
assuming that 200px is the height you want it after scroll.
You may need to adjust this for your situation, if you need further help please link to your page so we can examine.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Try this CSS instead, in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .entry-content a { text-decoration: underline; color: #a8ca6d; }
Best regards,
MikeHi,
Try changing the screen size number down to your device size, I had max-width: 1440px but perhaps that is also your “desktop” size.
Otherwise try checking your screen resolution and letting us know what sizes you want this for.Best regards,
MikeHi,
Ok, all links, Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top a { text-decoration: underline; color: #a8ca6d; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Thank you for the link to your site, but I get the error:
FEHLER: Zu viele fehlgeschlagene Anmeldeversuche. Bitte versuche es in 24 Stunden noch einmal.
so I can not login, nonetheless from your screenshot and your info above, please note that touch devices do not have a “hover” attribute, so to remove the “white” overlay on touch devices, Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 1440px) { .touch-device #top .av-hover-overlay-active .av-masonry-image-container { opacity: 1; } }
as for the click issue, I believe you have a function or plugin conflict, Try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause. Otherwise try disabling all of your customization scripts and see if that helps.
If not Please include a working admin login in the Private Content area.Best regards,
MikeHi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:a[href*="ecosia"] { text-decoration: underline; color: green; }
After applying the css, please clear your browser cache and check.
If this doesn’t work for you please create a test page with the different variations of links for “ecosia” so we can examine.Best regards,
MikeNovember 4, 2023 at 9:20 pm in reply to: Link post author to specific portfolio-item / show author in Post grid #1424690Hi, thank you for your patience, so as I understand the “author” link for the blog posts in the grid and the single post pages work correctly, but you wouls like to redirect these to a “portfolio” page. These are different post types are are not linked in the WordPress database, the best way to achieve this would be to to use a plugin like 301 Redirects, please give this a try.
Best regards,
MikeNovember 4, 2023 at 8:37 pm in reply to: OSM Leaflet Map: only one marker pop-up displaying #1424681Hi,
Thanks for the feedback, and sorry for the confusion, typically this works for all of our elements, I have reported this to our Dev Team and will reply when I hear back, thanks for your patience.Best regards,
MikeNovember 4, 2023 at 7:58 pm in reply to: How to make blocks to full width of the screen in WooCommerce in the Enfold #1424679Hey AlexCryo,
Thank you for your patience, the width of 1410px is set by your layout at Enfold Theme Options ▸ General Layout ▸ Dimensions ▸ Maximum Container width
you can set this to 100% or if you only want this for your shop pages you can try this css:.responsive #top.archive.woocommerce .container { max-width: 100%; padding: 0; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Thanks for the link to your page, but I’m not sure that I understand what you mean by “criss-cross” when I sort by price items are shown from zero to high price on the page, perhaps a screenshot of the issue would help.Best regards,
MikeHi,
please include a login to your webhost cPanel, we can’t check this from your WordPress site.Best regards,
MikeHi,
Glad Ismael could help, please let us know if you need further assistance.Best regards,
MikeHi,
It looks like the PHP ZipArchive Extension is not enabled, please ask your webhost to enable.Best regards,
MikeHey daves1997,
Thank you for the link to your site, I viewed your page but I’m not sure that I understand the problem, please explain further. Perhaps a screenshot or video would help.Best regards,
MikeHi,
Yes, iframes are a bad idea, you should not use these, add your images with image elements.Best regards,
MikeHi,
Please an admin login to your site in the Private Content area and a link to the theme file you are using.Best regards,
MikeHi,
Typically this error occurs when the full theme zip file is used instead of the installable WP version from your Theme Forest account is used.
Please ensure that you use the installable WP version. Try extracting your theme file and if you see another zip file inside named “enfold.zip” try installing that file instead.Best regards,
MikeHey Sebastian,
Thank you for your patience, as I understand your situation I believe you are referring to that your sections Bronze, Silber, Gold should be color sections.
Please give this a try, if you have trouble please link to to test page that we can examine.Best regards,
MikeNovember 4, 2023 at 5:47 pm in reply to: Relates to https://kriesi.at/support/topic/duplicated-burger-icon-and-more-paddi #1424653Hi,
Thank you for your patience, I just found this thread, nonetheless try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (min-width: 772px) in (max-width: 1023px) { .html_header_top.html_header_sticky #top #wrap_all #main { padding-top: 150px; } }
After applying the css, please clear your browser cache and check.
Best regards,
Mike -
AuthorPosts