Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
We can adjust the background size property with css but it will distort the image. Have you tried to set the background position to “Center center” instead of the “Top left”?
Best regards,
IsmaelHey stefan,
Thank you for using Enfold.
Yes, you can use the contact form element to create input fields in a row. And if you want to display a message after the user send the form, set the element’s “What should happen once the form gets sent?” to the first option (Display a short message on the same page).
Best regards,
IsmaelAugust 26, 2019 at 2:25 am in reply to: Portfolio element and publication date (can't be changed) #1130802Hey Caiser_Souze,
Thank you for using Enfold.
Are you trying to adjust the publish date? That option works properly on our end — we can select a date in the calendar. Please try to deactivate the plugins temporarily.
Best regards,
IsmaelHi,
Thank you for the update.
The ngg gallery has a default top margin. You can adjust that with the following css code.
.ngg-galleryoverview { margin-top: 0px; }Default value is 40px.
Best regards,
IsmaelAugust 26, 2019 at 2:04 am in reply to: trouble with the_content(); and Advanced Layout Editor #1130798Hi,
Thank you for the update.
We were actually referring to the last return statement but if it works that way, then you can leave it as it is.
Best regards,
IsmaelHi,
Thank you for the update.
You can change the default color of the top bar or header meta on pages with transparent header by prepending the “av_header_transparency” selector to the #header_meta selector. To change the color on scroll, just remove the av_header_transparency and apply a different color.
Best regards,
IsmaelHi,
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelAugust 26, 2019 at 1:45 am in reply to: IS IT POSSIBLE TO MAKE ENFOLD COMPATIBLE WITH YOAST? #1130795Hi,
We replied here: https://kriesi.at/support/topic/problem-with-seo-yoast-and-enfold-theme/#post-1130253
Best regards,
IsmaelHi,
Thank you for the update.
It’s possible that the animation doesn’t start properly on those browsers. Try to add this css code.
.js_active .av-minimum-height .container { opacity: 1; }Please don’t forget to remove the cache.
Best regards,
IsmaelHi,
Thank you for the update.
I’m not really sure what you’re seeing wrong in that screenshot. The content is there. Please note that the user have to click on the last tab title that is visible in the page in order to access the next tabs.
Best regards,
IsmaelHi,
Thank you for the update.
The changes are reflected immediately as soon as we removed the cache. We added two text blocks at the very bottom of the gallery page.
You have to click the “Cancella la cache” button every time you make any changes to the page or the site.
Best regards,
IsmaelAugust 26, 2019 at 1:26 am in reply to: IE 11 and Legacy Browser Animated Images & Forms Not Displaying. #1130790Hi,
Sorry for the delay. You may need to install a third party extractor software like WinRAR to properly open the file. The default archive utility doesn’t seem to recognize that the compressed file is password protected, so it doesn’t ask for it and hence the error.
Best regards,
IsmaelHi,
i still don’t understand what the purpose of wanting that option would be; my curiosity would appreciate an explanation of that, but not necessary.
It sets the header status to 404, so the maintenance and 404 page won’t get crawled or index by the search engine. It was requested by a lot users previously. You can change that behavior using the “avf_404_supress_status_code” filter.
Best regards,
IsmaelAugust 26, 2019 at 1:18 am in reply to: Svg logo full width and full height of header centered above menu #1130787Hi,
Sorry for the delay.
You can adjust the vertical position of the menu container with this.
#header_main_alternate { z-index: 2; top: -25px; }Thank you for the update.
Best regards,
IsmaelHi,
Thank for you the update.
I disagree with the idea that these tools are useless for those who understand SEO.
No one said that the tool is useless and we explicitly stated that the builder is not fully compatible with the plugin. And we also admitted earlier that as of this moment, there are no plans on making the builder fully compatible with the analysis tool.
// https://kriesi.at/support/topic/problem-with-seo-yoast-and-enfold-theme/#post-1119454Thank you for the info. As we’ve said earlier, there are certain limitations to how the analysis detects content in the builder. Unfortunately, there is no plan on making the builder fully compatible with the analysis tool, at least not as of this moment.
However, this doesn’t mean that by using the Advance Layout Builder you won’t be able to structure pages that are fully readable by or optimized for search engines. You can, but unfortunately, without the help of the analysis tool.
Best regards,
IsmaelHi,
Thank you for the update.
The login account above is invalid. Are you sure that the account is the same for “staging1” and “staging4” site?
Best regards,
IsmaelHi,
This is somehow possible with the portfolio grid, masonry or the magazine element because these elements can display actuals posts, so you can sort them by category. Unfortunately, this is not possible with the catalogue element because the items that you add there manually can’t be grouped into categories.
Best regards,
IsmaelHi,
Thank you for the update.
It also loads when the browser is resize. Do you have any plugin that contains a lazy load function? Please try to disable that temporarily. You can also try this script in the functions.php file.
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ var int = window.setInterval(function(){ $(window).trigger('resize'); $(window).trigger('av-content-el-height-changed'); }, 2000); $(window).on('load', function() { setTimeout(clearInterval(int), 1000); }); })(jQuery); </script> <?php }Best regards,
IsmaelAugust 23, 2019 at 8:49 am in reply to: trouble with the_content(); and Advanced Layout Editor #1130245Hi,
I’m not sure how to implement the conditional function you referred to, but it doesn’t seem like that would solve this issue, right?
Actually, it would. In the functions.php file, inside the “exec_sc_only” filter, look for this line.
return true;Wrap it inside conditional functions like so.
if(!is_admin() && is_page(24)) { return true; }That should prevent the filter from executing the shortcodes on the admin page. Replace 24 with the actual ID of the page where you have the search filter. You can also use an array of IDs as value in case you want to enable it on more than one page.
if(!is_admin() && is_page(array(24, 45, 75))) { return true; }Best regards,
IsmaelHi,
Thank you for the update.
Those meta info are related to the page “Layout”. You don’t have to adjust or copy them manually. If you want to copy the content of the page, save it as a template.
Best regards,
IsmaelHi,
Can helper-post-format.php be overridden in child theme?
You can remove or disable the default “avia_link_content_filter” filter and create your own.
remove_filter( 'post-format-link', 'avia_link_content_filter', 10, 1 ); add_filter( 'post-format-link', 'avia_link_content_filter_mod', 10, 1 );" function avia_link_content_filter_mod() { // your own mods here }Just copy the content of the default filter, then do your own modifications.
Best regards,
IsmaelHi,
Thank you for the update.
We modified the value of the is_page function in the filter a bit.
if(is_page(array(22, 991, 994)))Best regards,
IsmaelHi,
Thank you for the update.
We added this code in the functions.php file to re-enable the comment.
add_filter('comments_open', function() { return true; }, 9999);We’re not really sure what overrides that filter or what sets the “comments_open” to false.
Best regards,
IsmaelHey Bernd,
Thank you for using Enfold.
Where are you testing it? The content of the tab section displays fine on iPhone devices in an Edge emulation.
Best regards,
IsmaelHi,
@logancc: Please open a new ticket and post the necessary details in the private field. We’ll check it there.Best regards,
IsmaelHey garyhsueh,
Thank you for using Enfold.
The site is still running on an older version of the the theme, 4.0.7. You have to upgrade it to version 4.5.7 manually via FTP.
// https://kriesi.at/documentation/enfold/install-enfold-theme/#reinstall-or-update-using-ftp
// https://kriesi.at/archives/the-complete-guide-to-updating-enfoldBest regards,
IsmaelAugust 22, 2019 at 5:41 am in reply to: Change tiny up down arrow and vertical line in categories widget pulldowns #1129853Hey webWahine,
Thank you for using Enfold.
That’s the default select element style of the browser or OS, so you can’t change that. You can adjust its style a bit (background, text color, etc) but you can’t replace the icon without adding additional scripts.
Best regards,
IsmaelAugust 22, 2019 at 5:33 am in reply to: Change SliderRevolution on Mobile from Fullsreen to Fullwidth #1129849Hey Bernd,
Thank you for using Enfold.
There is no option for that in the slider. You may need to hide the current slider and display another on mobile view.
Best regards,
IsmaelHey jberg1,
Thank you for using Enfold.
Can you give us a link to the page with the blog posts? Try to edit the helper-post-format.php file and remove line 268.
$current_post['title'] = $link;And this code around line 278:
$current_post['title'] = $link[0];This will prevent the filter from overriding the default title.
Best regards,
IsmaelHi,
Thank you for using Enfold.
There are 3 copies of Enfold in the themes directory not including the child theme. Please delete the older versions, try to re-save the theme options and update the page. You can also set the builder to debug mode so that we can see the shortcodes.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode
Best regards,
Ismael -
AuthorPosts
