Forum Replies Created
-
AuthorPosts
-
Hey Theqie,
Thank you for the inquiry.
You can adjust the default position of the cart counter by using this css code.
#top .av-cart-counter { left: 0; }
Default “left” property value is 54%.
Best regards,
IsmaelHi,
Thank you for the update.
We added a translation for a media file called “Melbcity”. You can do that in the Media Translation panel. (see private field)
Best regards,
IsmaelHi,
Thank you for the update.
We created a test page (see private field) and added the layer sliders in it. The default slider from the theme works as expected — others don’t, but when we checked the custom sliders there’s actually no image or content present in the layers. Did you transfer the site or the database? It’s possible that the database entries for the sliders have been corrupted. Worst case scenario is you will have to re-create those sliders from scratch.
Best regards,
IsmaelHi,
Awesome! Glad that @Guenni007 helped you out. Please don’t hesitate to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
Are you referring to the placeholder of the input fields? If so, use this css code to change its style.
.responsive #top ::placeholder { color: red; opacity: 1; font-family: 'Courier', sans-serif; }
Best regards,
IsmaelHi,
Thank you for the inquiry.
It is possible to move the flags inside the mobile menu, but it will require a lot of modification. What you can do is decrease the size of the logo in order to make room for the switcher.
@media only screen and (max-width: 767px) { .responsive .logo img { max-height: 80px; max-width: 174px; } }
Best regards,
IsmaelHi,
Thank you for the update.
You can manually select a specific height for the header in the Enfold > Header panel. Set the Header Size to the third option (custom pixel value), then select the height value in the Header Custom Height settings. Let us know if that’s what you’re looking for.
Best regards,
IsmaelHey madhukaimal,
Thank you for the inquiry.
The site contains a very outdated version of the theme, v3.6.1. This version is not compatible with the latest version of WordPress and PHP. You have to upgrade the theme to v4.6.2 manually via FTP.
// https://kriesi.at/documentation/enfold/theme-update/
// https://kriesi.at/archives/the-complete-guide-to-updating-enfoldBest regards,
IsmaelHi,
Thank you for the update.
If you want to move the sidebar to the right edge of the container, use this css code.
.sidebar.sidebar_right .inner_sidebar { margin-left: 50px; margin-right: 50px; } .sidebar.sidebar_right.alpha.units { right: -50px !important; }
Don’t forget to toggle the Performance > File Compression settings afterwards.
Best regards,
IsmaelHi,
Thank you for the update.
We can’t reproduce the issue on our end. The image doesn’t overlap or cover the title. Can you provide a screenshot of the issue? You can use loom to create a screen record.
Best regards,
IsmaelHi,
Thank you for the update.
Could you give us a screenshot of the layout that you in mind? Have you tried using the portfolio items plus the Masonry element? You can set the images’ orientation by adding the “landscape” or “portrait” tags to the portfolio items, or add both to display an extra large image.
Best regards,
IsmaelHey melanie_erfrischt,
Thank you for using Enfold.
You have to add the product description manually using an element from the builder. All default elements from the product template such as the product description will not be included in the page once the builder is activated. You have to switch to the default editor if you want those elements to display back. If you need to continue with the builder, look for the “Plugin Additions” panel. It contains elements that are related to the product post type.
Best regards,
IsmaelHey designyvr,
Thank you for the inquiry.
You can use this snippet in the functions.php file to remove the flag switcher and add the default language switcher in the header.
add_action('after_setup_theme','avia_remove_main_menu_flags'); function avia_remove_main_menu_flags(){ remove_filter( 'wp_nav_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_filter( 'avf_fallback_menu_items', 'avia_append_lang_flags', 20, 2 ); remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10); } add_action('ava_main_header', 'ava_icl_language_selector'); function ava_icl_language_selector(){ do_action('icl_language_selector'); }
You can then configure the flag options in the WPML panel.
Related thread: https://kriesi.at/support/topic/wpml-language-switcher-still-not-working/
Best regards,
IsmaelHi,
Thank you for the update.
Yes, there is a function called “remove_image_size”, which can be used to remove existing thumbnails.
// https://developer.wordpress.org/reference/functions/remove_image_size/
Best regards,
IsmaelHi,
Thank you for the update.
We can’t access the page because it is password protected and the login credentials above are invalid. Please check the details carefully.
Best regards,
IsmaelOctober 1, 2019 at 1:33 am in reply to: Enfold Probleme > Verschiedene Editoren >WPML > Plug Ins #1143531Hi,
Thank you for the update.
1.) You may need to upgrade to the latest version of the theme, v4.6.2. That should fix the issue with the advance layout builder.
2.) Did you configure the theme options of the next language? Please note that the theme options of one language is separate from the other.
3.) Yes, you can disable the plugins if they are not being used. It depends on the site’s requirement.
4.) There is a list of plugins that we recommend but it hasn’t been updated for quite a while. You can find the list here: https://kriesi.at/support/topic/recommended-plugins/
5.) Unfortunately,we don’t provide support for third party plugins as stated on our support policy. Please contact the plugin author for additional help.
6.) Yes, you can now update to the latest version of the theme. Create a backup or a restore point first just in case.
Please note that we don’t entertain multiple questions on a single thread, especially this many. In the future, we recommend opening up a single thread for each of your inquiry. Thank you for understanding.
Best regards,
IsmaelHi,
Sorry for the delay. Could you provide a screencast of the issue? The header of the mcpi site seems to be working properly when we check.
Best regards,
IsmaelSeptember 30, 2019 at 10:47 am in reply to: Product Schema Entirely Missing For Custom Products #1143279Hey THP,
Thank you for the inquiry.
The JSON+LD schema markup should be added to the product even when it’s set to use the advance layout builder, but it’s not working in your installation. Please try this snippet in the functions.php file.
add_action('wp_footer', function() { if( ! avia_woocommerce_version_check( '3.0.0') ) { return; } if( is_product() && get_post_meta( get_the_ID(), '_aviaLayoutBuilderCleanData', true ) ) { WC()->structured_data->output_structured_data(); } }, 10);
We’ll notify the dev team about the issue. You can also use the following plugin temporarily.
// https://wordpress.org/plugins/wpsso/
// https://wordpress.org/plugins/wpsso-schema-json-ld/Best regards,
IsmaelHi,
Thank you for the update.
Is there a test page where we can see the issue? The image element itself has a caption overlay option by default, but what you’re doing should work as well. Just add a negative top margin to the text block to pull it upwards until it overlaps the image. You may need to set its “position” property to “relative” and give it a higher “z-index”.
Best regards,
IsmaelHey AusWeb,
Thank you for the inquiry.
According to a DNS checker, the domain name is hosted on the name server “melbourneit”. Is the site on a shared server?
We tested the site on GTmetrix’ testing tool and it performed well though there are still a few things that needs improvement. (see private field)
Best regards,
IsmaelHi,
Thank you for the inquiry.
This is possible, but you have to move the secondary menu to the left side of the header. Or try this css code.
#header_meta #menu-item-search { position: absolute; right: 500px; }
Best regards,
IsmaelSeptember 30, 2019 at 6:16 am in reply to: Enfold form submits but form hidden on success page #1143226Hi,
Thank you for the update.
I am using the form framework in a new template file.
What do you mean by that exactly? Can you give us a screenshot? Please use imgur or dropbox.
@Gabster: Please create another thread and post the necessary details in the private field. We’ll check it there.Best regards,
IsmaelHi,
Thank you for the update.
We are able to reproduce the issue on our installation, but we can’t figure out why the “av-click-to-play-overlay” is being rendered outside the AJAX preview. We’ll forward the issue to the dev team. Please wait for their response. For now, please try to embed the video using an iframe tag.
// https://www.w3schools.com/html/html_youtube.asp
Best regards,
IsmaelHi,
Thank you for the update.
There are a lot of template modifications (header.php, footer.php, includes > loop-page.php) in the child theme folder. Please make sure that those files are up to date. Or disable them temporarily. The background was added directly in the body tag. You will find this code in the child theme’s header.php file.
<body id="top" <?php body_class($style." ".$avia_config['font_stack']." ".$blank." ".$sidebar_styling); avia_markup_helper(array('context' => 'body')); ?> style="background:url(<?php echo get_the_post_thumbnail_url();?>) no-repeat center top transparent;background-size:100% 370px;">
Best regards,
IsmaelHi,
Thank you for the update.
Most of the requests and errors that you presented here have been reported, fixed or added in the latest version. We added the current active link in the private field. Please download it and update the current installation.
Best regards,
IsmaelHi,
Thank you for the update.
The map doesn’t display on initial load because the cookies have not been accepted yet. Users have to accept the cookies first, reload the page and only then that they will be able to see the map or any elements using cookies. In the latest version, there will an option where you can choose to auto reload the page once the user accepted the cookies.
Best regards,
IsmaelSeptember 30, 2019 at 4:48 am in reply to: Enfold – with the Visual Artist Demo files – two small issues #1143212Hi,
Sorry for the delay. We added the css code in the Quick CSS field again. It did fix the issue and it’s supposed to disable the animation completely, so I’m not sure why you see an intermittent loading effect. We don’t see that effect on our end. All the items in the masonry appears on load without animating. Please try to test it on incognito mode.
Best regards,
IsmaelSeptember 30, 2019 at 4:41 am in reply to: Show excerpt in all magazine blog list with "Read More" link #1143210Hi,
You’re most welcome. Now, to add the read more link, add this code at the very end of last modification.
$excerpt .= '<div class="read-more-link"><a href="'.get_the_permalink($entry->ID).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"></span></a></div>';
That should append the the read more link after the excerpt.
Best regards,
IsmaelHi,
You’re welcome. The site looks good even on mobile view. You didn’t overuse the “overlap” effect and it works pretty well.
Best regards,
IsmaelHi,
Thank you for the update.
We are referring to the “avf_font_display” filter as you can see in the example above. It’s now included in the theme, so you can use that to change the font-display property — default value is “auto”.
// https://css-tricks.com/almanac/properties/f/font-display/
We don’t see any italic fonts when we checked the site. The font is set to Roboto. Is it working properly now?
Best regards,
Ismael -
AuthorPosts