Forum Replies Created
-
AuthorPosts
-
November 16, 2018 at 7:09 am in reply to: Response does not work on landscape (iPad) and scroll to top in mobil #1034303
Hi,
desktop version will also be shut down
That code should only affect screens that are smaller than 1366px. Are you testing it on a laptop? Try to adjust this part:
(max-width: 1366px)to
(max-width: 1024px)Best regards,
IsmaelHi,
I can’t find where those numbers are coming from, so I just created a new container to cover it. I put this code on the Quick CSS field:
ol.commentlist:before { content: ''; display: block; width: 50px; height: 50%; background: #f8f8f8; position: absolute; right: 0; z-index: 10; }Best regards,
IsmaelHi,
Thanks for the update.
I didn’t know that reCAPTCHAv2 has been deprecated. Please generate a new key for the reCAPTCHAv3. Don’t forget to add your site in the Domains field.
// https://www.google.com/recaptcha/
Add the keys in the functions.php file. You may need to wait for a few minutes.
// https://developers.google.com/recaptcha/docs/v3
Best regards,
IsmaelNovember 15, 2018 at 3:17 pm in reply to: WooCommerce Advanced extra fees and reductions displaying #1033993Hi,
I added the code at the very top of the Quick CSS field:
#top .wc_payment_method.payment_method_id_extrafeediscount { display: none !important; opacity: 0; visibility: hidden; }Best regards,
IsmaelNovember 15, 2018 at 2:46 pm in reply to: Audio player not displaying properly after update #1033983Hi,
Yes, please post the login credentials to the staging site. We would like to check it.
Best regards,
IsmaelHi,
@frosch178: Please open a new ticket with the site url and the login credentials.Best regards,
IsmaelHi,
Did you apply the “section-mobile-bg” as the Section ID of the color section? Edit the color section then look for the Section ID field. Add the “section-mobile-bg” text in the input field. It’s going to be the ID of that section.
Best regards,
IsmaelHi,
I’m glad that you figured out the issue. Please open a new thread if you need anything else. :)
Best regards,
IsmaelHi,
Thank you for using Enfold.
1.) This css code should adjust the top border:
#footer { margin: 0 50px; }2.) You can remove the default padding of the very last menu item.
#menu-item-3211 a { padding-right: 0; }Best regards,
IsmaelHi,
I’m not really sure what’s going on there but resetting the instagram options from scratch might help. Follow these steps:
// https://kriesi.at/support/topic/instagram-widget-did-not-return-200-specify-username/#post-1031501
Best regards,
IsmaelNovember 15, 2018 at 9:36 am in reply to: Sliders and regresive count not working on home page #1033854Hi,
Did you add any custom modifications to the theme? The slider is working properly when the lightbox option is disabled. Please try to update the header.php file.
Best regards,
IsmaelHi,
The dev team are currently working on this. Based on the updated codes for Gutenberg compatibility on the theme’s repo, the upcoming solution is to add a switch button between the Gutenberg editor and the advance layout builder. You won’t be able to actually edit the theme elements with Gutenberg but you will be able to use the advance layout builder inside the gutenberg editor page. Basically, the compatibility fixes will hide gutenberg and replace it with the advance layout builder. I’ll tag Guenter and Kriesi for clarification.
Best regards,
IsmaelNovember 15, 2018 at 9:10 am in reply to: Drop down menus and cart are transparent, recurring issue #1033846Hi!
Again, those missing dependency reports are not critical, so they won’t affect your site in anyway. The avia_modal_js script is reported as missing because it’s only needed or loaded when you’re using the advance layout builder. You don’t have to worry about those warnings.
Cheers!
IsmaelHi,
Adjust the code a bit:
.sidebar .current-cat a, .sidebar .current-cat .children li a { color: orange; }Don’t forget to remove the browser cache prior to checking the page.
Best regards,
IsmaelHey!
Great! Good to hear. We’ll close the thread now.
Have a nice day. :)
Cheers!
IsmaelHi,
Thanks for the info. That is the default style of the featured image. The width is set to 100% so it will inherit the width of the parent container. You can adjust the width property to auto if you want to display the actual width of the image.
.small-preview img, .big-preview img { width: auto !important; }Best regards,
IsmaelNovember 15, 2018 at 8:55 am in reply to: Color section: No button hover w/ bg. overlay / No diag. section border w/o bg. #1033839Hi,
Did you enable the File Compression settings? It might still be using the old css. Try to disable the compression from the Enfold > Performance panel temporarily. Or post the login details in the private field so that we can test it.
Best regards,
IsmaelHi,
Odd. It’s working properly on my end. Please try this again:
add_action('wp_footer', 'ava_color_closed_event', 9999); function ava_color_closed_event() { ?> <script> (function() { document.addEventListener( "DOMContentLoaded", () => { const et = document.querySelector('.tribe-events-single-event-title'); const etm = document.querySelector('.tribe-events-month-event-title a'); if( ( et && et.textContent == 'Closed' ) || ( etm && etm.textContent == 'Library Closed' ) ) { etc = et ? et : etm; etc.style.color = '#c20b1a'; } }); })(); </script> <?php }If it doesn’t work, please post the WP login details in the private field. Make sure that the Appearance > Editor panel is accessible.
Best regards,
IsmaelHi,
Did you remove the script? That code should look for every sections and grid inside the body container and append it to the main wrapper. I would like to test it but the Appearance > Editor panel is not accessible. Please enable it or post the FTP details in the private field.
You may need to set the builder to debug mode:
// https://kriesi.at/support/topic/debug-builder/
Best regards,
IsmaelNovember 15, 2018 at 8:43 am in reply to: How can I put in the Google Captcha in the Enfold contact form #1033830Hi,
Glad it’s working. To fix the “jump” issue, look for this line:
window.location.hash = grecaptcha.getResponse();Below, add this code:
if( history.pushState ) { history.pushState(null, null, window.location.hash); } else { location.hash = window.location.hash; }Best regards,
IsmaelHi,
Glad it worked. Try to remove the “avia_events_custom_post_nav” filter on a “after_setup_theme” or “init” hook.
add_action( 'after_setup_theme', function() { // remove filter here }, 10 );// https://codex.wordpress.org/Function_Reference/remove_filter
Best regards,
IsmaelHi,
Thanks for the update. As a workaround, you can use the default video shortcode.
// https://codex.wordpress.org/Video_Shortcode
Is it working properly for youtube videos?
Best regards,
IsmaelNovember 14, 2018 at 3:14 pm in reply to: Einstellung – MyEnfold Child Theme Optionen und Customizerbereich futsch #1033520Hey frosch178,
Thank you for using Enfold.
The theme options are stored in the database and a backup of that option can be created inside the Enfold > Import/Export panel. Just export the theme settings file and import it back when needed. Unfortunately, we can’t help you restore entries from your local installation. You may have to redo the settings if you forgot to create a copy of the settings or a backup.
Best regards,
IsmaelHey kalencolt,
Thank you for using Enfold.
You may be able to achieve the gallery tiles with the masonry gallery element but you have to add a few css codes in order to control the height of the grid row cells.
Best regards,
IsmaelHi,
I re-added the markup of the sub menu element in the functions.php file. This time I used the actual submenu shortcode instead of the html.
Best regards,
IsmaelNovember 14, 2018 at 2:44 pm in reply to: Line Showing Under Diagonal Borders Even Enfold Demo Sites in Chrome for Android #1033512Hi,
Thanks for the info. That is quite helpful. Unfortunately, we can’t address issues that are related to the phone settings. We’ll close the thread now.
Best regards,
IsmaelHey Guenter,
Thank you for using Enfold.
We’ll forward the issue to our devs.
Best regards,
Ismael -
AuthorPosts
