Forum Replies Created
-
AuthorPosts
-
Hi,
How did you hide the “nl” section? You may need to hide it only after the required tab scripts are executed. You can use this snippet to apply a minimum width to the title container.
add_action('wp_footer', 'ava_custom_script_tab_width'); function ava_custom_script_tab_width(){ ?> <script type="text/javascript"> (function() { const tabWidth = () => { const s = document.getElementById('nl'); const t = s.querySelector('.av-tab-section-tab-title-container'); const tc = t.querySelectorAll('.av-section-tab-title'); let tw = 0; let th = 0; tc.forEach( tcc => { tw += parseInt( tcc.offsetWidth, 10 ); }); t.style.minWidth = tw + 'px'; } window.addEventListener( 'resize', tabWidth, false); })(); </script> <?php }
Best regards,
IsmaelHi,
Thank you for using Enfold.
You may need to change the from address or setup a SMTP so that your mail server will not mark emails as spams.
More info here: https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-
Best regards,
IsmaelHi,
Have you tried muting the video? The new policy states that muted autoplay is always allowed.
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 play 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 sound.// https://developers.google.com/web/updates/2017/09/autoplay-policy-changes
Best regards,
IsmaelHi,
Thanks for the update.
Can you give us access to your file server? I would like to check the instagram script. Please post the FTP details in the private field.
Best regards,
IsmaelNovember 2, 2018 at 6:07 am in reply to: Change color section full-width to make it aligned with masonary with big gap #1029019Hey Roger,
Thank you for using Enfold.
Can you give us a screenshot of the issue? You can use imgur or dropbox. I would like to check the site but it’s on maintenance mode. Please post the login details in the private field.
Best regards,
IsmaelNovember 2, 2018 at 6:03 am in reply to: masonry portfolio items perfect grid no switch to column count screen options #1029017Hey sky19er,
Thank you for using Enfold.
I found a minor syntax error in the css codes. Please use this css code for now.
/* Tablet Portrait size to standard 960 (devices and browsers) */ @media only screen and (min-width: 768px) and (max-width: 989px) { .responsive.av-no-preview #top .av-medium-columns-4 .av-masonry-entry{width:24.90%;} .responsive.av-no-preview #top .av-medium-columns-3 .av-masonry-entry{width:33.3%;} .responsive.av-no-preview #top .av-medium-columns-2 .av-masonry-entry{width:49.80%;} .responsive.av-no-preview #top .av-medium-columns-1 .av-masonry-entry{width:100%;} }
Best regards,
IsmaelHi,
I would like to apologize for the late response. I can only see two “logos” inside the turquoise side bar, and none of them link to the “coursereport” site. Did you remove it?
Best regards,
IsmaelNovember 2, 2018 at 5:48 am in reply to: On form submition error need to add error string, how can i do it? #1029008Hi,
Did you enable the theme’s Performance > File Compression settings? Please disable it temporarily and then add the css code again. Or post the login details in the private field so that we can check the site.
Best regards,
IsmaelHi,
It turned out that the theme minifies tested plugins or plugins that were included in this list.
//all plugins that start with the name "avia" are considered tested $tested_plugins = apply_filters( 'avf_tested_plugin_list' , array( 'hello.php', 'akismet/akismet.php', 'layerslider/layerslider.php', 'tiny-compress-images/tiny-compress-images.php', 'woocommerce/woocommerce.php', 'shortpixel-image-optimiser/wp-shortpixel.php', 'optimus/optimus.php', 'wp-super-cache/wp-cache.php', 'comet-cache/comet-cache.php', 'comet-cache-pro/comet-cache-pro.php', 'duplicate-post/duplicate-post.php', 'wordpress-importer/wordpress-importer.php', 'wordpress-beta-tester/wp-beta-tester.php', 'worker/init.php', //managewp 'really-simple-ssl/rlrsssl-really-simple-ssl.php', 'bbpress/bbpress.php', ));
You can use the “avf_tested_plugin_list” filter to add more plugins in that list. You can only include plugins that load their resources directly from the plugin directory, not from external sites.
add_filter( 'avf_tested_plugin_list', 'avf_tested_plugin_list_mod', 10, 1 ); function avf_tested_plugin_list_mod($plugins) { $plugins[] = 'your-plugin/your-plugin.php'; $plugins[] = 'another-plugin/another-plugin.php'; return $plugins; }
Best regards,
IsmaelHi!
Did you install a multi themes plugin? The page with the campaign form is using a default theme. I would like to disable the plugin so that I can check the issue, but the plugins panel is hidden.
Regards,
IsmaelHi,
I would like to apologize for the late response. Where can we reproduce the issue? I don’t encounter any issue with a test page. (see private field)
Best regards,
IsmaelHi,
The header is already transparent but there’s nothing underneath it, so it’s displaying the default body background. Add this css code inside the css media query to move the main container upwards.
.responsive #top #main { margin-top: -80px; }
Best regards,
IsmaelHi,
Thank you for using Enfold.
We’ll forward the issue to the dev team. You can use these css codes for now.
.av_icongrid_title { font-size: 25px; } .av_icongrid_subtitle { font-size: 18px; } .avia-icongrid-icon { font-size: 50px; } .avia-icongrid-text { font-size: 20px; }
Best regards,
IsmaelNovember 2, 2018 at 4:44 am in reply to: Quotation mark in blockquote (instead of black vertical line) #1028992Hi,
Thank you for using Enfold.
You can implement one of the blockquote styles here:
// https://freefrontend.com/css-quote-styles/
Example:
@import url('https://fonts.googleapis.com/css?family=Special+Elite'); blockquote { font-weight: 100; font-size: 1rem; max-width: 600px; line-height: 1.4; position: relative; margin: 0; padding: .5rem; border: none; } blockquote:before, blockquote:after { position: absolute; color: #f1efe6; font-size: 8rem; width: 4rem; height: 4rem; } blockquote:before { content: '“'; left: -3rem; top: -2rem; } blockquote:after { content: '”'; right: -3rem; bottom: 1rem; } cite { line-height: 3; text-align: left; }
Best regards,
IsmaelHi,
Thank you for the update.
The form is being sent properly when I tested it (see private field). Please check the spam folder or ask your hosting provider why the mail server is not accepting the emails. You may need to setup a SMTP or change the from address.
These steps should help: https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-
Best regards,
IsmaelOctober 31, 2018 at 4:07 am in reply to: Drop down menus and cart are transparent, recurring issue #1028355Hi!
Thanks for the update.
1.) I can’t add any products to the cart even when they’re in stock. I always get an error that the product is out of stock.
2.) The brand’s logo link is invalid. There’s an extra slash before the product category name. Have you tried resetting the permalinks? How did you add those logo again? Please provide new login details in the private field.
Best regards,
IsmaelHey ncfan2030,
Thank you for using Enfold.
Do you want to implement the grid layout on the “press” page? You may need create a duplicate of the archives.php template and rename it to the name of the template used by the “press” pages. Please contact the plugin author for more info.
Best regards,
IsmaelHey Eleina_Shinn,
Thank you for using Enfold.
The version 4.4.1 is still using the old Envato API, which is now deprecated. You have to upgrade the theme manually via FTP for now. You’ll be able to do an automatic update again once you’re on version 4.5.
Best regards,
IsmaelHi,
I can’t see the issue in those pages and the screenshot is no longer available. Did you remove the modification?
Best regards,
IsmaelHi,
The header_meta container, where the “castellano” menu item resides, is lower in the stack order or is being covered by the header_main container, which is where the logo is. You may need to move the logo to the header_meta container and then increase it’s z-index property, so it’s higher than that of the header_main container or move the “castellano” menu item to the header_main or include it on the main menu.
Try this code and you’ll see the issue:
#header_meta { z-index: 30; }
Best regards,
IsmaelHi,
The theme’s and the default WooCommerce gallery are virtually the same, but the latter has additional features like image variation switch and image zoom.
I tried to adjust the thumbnails on the theme’s default gallery but every modification that I used didn’t work.Best regards,
IsmaelOctober 31, 2018 at 3:14 am in reply to: How to show a default featured image (posts & pages!) if there is none? #1028343Hi,
That is for the blog or single post pages. Did you modify the loop-search.php file to display the thumbnails? Please post the content of the modified file on pastebin.com.
Best regards,
IsmaelOctober 31, 2018 at 3:11 am in reply to: Google Structured Data Errors rich snippet infected #1028342Hi,
Have you tried setting a featured image to that page? That will probably fix the “image” schema issue.
image
A value for the image field is required.Best regards,
IsmaelOctober 31, 2018 at 2:42 am in reply to: How to remove the "Your Message:" CONTENT / How to target different languages #1028335Hi,
Thank you for using Enfold.
Are you using WPML? You may need to use a conditional function to change the autoresponse message for each language.
switch (ICL_LANGUAGE_CODE) { case 'en': $form_args['autoresponder_subject'] = 'Thank you for your inquiry!'; break; case 'es': $form_args['autoresponder_subject'] = '¡Gracias por su consulta!'; break; case 'de': $form_args['autoresponder_subject'] = 'Vielen Dank für Ihre Anfrage!'; break; default: $form_args['autoresponder_subject'] = 'Thanks!'; } return $form_args;
Best regards,
IsmaelOctober 31, 2018 at 2:36 am in reply to: Google Structured Data hcalender "Location" Error & The Event Calendar #1028333Hi,
You can override that template in your child theme. Have you tried that?
Best regards,
IsmaelHi,
The theme’s preloader script initiates a browser redirect when you click on a link. You can add the “no-transition” class attribute to that button or link if you want to exclude it from the preloader script.
Best regards,
IsmaelHi,
Is it still not working when you enable the compression back?
Best regards,
IsmaelOctober 31, 2018 at 12:56 am in reply to: Google Search Console reports usability problems after update to Enfold 4.5 #1028312Hey KELmedia,
Thank you for using Enfold.
This is what I got when I ran the usability or mobile friendly test.
// https://imgur.com/a/VPKKx6N
Are you seeing any layout issues on mobile view? If there are none, you can just ignore those warnings because they’re probably false positives.
Best regards,
IsmaelHi!
This is all I get: https://imgur.com/a/qsBOS0Y
Please open a new thread and then post the FTP details in the private field.
Regards,
IsmaelHi,
Unfortunately, you can’t add nested columns inside a tab section. The layout that you’re after is still possible though, but you have to extract the actual html code of the icon boxes and then put it inside a text or code block. Example here:
// https://marokko-adventures.de/wp-admin/post.php?post=1593&action=edit
This is the extracted html code of the icon boxes below the tab section.
// https://pastebin.com/bmFZFBfL
You can extract it directly from the browser inspector.
// https://www.lifewire.com/view-html-source-in-chrome-3466725
Best regards,
Ismael -
AuthorPosts