Forum Replies Created
-
AuthorPosts
-
Hey Technoh,
Thank you for the inquiry.
The portfolio is not displayed properly, only the title of the item is shown.
The instructions on the previous thread will only replace the default link of the portfolio item but it will not display the actual video. As a placeholder for the video, you have to apply a featured image to the portfolio items. And when clicked, the video will open inside a modal popup or a lightbox container.
Best regards,
IsmaelHey pixeldraft,
Thank you for the inquiry.
Is the Events > Settings > Display (tab) > Use updated calendar designs option enabled? The new option breaks the layout of the single event page, so it has to be disabled temporarily. You can also override the default-template.php file in the child theme.
Please check the following threads for more info.
// https://kriesi.at/support/topic/yet-another-event-calendar-override-problem/#post-1213170
Best regards,
IsmaelHi,
Thank you for the update.
Are you using the do_shortcode function in the template?
// https://developer.wordpress.org/reference/functions/do_shortcode/
Best regards,
IsmaelJuly 26, 2020 at 6:13 pm in reply to: Bug Report: Enfold logos excluded from lazy load and caching plugins #1233382Hi,
Actual size is 88px tall, Vitals asked for 240px tall for some reason.
This is probably for retina devices or for screens with higher DPI. To display sharp images, these devices require the images to be larger than their calculated size in the page.
For the LCP, you might have to load the background image asynchronously or put a placeholder in the slider. Unfortunately, this is not available in the theme by default, so it will require custom modifications in the sliders.
Thank you for your patience.
Best regards,
IsmaelHi,
Sorry for the delay. We adjusted the above filter a bit. Please disable the cache and minification plugins, then try to add the code again.
Best regards,
IsmaelHi,
Sorry for the delay. Aside from the Advance Layout Builder from the theme, there are two editors (Classic and Block or Gutenberg Editor https://wordpress.org/gutenberg/) available in WordPress by default and you can pick one by adjusting the Enfold > Theme Options > Select Your Editor settings. Switching from the Block editor to the Classic one makes page preview work again.
Best regards,
IsmaelHi,
Thank you for the update.
We adjusted the class name of the slider and added the required css in the Quick CSS field. There will be a green button or square in the bottom right corner of the slider and when clicked it will toggle the audio and change color accordingly. If you want to replace it with an actual audio button, just go to the Quick CSS field and replace the background color with an image.
.custom-mute { background-color: red; } .icon-sound-on { background-color: green; }Best regards,
IsmaelHi,
Sorry for the delay. The fix for this particular issue is already included in the latest version of the theme. Please upgrade to version 4.7.6.1 to get the latest patches.
Best regards,
IsmaelHi,
Sorry for the delay.
1.) This might not be possible because MU plugins are loaded before the theme, so the filter doesn’t exist yet. You have to add it in the child theme’s functions.php file.
2.) The filter limits the number of posts to 6 but it can be adjusted if necessary. Just look for the following line and adjust the value.
$query['posts_per_page'] = 6;Best regards,
IsmaelJuly 24, 2020 at 6:27 am in reply to: Layer Slider text and submenu not showing correctly on Firefox #1232883Hey Stepconsulting,
Thank you for the inquiry.
We may need to manually control the size of the fonts on larger screens using css media queries. We can do it by applying a unique class or ID attribute to the layer. Start by editing a layer, then go to the Links & Attributes tab and look for the CLASS or ID field. In the CLASS field, add the name “custom-layer” for example, then use it to adjust the style of that particular layer.
Add this css code in the Quick CSS field or the style.css file.
@media only screen and (min-width: 2160px) { .custom-layer { font-size: 40px !important; } }If you want to use the ID field instead, input the same name that we use for the CLASS field, then replace the css code with the following.
@media only screen and (min-width: 2160px) { #custom-layer { font-size: 40px !important; } }// https://css-tricks.com/snippets/css/media-queries-for-standard-devices/
Best regards,
IsmaelJuly 24, 2020 at 6:00 am in reply to: NinjaForm buttons not using Custom CSS styles in some browsers #1232869Hey m,
Thank you for the inquiry.
Have you tried adding the css code in the child theme’s style.css file? You can also add it in the Enfold > General Styling > Quick CSS field. Make sure to toggle or disable the Performance > File Compression settings after adding the css code.
Best regards,
IsmaelHi,
Thank you for the inquiry.
The changes in the search results may take a while to reflect — it sometimes takes weeks or months. But you may ask Google to recrawl the site and have them index it again. And also make sure that there are no date entries from a plugin or custom scripts.
// https://support.google.com/webmasters/answer/6065812?hl=en
Best regards,
IsmaelHi,
Thank you for the inquiry.
Looks like they created a new container or element called skewoverlay and applied the skewed background to it.
<span class="skewoverlay animated fadeIn delay-two" style="width: 1596.22px; height: 1896px;"></span>CSS:
.skewoverlay { position: absolute; top: 0; display: none; z-index: 1; width: 100%; height: 100%; left: 0; opacity: 0; display: block; background: url(../img/skew-bg.jpg) no-repeat center top #f4f4f4; }If you want to replicate it in an Enfold installation, you might have to insert the element directly in the header.php file.
They also applied a skewed background to the header container.
.header.bg .header-overlay { position: absolute; top: 0; width: 100%; height: 100%; left: 0; display: block; background: url(../img/header-overlay-bg.png) no-repeat center top; }Best regards,
IsmaelJuly 24, 2020 at 5:03 am in reply to: Video block and Mailchimp widget not showing up in WPML translated pages #1232857Hi,
Thank you for the inquiry.
Is the video private? We tried to open it directly in vimeo but it doesn’t seem to exists.
Best regards,
IsmaelHi,
Thank you for the update.
You don’t need to copy the custom.css file in the child theme because all css modification can be added in the child theme’s style.css file instead. Let us know if that helps.
Best regards,
IsmaelHey RezNation,
Thank you for the inquiry.
We can use the avf_form_from filter to adjust the default “from” address so that you can use a domain email address or an address that is recognized by your mail server.
// https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-
This is the filter.
function change_cf_from() { return " (Email address hidden if logged out) "; } add_filter('avf_form_from', 'change_cf_from', 10);Best regards,
IsmaelHi,
Thank you for the update.
Have you tried editing the themes\enfold\includes\loop-page.php file directly as @Guenni007 suggested above? Or if you’re referring to the color section element, try to modify the themes\enfold\config-templatebuilder\avia-shortcodes\section.php. This code around line 1347:
$output .= "<div class='post-entry post-entry-type-page {$post_class}'>"; $output .= "<div class='entry-content-wrapper clearfix'>";Best regards,
IsmaelJuly 22, 2020 at 5:14 pm in reply to: column position fixed hides underneath header – z-index? #1232335Hi,
Thank you for the info.
The column is not clickable because the header covers the content container, which is where the column is. You could instead add a widget or a link directly inside the header container.
Please check the documentation below.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
IsmaelHey Steve,
Thank you for the inquiry.
The snippet is actually based on a script in this documentation.
// https://dimsemenov.com/plugins/magnific-popup/documentation.html#inline-type
What you need to do is create an element and apply a unique ID to it.
<div id="test-popup" class="white-popup mfp-hide"> Popup content</div>And a button or a link with the inline_popup class attribute or name, and with the ID of the above element as its href value.
<a href="#test-popup" class="inline_popup">Show inline popup</a>When the link is clicked, it will open a lightbox container and display the #test-popup content, or the content of the element with the ID test-popup.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Have you tried doing the recommendations in the article that @Rikard posted above? They might not satisfy the lighthouse criteria completely, but the instructions there should help improve the overall performance of the site.
Best regards,
IsmaelHi,
Thank you for the inquiry.
We can hide the top bar or the header meta in the home page with this css code.
.home #header_meta { display: none !important; }Best regards,
IsmaelJuly 22, 2020 at 4:17 pm in reply to: How to make a HubSpot banner fixed(while scrolling) without the overlap? #1232294Hi,
Thank you for the inquiry.
You can use this css code to adjust the vertical position of the modal container.
.leadinModal { position: fixed; top: 88px; right: 0; }This will just move modal below the header. You may need to ask the plugin author for an additional script if you want to adjust the header position based on the status of the modal container.
Best regards,
IsmaelJuly 22, 2020 at 4:04 pm in reply to: Layerslider Warning: Creating default object from empty value #1232279Hi,
Thank you for the inquiry.
Is this the code that you see on line 28 when you edit the avia-shortcodes/slideshow_layerslider/slideshow_layerslider.php?
$this->config['forced_load_objects'] = array( 'layerslider' ); // fallback only to make sure we load in case user overwrites this class and direct checks for shortcode might failBest regards,
IsmaelHey OverlapAT,
Thank you for the inquiry.
The script has been moved from shortcodes.js file to enfold\framework\js\conditional_load\avia_google_maps_api.js. Just do the same modification and make sure to toggle the Performance > File Compression settings to regenerate the scripts.
Best regards,
IsmaelJuly 22, 2020 at 3:42 pm in reply to: Bug Report: Enfold logos excluded from lazy load and caching plugins #1232265Hey Thomas,
Thank you for the inquiry.
Do you have a reference from Google or a documentation that says it is better to lazy load the logo? We are not really sure if that is such a good idea because you want your logo to be immediately visible when the page load. And delaying it doesn’t really make that much impact in performance because of its file size.
If you really need to implement it, this documentation should help.
// https://jetpack.com/support/lazy-images/
You have to add the data-lazy-src attribute to the logo tag.
Best regards,
IsmaelHi,
The other meta tag is probably added by a plugin or a custom script. If you need to disable the default meta tag from the theme, try to use this filter instead.
function avia_archive_set_follow($meta) { return ""; } add_filter('avf_set_follow','avia_archive_set_follow', 10, 1);Best regards,
Ismael-
This reply was modified 5 years, 7 months ago by
Ismael. Reason: adjusted filter
July 21, 2020 at 12:59 pm in reply to: Header shopping cart symbol & Dynamic Pricing & Discounts #1232018Hi,
Thank you for the info.
Try to modify the enfold\config-woocommerce\config.php file and replace everything with this code:
// https://pastebin.com/C9zKFNMd
After that, edit the enfold\config-woocommerce\woocommerce-mod.js, and again remove everything and replace it with the following.
// https://pastebin.com/fuk1LdhX
Best regards,
IsmaelHi,
Thank you for the update.
The rhemacc site is still served from Cloudflare. Please check the HTTP headers below. You may need to contact your hosting provider and ask them to disable it properly.
Best regards,
IsmaelHi,
Thank you for the update.
Yes, it should work properly as long as the table shortcodes in the child theme is disabled. Or if you intend to modify the table, just make sure that the child theme’s table.php file contains the latest code.
Best regards,
IsmaelHi,
Some of the toggles or content are wrapped inside the fr-cookie element, but some are not such as this one.
<span class="toggle-label-content">Cacher en permance la barre de message et refuser tous les cookies. Nous avons besoin de stocker ces 2 paramètres. Dans le cas contraire il vous sera demandé d'ouvrir une nouvelle fenêtre ou un nouvel onglet.</span>Make sure that they are wrapped inside an element with the fr-cookie class attribute or name.
<span class="fr-cookie"> CONTENT HERE </span>Best regards,
Ismael -
This reply was modified 5 years, 7 months ago by
-
AuthorPosts
