Forum Replies Created
-
AuthorPosts
-
Hello Bernd!
Thank you for the update.
The filter should have not removed the excerpt completely. Did you remove or disable the previous filter before adding this one? Please post the site details in the private field including an admin account so that we could check the issue properly.
Best regards,
IsmaelHey Telmore,
Thank you for the inquiry.
We can use the avf_ajax_search_label_names filter to change the post type title. Usage examples can be found here:
// https://kriesi.at/support/topic/search-bar-8/#post-1003538
// https://kriesi.at/support/topic/change-products-wording-on-ajax-search-menu/#post-866050Best regards,
IsmaelJuly 19, 2021 at 5:28 am in reply to: Enfold Theme and the Publish Press Capabilities plugin #1310670Hi,
Alright. We will keep the thread open and wait for the info. However, please note that we do not provide support for third party plugins as stated on our support policy. We will try to help as much as possible, but please keep in touch with the plugin authors for additional assistance.
Best regards,
IsmaelJuly 19, 2021 at 5:24 am in reply to: Creating vertical space between menu item and first sub-menu item #1310669Hi,
Thank you for the inquiry.
Would you mind providing a link to the site so that we can check it? We may need to actually see the sub menu in order to better understand the issue and provide a possible solution.
Best regards,
IsmaelHey whdsolutions,
Thank you for the inquiry.
1.) According to the screenshot, lighthouse is suggesting adding the preload attribute to the link tags to prioritize the listed files. Are you loading a custom font with a plugin?
2.) How did you add those images? We may need to check the site in order to understand the issue. Please provide the site URL in the private field.
Best regards,
IsmaelHey grendelica,
Thank you for the inquiry.
You may need to manually edit the taxonomy-portfolio_entries.php file directly and embed the video there. The term description can be found around line 24.
<div class="category-term-description"> <?php echo term_description(); ?></div>Best regards,
IsmaelHey charliestravels,
Thank you for the inquiry.
The site and the video loaded quite fast on our end. This is on initial load without cache. Where are you testing the page or which tool are you using to test the site speed?
Best regards,
IsmaelHi,
Thank you for the info.
Did you try the suggestion about the Default Cookie Behavior in the previous thread? This should allow all cookies on page load but users will still have the option to disable or enable them via the privacy buttons or the privacy modal popup window if it is enabled.
Best regards,
IsmaelHi,
Thank you for the update.
The css code that you posted above should work on webkit browsers such as Chrome or Safari. Which browser are you using? For other browsers, you could try this new css property.
// https://css-tricks.com/almanac/properties/s/scrollbar-color/
Best regards,
IsmaelHi,
The layout of archive (tag and category) pages are default templates from the shop plugin. The theme just adds the parallax option to the category, so what you are requesting here are actually custom modifications, which are beyond the scope of support. The shortcode [expand title=”Leggi di più”] is also not from theme and we do not know where it come from or what it does.
We have already provided the starting code and changes in the previous thread and recommended some other modifications above. Please hire a freelance developer to extend it or contact our partner, Codeable for further modifications.
Best regards,
IsmaelJuly 18, 2021 at 4:01 pm in reply to: Possibility to remove 'closed' in URL-Parameter for active toggles e.g.? #1310604Hi,
Yes, we could place a copy of the toggle.js script in the child theme directory but you have to deregister the original script first, then register or enqueue it back. Examples can be found in the following threads.
// https://kriesi.at/support/topic/tabs-select-on-hover/#post-1307497
// https://kriesi.at/support/topic/google-map-marker-size-increase/#post-1308434Best regards,
IsmaelHi,
Did you change back the language URL format to URL parameter?
// https://wpml.org/documentation/getting-started-guide/language-setup/language-url-options
We may have to access the site in order to check the issue properly.
Best regards,
IsmaelHi,
We should also remove the inline right padding on mobile view to center align the photo. Please replace the css code with the following.
.mobile-responsive .flex_column { margin-left: 0 !important; padding-left: 0 !important; padding-right: 0 !important; }Best regards,
IsmaelJuly 18, 2021 at 3:43 pm in reply to: Enfold contact form includes the URL of the page it is sent from #1310600Hi,
@joax: You need to replace this line within the filter or the snippet above.$message .= "Page: ".get_the_title($post->ID);Try to replace it with this code instead.
$message .= "Sent from: " . get_the_title($post->ID);Best regards,
IsmaelHi,
Sorry for the delay. Would you mind posting the site URL or the page with the contact form so that we could check it directly? Did you enable the spam protection? Please place the site URL in the private field.
Best regards,
IsmaelHey Media-click,
Thank you for the inquiry.
You can try this script in the functions.php file to append a new overlay container to the columns with links, and set it to only display on hover.
// add overlay to columns function ava_custom_script_mod_column_overlay() { ?> <script> (function($) { $(".avia-link-column").append("<div class='avia-link-column-overlay'></div>"); $(".avia-link-column").mouseenter(function() { $(this).find(".avia-link-column-overlay").stop().animate({ opacity: 1, }); }).mouseleave(function() { $(this).find(".avia-link-column-overlay").stop().animate({ opacity: 0, }); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script_mod_column_overlay', 10000);You should also add this css code to adjust the style of the overlay.
.avia-link-column-overlay { opacity: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); position: absolute; top: 0; left: 0; }Best regards,
IsmaelJuly 14, 2021 at 2:42 pm in reply to: Horizontal Gallery Links Only Opening On Double Clicks #1310122Hey samebluesky,
Thank you for the inquiry.
Looks like you have added the images in a horizontal gallery. The first click activates the slide or item and only after can you visit the actual link. Have you tried using an image element instead?
Best regards,
IsmaelHey Knutnik,
Please continue here: https://kriesi.at/support/topic/full-width-hero-slider-text-not-affected-by-css-2/
Best regards,
IsmaelHey Knutnik!
Thank you for the inquiry.
You can actually adjust the style of the slider caption and title in the Enfold > Advanced Styling panel. Look for the slider elements in the Misc list.
Regards,
IsmaelHey Bettina,
Thank you for the inquiry.
The query parameter lang should go after the anchor, so the correct URL should be..
https://site.co.at/#nonmag?lang=enBest regards,
IsmaelHey Parapluie-Communications,
Thank you for the inquiry.
You can apply the blue background to the color section directly, then add the hero image using the Image element inside the color section. You can then pull the image downwards with custom css or by placing it inside a column with a negative bottom margin. You may need to set a maximum height to the color section as well to get the image ioverflow effect.
Best regards,
IsmaelJuly 14, 2021 at 11:25 am in reply to: Possibility to remove 'closed' in URL-Parameter for active toggles e.g.? #1310097Hey Jillian,
Thank you for the inquiry.
This is possible but you have to modify the enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.js script file directly and remove this code around line 82.
location.replace(thisheading.data('fake-id') + "-closed");Best regards,
IsmaelHey ineke_vg,
Thank you for the inquiry.
The auto updater in that version is now deprecated, so it will no longer work. You will have to download the theme from your account and upload it to the server manually via FTP. For more info, please check the following documentation.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelJuly 14, 2021 at 9:21 am in reply to: New Google Track codes not compatible with Cookie Modal #1310082Hey Thomas,
Thank you for the inquiry.
The analytics script is working as expected when we visited the site. As you can see in the screenshot below, the script initiates a post request automatically on page load.
Screenshot: https://postimg.cc/CBYD3707
This has been taken care of or fixed on version 4.8.3.
- added: support for new Google 4 Analytics Tracking Codes G-XXXXX// https://kriesi.at/documentation/enfold/changelog/
Best regards,
IsmaelHey mirotck,
Thank you for the inquiry.
The size of the images in the portfolio grid are not the same, which is why the items are not aligned. To keep the grid consistent, you have to make sure that the images have the same size and aspect ratio. You could also select a specific size or thumbnail in the Styling > Grid Settings > Portfolio Grid Image Size settings, but thumbnails may still vary in width and height, so this may not work as expected.
Best regards,
IsmaelJuly 14, 2021 at 9:01 am in reply to: NextGEN´s lightbox together with Enfold´s cookie consent #1310080Hey frankeee,
Thank you for the inquiry.
You will have to keep the default lightbox enabled if you are using the privacy option or the cookie consent bar. The privacy option relies on the default lightbox to open the privacy modal popup window.
Best regards,
IsmaelHey Rose_Porta,
Thank you for the inquiry.
We cannot reproduce the issue on our end but we found an error in the browser console, which may or may not be related to the issue. Please check the screenshot below.
Screenshot: https://postimg.cc/cvT9Hv9d
This is the error:
Cannot resolve parent frame. Use fallback values Interframe.js:32 k Interframe.js:32 o index.js:412Do you have any idea which script or plugin generates this error?
Best regards,
IsmaelHey Susanne,
Thank you for the inquiry.
You can use this css code to keep the title from overflowing outside the item container.
#wcfmmp-stores-wrap ul.wcfmmp-store-wrap li .store-footer .store-data-container { width: calc(100% - 30px); padding: 55px 0 0 0; }And this css code to align the buttons in the item footer.
#wcfmmp-stores-wrap ul.wcfmmp-store-wrap li.coloum-3 p.store-enquiry { right: 150px; top: 208px; }Unfortunately, we do not understand what you would like to change in number 3.
Best regards,
IsmaelJuly 14, 2021 at 8:33 am in reply to: Error when trying to edit page with toggle element after 4.8.2 update #1310076Hi,
@enoversum: They might have modified the accordion shortcode file in the child theme. Please make sure that the modified file contains the updated content.// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
If you have further questions, please feel free to open another thread. We will close this one for now.
Have a nice day.
Best regards,
IsmaelHi,
A lot of the users are using the Ubermenu (https://wpmegamenu.com/) plugin but it is not free, so you may want to try plugins from the WordPress library first.
// https://wordpress.org/plugins/tags/megamenu/
Best regards,
Ismael -
AuthorPosts
