Forum Replies Created
-
AuthorPosts
-
April 3, 2019 at 7:24 am in reply to: Font Awesome shopping bag and problems with mobile responsive #1086391
Hi,
Thank you for using Enfold.
You can use the “avf_default_icons” filter in the functions.php file to change the default icon used by the theme. Example:
add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1); function avia_replace_standard_icon($icons) { $icons['cart'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue85a'); return $icons; }
Adjust the icon value with your own custom font.
Related thread: https://kriesi.at/support/topic/menu-left-logo-centered-search-icon-right/#post-1071657
Best regards,
IsmaelHi,
You have this css code in the Quick CSS field or the style.css file, which removes the indicator or underline.
.av_minimal_header .avia-menu-fx { display: none; }
Please remove it and then toggle the Performance > File Compression settings.
Best regards,
IsmaelHi,
Thanks for the update.
That option was transferred inside the page/post editor’s Layout panel. If you can’t that option, try this css code instead.
.single .big-preview.single-big { display: none; }
Best regards,
IsmaelHi,
This feature may not be available anytime soon because it is not a priority at the moment, unfortunately. But you have the option to replace the gallery with an image or content slider on mobile view. Just toggle the elements’ Screen Options to adjust their visibility on different devices or screen sizes.
Best regards,
IsmaelHey JenOnlineSmarties,
Thank you for using Enfold.
This is the same exact issue that was reported on the following thread.
// https://kriesi.at/support/topic/possible-css-rendering-bug-in-4-5-5/#post-1083761
Please follow the provided instructions to fix the issue.
Best regards,
IsmaelHi,
Thanks for the update.
We tried logging in to the site but the credentials seem to be invalid. Please provide a valid user account so that we can inspect the pages. Do you have a test page where we can see the issue? And is there a specific step that we should follow to replicate the problem?
Best regards,
IsmaelApril 3, 2019 at 6:22 am in reply to: Sub-menu on blog is disappear after upgrade to Enfold v4.5.4 #1086362Hi,
Thanks for the update.
Yes, that should be fine. Is it removing the unwanted scroll bar?
Best regards,
IsmaelHi,
Thank you for the clarification.
You have to manually change the heading tag in the config-templatebuilder > aviashortcodes > magazine > magazine.php file. Just look for the following code around line 689.
$titleTag = "h3";
If you want to override the magazine shortcode or put the modification in your child theme, follow this thread.
// https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
Best regards,
IsmaelHi,
You should be able to change the default image size used in the magazine element with the “avf_magazine_settings” filter.
/* magazine thumbnails */ add_filter('avf_magazine_settings', 'avia_magazine_thumbnail', 10, 2); function avia_magazine_thumbnail($atts, $magazine){ $atts['image_size']['small'] = 'medium'; $atts['image_size']['big'] = 'masonry'; return $atts; }
Default thumbnail sizes or values in the image size array are “thumbnail” and “magazine” respectively.
Best regards,
IsmaelApril 3, 2019 at 5:46 am in reply to: Contact Form – After press sent, the message isn't vissible without scroll up #1086356Hey S.,
Thank you for using Enfold.
You have the option to redirect the users to another page instead of displaying a message. Have you tried that? We can adjust the script, so the page scrolls to the the message but that will consume a bit of time and something that we hope to avoid as much as possible. Please try to do a page redirect instead.
Best regards,
IsmaelApril 3, 2019 at 5:42 am in reply to: AMP URL's not recognized by GSC and Nofollow attributes #1086353Hi,
Thank you for using Enfold.
1.) No, there isn’t a quick workaround for that, unfortunately. This feature is not currently included in the list of development priority because the implementation will require major rewrite of the theme structure and markup, so you can’t expect those pages to have an AMP structure anytime soon. You can still however be able to optimize the site without converting the pages to be AMP compatible.
// https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
2.) The theme should automatically add a meta tag to allow robots to index the page or follow a link. Did you disable that somehow? Did you install any SEO plugin?
Best regards,
IsmaelHi,
Yes, this is going to be an issue with fixed backgrounds until the browsers, especially those on mobile devices, fully support the background attachment feature. The background property should be set to “scroll” instead of “fixed” on mobile devices, so this solution should help.
// https://kriesi.at/support/topic/playing-with-new-demos/#post-871865
Best regards,
IsmaelHey kkirchem,
Thank you for using Enfold.
Have you tried using the same description for the image in which you link the vimeo media file? You can add the description as the title of the image in the Media > Library panel.
Best regards,
IsmaelApril 3, 2019 at 5:19 am in reply to: Contact Form – Why it has no setting for default value? #1086347Hey zybersup,
Thank you for using Enfold.
The changes that you’re after will require significant amount of development time and it’s not a priority at the moment. You may need to hire a freelance developer to implement it if it’s really necessary.
Best regards,
IsmaelHi,
Thanks for the update.
You have to set the Blog Layout settings to the last option (Use the advance layout builder (ALB)….) so that you can use the ALB to create the content of the news or blog page.
Best regards,
IsmaelApril 3, 2019 at 5:06 am in reply to: Tab Section – How to left align the Tabs and give ach separate color? #1086341Hi,
Could you give us a screenshot of the area that you’re trying to change? Are you trying to change the background of the whole tab or just the tab title? You can upload the screenshot to imgur or dropbox.
Best regards,
IsmaelHey dynamicdesignsnw,
Thank you for using Enfold.
You have to place the API key in the Enfold > Newsletter > API key field. You will then be able to select a list from the mailchimp signup element. Additional info about mailchimp integration can be found in the documentation.
// https://kriesi.at/documentation/enfold/mailchimp-signup/
Best regards,
IsmaelHey ptolda,
Thank you for using Enfold.
Have you tried toggling the Performance > File Compression settings after the update? The latest version contains a fix for this particular issue, so that shouldn’t be happening.
Best regards,
IsmaelHi,
Thanks for the update.
Are you referring to the droid sans font? It’s loading two versions of the font — the regular and the bold version. (see private field)
Best regards,
IsmaelHi,
Thanks for the update.
We found the issue and notified our devs about it. For now, please modify the config-gutenberg > class-avia-gutenberg.php file. Look for the “handler_wp_admin_bar_menu” function and this code around line 824:
if( ! current_user_can( 'manage_options' ) ) { return; }
Replace the code with the following.
if( ! current_user_can( 'manage_options' ) || is_archive() ) { return; }
Best regards,
IsmaelHi,
Thanks for the update.
The login token has expired and the page requires a password. Please add it in the private field. And provide a screenshot if possible.
Best regards,
IsmaelHi,
Did you delete the API project? This is what we get from the console.
js?v=3.35&callback=av_backend_maps_loaded&key=AIzaSyDs4tOknCXDb8mKmta-A8SfJXeojTSE6Q0:54 Google Maps JavaScript API error: DeletedApiProjectMapError https://developers.google.com/maps/documentation/javascript/error-messages#deleted-api-project-map-error
Please try to generate another API key.
Best regards,
IsmaelHi,
Thank you for using Enfold.
Did you update the theme manually via FTP? Some of files were probably duplicated after the update. You have to remove the theme folder completely before uploading the latest version.
Best regards,
IsmaelHey Pascal,
Thank you for using Enfold.
That is the default layout of the single product page in the theme. If you want to move the widget area at the right side of the content, please follow this modification.
// https://kriesi.at/support/topic/sidebar-rechts-single-page/#post-580220
Best regards,
IsmaelHi,
The error is generated by the CF7 plugin, more specifically its recaptcha option. What is the current version of API key used in the Contact > Integration > reCAPTCHA panel? You may need to upgrade it to v3 if it’s still on v2.
// https://contactform7.com/recaptcha/
Best regards,
IsmaelHey mmsdev,
Thank you for using Enfold.
We don’t really see any layout issue on that page. Would you mind providing a screenshot? You can upload it to imgur or dropbox. And please update the theme to version 4.5.5. This patch contains a fix for shortcodes.
Best regards,
IsmaelHi,
e. If I have 20 or 30 pages all using the same template it’s a huge time drain to go to each page
There is an element called “Page Content” in the builder, allowing you to display the content of another page. You can add that element to multiples pages and only requires you to edit a single page when update is necessary. Try to use that instead of the templates.
Best regards,
IsmaelApril 2, 2019 at 1:30 am in reply to: Mailchimp widget in footer not showing up on blog post pages #1085773Hi,
We would like to apologize for the late response.
A fix has been included in the latest version of the theme. Please upgrade to version 4.5.5.
Related threads:
// https://kriesi.at/support/topic/enfold-mailchimp-subscription-widget-not-working
// https://kriesi.at/support/topic/mailchimp-widget-reply-to-mike/Best regards,
IsmaelHi,
You can add the filter in the functions.php file or remove the filter directly from the functions-enfold.php file as you described. They’re technically the same but we recommend using the filter.
Best regards,
IsmaelHi,
Thanks for the update.
3.) Looks like the animation is not starting. Try to add this css code to force the timeline content to display even when the animation fails.
@media only screen and (max-width: 767px) { .avia_transform .avia-timeline-vertical.avia-timeline-animate .milestone_icon { opacity: 1; -webkit-transform: scale(01); -ms-transform: scale(1); transform: scale(1); } .avia_transform.avia_desktop .av-animated-generic { opacity: 1; } }
4.) A temporary solution has been provided in the following thread.
// https://kriesi.at/support/topic/possible-css-rendering-bug-in-4-5-5/#post-1083761
5.) Did you move the language switcher to the top of the header? You can try this css code to prevent them from overlapping the logo.
@media only screen and (max-width: 989px) and (min-width: 768px) { .responsive .logo img { margin: 0; height: 60px; top: 10px; } }
Best regards,
Ismael -
AuthorPosts