Forum Replies Created
-
AuthorPosts
-
Hi!
@smartstartinc: We are still not sure why the compression doesn’t work on some servers, but one of our developers said that it might be related to the ssl certificate as discussed here.Related thread: https://kriesi.at/support/topic/merge-and-compress-css-js-issue-avia_head_scripts/
Best regards,
IsmaelHi,
That’s odd. Maybe it’s cached? Please don’t hesitate to open a new thread if you encounter any issues.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for using Enfold.
Can you provide a screenshot using imgur or dropbox? I can’t reproduce the issue on a browser emulation.
Best regards,
IsmaelJuly 5, 2019 at 4:07 pm in reply to: Trying to connect Mailchimp header code in child theme functions.php #1116059Hi,
Try to replace “wp_head” with “wp_footer”, so the script loads before the closing body tag.
@chanjelin: We see this error in your site, which is related to a particle.js file.SCRIPT5007: SCRIPT5007: Unable to get property ‘getElementsByClassName’ of undefined or null reference
particles.js (1495,7Best regards,
IsmaelJuly 5, 2019 at 3:56 pm in reply to: Which function is responsible to display the_content(). #1116057Hi,
@sky19er: Did you use the advance layout builder for your listings? Please open a new thread and post the login details there. We will close this thread now.Best regards,
IsmaelHey!
Yes, that might be necessary because there is no filter available to adjust the query, and we can’t use the pre_get_posts hook to alter it.
Try to include the tax_query parameter in the query.
$this->avia_new_query = array("orderby"=>"date", "order" => "ASC", "posts_per_page"=>10,"post_type"=>$this->avia_post_type, 'tax_query' => array( array( 'taxonomy' => $this->avia_term, 'field' => 'id', 'terms' => explode(',', '1,2,3,4'), 'operator' => 'IN') )); //set a custom query here`
Replace ‘1,2,3,4’ with the actual ids of the portfolio categories.
Best regards,
IsmaelHi,
Thank you for the update.
That is the default post title container. If you want to remove it, use the following snippet in the functions.php file.
remove_filter( 'post-format-standard', 'avia_default_title_filter', 10, 1 );OR edit the includes > loop-index.php file and remove this code (line 286).
echo $title;Best regards,
IsmaelHey johnnhy,
Thank you for using Enfold.
Do the images have the same size? This is actually a bug in the isotope script where it re-arranges the items based on their natural height. The modification in the following thread might help.
// https://kriesi.at/support/topic/masonry-grid-not-properly-sorting-alphabetically/#post-981621
That modification is for the masonry element, but it is also applicable to the portfolio.js file.
Or just make sure that the size of the images are the same.
Best regards,
IsmaelHi,
Thank you for the update.
The ajax feature is probably exclusive to the actual cart page or dependent on containers that don’t exist in the mini cart container. Unfortunately, we can’t help you trace that script. You may need to hire a freelance developer or get in touch with our partner Codeable if you really need the functionality.
Best regards,
IsmaelHi,
Sorry for the delay. We modified line 1129 of the same file.
$this->avia_new_query = array("orderby"=>"date", "order" => "ASC", "posts_per_page"=>10,"post_type"=>$this->avia_post_type); //set a custom query hereYou can adjust the “orderby” and “order” value if needed.
Let us know if the order is correct.
Best regards,
IsmaelHi,
Thank you for the update.
Would you mind if access the file server? We may need to edit a few files in order to debug the issue. Please post the FTP login details in the pivate field.
Best regards,
IsmaelHi,
Thank you for the update.
The animation or fade in effect is actually applied dynamically via script, so you can’t just override with css.
But this might work.
#top .avia-slideshow-inner .active-slide { opacity: 1 !important; }Have you tried adjusting the “Slideshow Transition” settings? Set it to “Slide sidewards” instead of “Fade”.
Best regards,
IsmaelHi,
Would you mind fixing your ssl certificate? We can’t access the site without getting past the browser security layer or certificate error page. We’ll check the site again, then.
Best regards,
IsmaelHi,
Thank you for the info.
The play button is an svg image, so you can’t change its color without editing the file directly. You can however add a background behind it using css.
.mejs-overlay-button { background-color: #000000; }Best regards,
IsmaelHi,
Thank you for the update.
Looks like it is displaying properly in the archive or category page. (see private field)
It doesn’t display in the shop page because there’s no product there. And the “woocommerce_auctions_ordering” function will return nothing when there is only 1 item.
if ( 1 === $wp_query->found_posts ) { return; }Best regards,
IsmaelJuly 5, 2019 at 12:26 pm in reply to: Texte von Teilen der Website wirken wie in den Hintergrund eingebunden #1116029Hi,
The highlight doesn’t appear because the ::selection state color is the same as the initial font color. Please use this css code to change the highlight color of the selected texts.
::selection { background: #ffffff; color: #000000; }Use this if you only want to apply it for the footer content.
#footer *::selection { background: #ffffff; color: #000000; }Best regards,
IsmaelHey mark_markt8_gmbh,
Thank you for using Enfold.
The media files do not automatically play because of the browsers’ autoplay policy. You have to mute the video or have users interact with it.
// https://developers.google.com/web/updates/2017/09/autoplay-policy-changes
This behaviour or policy can be overridden in the client-side, but there’s nothing we can do on our end.
Chrome’s autoplay policies are simple:
Muted autoplay is always allowed.
Autoplay with sound is allowed if:
User has interacted with the domain (click, tap, etc.).
On desktop, the user’s Media Engagement Index threshold has been crossed, meaning the user has previously played video with sound.
On mobile, the user has added the site to their home screen.
Top frames can delegate autoplay permission to their iframes to allow autoplay with soundBest regards,
IsmaelHi,
Thank you for the update.
The script here should help reposition the items while the images are loading.
// https://kriesi.at/support/topic/portfolio-grid-display-issue-with-chrome-and-firefox/#post-1107632
We added it in the functions.php file.
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), 5000); }); })(jQuery); </script> <?php }Best regards,
IsmaelHi,
This should adjust the footer height or remove the padding.
#footer { padding: 0; } #footer .widget { padding: 0; }Please don’t forget to toggle the Performance > File Compression settings after adding the code.
Best regards,
IsmaelHey xyzb,
Thank you for using Enfold.
The login url always redirects to the home page. We even tried “wp-admin” but it’s the same. Did you change the login URL?
Best regards,
IsmaelJuly 5, 2019 at 10:22 am in reply to: Home Page slug problem for Translations [using Polylang] #1116002Hey carlota_torne,
Thank you for using Enfold.
Did you set the home or front page in the Settings > Reading panel? Please give us access to the dashboard so that we can check the settings.
Best regards,
IsmaelHi,
@smartstartinc: Thank you for your contribution. We will certainly forward this to Kriesi and the team.
Where are you hosting the site? We also notice that the compression doesn’t work on other servers while it’s fine in most. If it doesn’t really work in your installation, it can be easily replaced with Autoptimize or other minify tool from popular cache plugins like W3 Total Cache. Sorry for the delay.
Best regards,
IsmaelHi!
Thank you for using Enfold
Is the site accessible? We would like to check it.
Have you tried to manually import the demo?
// https://kriesi.at/documentation/enfold/import-demos/Best regards,
IsmaelJuly 5, 2019 at 9:27 am in reply to: Current version of Enfold compatible with WordPress 5.2.1? #1115972Hi,
Thanks for the update.
Search engines should continuously crawl your site as long as you’re updating or adding links that leads to new content. I’m sure disabling the plugins temporarily for a few minutes wouldn’t hurt. You can also ask Google to recrawl your site if you feel like it’s necessary.
// https://support.google.com/webmasters/answer/6065812?hl=en
Crawling can take anywhere from a few days to a few weeks. Be patient and monitor progress using either the Index Status report or the URL Inspection tool.
Best regards,
IsmaelHey Artiarturro_66,
Thank you for using Enfold.
That filter should be replaced with this one.
function avf_alb_supported_post_types_mod( array $supported_post_types ) { $supported_post_types[] = ''popup''; return $supported_post_types; } add_filter('avf_alb_supported_post_types', 'avf_alb_supported_post_types_mod', 10, 1);Let us know if it helps.
More info: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#alb-for-any-post-type
Best regards,
IsmaelHi,
Thank you for the update.
That URL is dedicated to the DE language because you set it as the main language. You can’t use that URL for other languages. If you really need the EN version to have that URL, set it as the main language.
Best regards,
IsmaelHi,
The Lato font doesn’t support the character Ő and Ű. You can have a look at the font’s page > Characters section.
// https://fonts.google.com/specimen/Lato
Best regards,
IsmaelHi,
Thank you for the update.
The automatic update on that version has been nulled or deprecated, so you have to update the theme manually just this once.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelJuly 4, 2019 at 3:23 pm in reply to: The Events Calendar – upcoming events will not displayed #1115817Hi,
Yes, but it’s not included in element template by default, so it shouldn’t be displaying there. Did you modify the shortcode templates, or add any hooks?
Best regards,
IsmaelHi,
I mean the filter named “woocommerce_get_image_size_thumbnail” or the last one.
Best regards,
Ismael -
AuthorPosts
