Forum Replies Created
-
AuthorPosts
-
Hi,
Sorry for the delay. Try to add this css code.
.av-masonry-image-container { -webkit-transition: none; transition: none; }And try to disable the transition property in the previous css code.
.av-masonry-entry { opacity: 1; visibility: visible; -webkit-transition: none; transition: none; }Best regards,
IsmaelHi,
Thank you for the update.
The Screen Options > Heading Font Size values override the flexible size option, so you should not define those values if you want to retain the flexible sizing.
Best regards,
IsmaelHi,
The password is incorrect. Can you edit it a bit? Please remove the comma at the very start.
Status: Check your login credentials. The entered password starts or ends with a space character.
Thank you for the update.
Best regards,
IsmaelHi,
Thank you for the update.
I assume all these changes were made by you. Am I correct?
We didn’t modify the header.php or the functions.php. We just updated the header.php file because based on experience users usually forget to update the template files in the child theme after the upgrade. We didn’t do anything else. And more often than not this helps fix some issues.
Let us know if we can close the thread.
Best regards,
IsmaelHi,
Do you have a staging site? We don’t want to test it on a running or live website.
Best regards,
IsmaelAugust 1, 2019 at 10:42 am in reply to: Strange behaviour when loading pages with masonry grid #1123833Hi,
Thank you for the update.
Yes, limiting the items or enabling the pagination will definitely help because the page will load faster. And consider optimizing the images to further decrease the load time.
// https://kriesi.at/archives/4-key-wordpress-image-optimization-tips
// https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslowBest regards,
IsmaelHi,
Yes, you have to switch to that option for every gallery because the script relies on the masonry content or excerpt. It applies the value of the content to the title attribute of the masonry link. The new value of the title attribute is then used by the lightbox script.
Best regards,
IsmaelHi,
Did you try the suggestion above? Please increase the max_execution_time limit and give us a link to the PHP info.
Do you see any errors once the upload hangs?
Best regards,
IsmaelHi,
Thank you for the update.
You can use this css code to adjust the size of the indicator or the plus icon.
.html_av-submenu-hidden li a .av-submenu-indicator { font-size: 30px; }Please don’t forget to toggle the Performance > File Compression settings if it’s enabled.
Best regards,
IsmaelHi,
You can add a gallery or a slider for each portfolio item. Once the portfolio items are ready, edit the portfolio or the “hidrochild” page, add the Portfolio Grid element and set the “Link Handling” settings to the second option (Open a preview of the entry (known as AJAX Portfolio)).
Best regards,
IsmaelHi,
Thank you for the info.
That’s a pretty good machine. We haven’t really tested how much content can be added before the editor becomes slow, mainly because we don’t see the need of adding that many content in any page. How regular do you update the page anyway? Our recommendation is to limit the content in any single page and try to optimize the images.
// https://kriesi.at/archives/4-key-wordpress-image-optimization-tips
Have a nice day.
Best regards,
IsmaelHi,
We just copied the latest version from the parent theme and place it in the child theme’s lang folder. You need to use the “avia_framework” text domain because the strings that you’re trying to translate belongs to it. The underscores in the text domain name may not be in accordance with the I18n standards but it’s still going to work. If you want to use POEdit, try to manually open the PO file in the lang folder, translate the strings, then compile the MO file.
Best regards,
IsmaelHey!
Sorry about that. The new option is available in the beta version. Please check the private field. You may need an extractor software like WinRAR for Windows or something else for Mac.
Cheers!
IsmaelHi,
Thank you for the update.
The srcset feature that we are planning to add in the theme is basically the same as what the plugin is doing. It will apply the srcset and sizes attributes to the image elements, so you probably don’t have to use that plugin once the new option is available.
Best regards,
IsmaelAugust 1, 2019 at 9:32 am in reply to: LayerSlider rendering differently in safari, chrome and firefox #1123812Hi,
Thank you for the update.
We added a unique class attribute to the text layers called “ls-text-block” and applied the following css code override the dynamic css properties that the slider is applying to the layers.
.ls-text-block { width: auto !important; height: auto !important; }Please delete cache before you check the page.
Best regards,
IsmaelAugust 1, 2019 at 9:11 am in reply to: How to display parent page title on postslider on homepage? #1123809Hi,
Thank you for the update.
You should be able get the category using the “get_the_terms” function. Usage examples can be found in the documentation.
// https://developer.wordpress.org/reference/functions/get_the_terms/
In your case, you can try this:
$cats = get_the_terms( get_the_ID(), 'category' ); $output .= "<div class='slide-entry-excerpt entry-content' $markup>".$excerpt."</div><div>".$cats[0]->name."</div>";Best regards,
IsmaelHi,
Thank you for the update.
– There is no option for that by default but it’s possible with some modification. Unfortunately, we can’t help you with that because it’s outside the scope of support.
– The whole image can be fully visible inside the slider area but you will have to distort them a bit. I don’t think you’d want that. You can try this css code.
.avia-fullscreen-slider .avia-slideshow > ul > li { background-size: contain; background-position: center center; background-repeat: no-repeat; }You can also try adjusting the background-size value to 100%. Default value is “cover”.
// https://www.w3schools.com/csSref/css3_pr_background-size.asp
Best regards,
IsmaelHey webdesign_schinabeck,
Thank you for using Enfold.
You should NOT be seeing the video on mobile view because by default it’s disabled. How did you enable it? Did you add a fallback image?
Best regards,
IsmaelHey Niklas,
Thank you for using Enfold.
You can use this css code to remove the default flags or the switcher added by the theme.
.avia_wpml_language_switch, .avia_wpml_language_switch li { display: none !important; }Best regards,
Ismael-
This reply was modified 6 years, 8 months ago by
Rikard.
July 31, 2019 at 7:43 am in reply to: Strange behaviour when loading pages with masonry grid #1123413Hey Monique,
Thank you for using Enfold.
This is a known issue with the isotope script. It automatically calculates the position of the items within the grid without waiting for the images to fully load. You can either enable the pagination to decrease the size of the page so that it loads quickly, or use the following script to adjust the position of the items.
add_action('wp_footer', 'ava_auto_resize'); function ava_auto_resize(){ ?> <script> (function($){ var int = window.setInterval(function(){ console.log('tick'); $(window).trigger('resize'); $(window).trigger('av-content-el-height-changed'); }, 1000); $(window).on('load', function() { setTimeout(clearInterval(int), 1000); }); })(jQuery); </script> <?php }Best regards,
IsmaelHi,
Yes, that’s possible. Can you give us a link to the page with the lightbox containing an iframe? If it’s a static image, just use this css code.
.mfp-img { max-height: 2000px !important; }Best regards,
IsmaelHi,
Thank you for using Enfold.
– How did you end up with that URL (form-maker/preview/page/1/), or where did you get it?
– You can use this css code to decrease the font size of the menu items and the space between them.
@media only screen and (max-width: 1300px) { #top #header .av-main-nav > li > a { font-size: 13px; padding: 0 10px; } }Best regards,
IsmaelHi,
Thank you for the update.
Did you check the screenshot? Is that what you want? We already selected the original size of the logo, so you don’t have to do anything. Please remove the browser cache or hard refresh the site.
Best regards,
IsmaelHi,
Thanks for the update.
Can we have access to the file server? And please set the WP account’s user role to admin. We would like to test the modification.
Best regards,
IsmaelHi,
Thank you for the update.
The hover effect is not working as it should because of this css code.
#portfolio a:hover .image-overlay { opacity: 1 !important; }It removes the transparency of the overlay or set it to 0. Default opacity value is 0.7.
Best regards,
IsmaelHi,
Thank you for the update.
Did you enable the sidebar for the archive pages? You can do that in the Enfold > Sidebar Settings panel. Look for the “Sidebar on Archive Pages” settings. Please note that product filters will only function in the base shop page.
Best regards,
IsmaelHi,
Thank you for using Enfold.
Do you see any errors when you activate the option? We would like to enable the option and test it but we might break the site.
Best regards,
IsmaelHi,
Thank you for the update.
You have to set or specify the font size for each screen sizes in the element’s Screen Options > Heading Font Size. Those options are not set in the staging version.
Best regards,
IsmaelJuly 30, 2019 at 4:08 am in reply to: How to display parent page title on postslider on homepage? #1123028Hi,
Sorry about that. We forgot to remove the “else” at the very end of the code. Look for this.
: "";Take note of the spaces. Replace it with a semicolon to end the line. Or just replace the whole code with this:
$output .= "<div class='slide-entry-excerpt entry-content' $markup>".$excerpt."</div><div>".get_the_title( wp_get_post_parent_id( get_the_ID() ) )."</div>";Best regards,
IsmaelHi,
Why are you trying to disable the google fonts? If the purpose is to prevent the site from connecting to the Google API, then using a map from the same source renders it pointless. Removing the font from the map application doesn’t change the fact that the site is still connecting to the Google Map API. Are you trying to make the site GDPR-compliant?
There is a way to prevent the default map font from loading but it’s not implemented in the theme.
// https://stackoverflow.com/questions/25523806/google-maps-v3-prevent-api-from-loading-roboto-font
Best regards,
Ismael -
This reply was modified 6 years, 8 months ago by
-
AuthorPosts
