Forum Replies Created
-
AuthorPosts
-
October 30, 2018 at 5:07 am in reply to: Response does not work on landscape (iPad) and scroll to top in mobil #1027845
Hey formwild,
Thank you for using Enfold.
1.) I can’t see anything unusual with the image background on mobile view. Can you give us a screenshot?
2.) You can use this css code to redisplay the scroll to top button on mobile view.
@media only screen and (max-width: 767px) { .responsive #scroll-top-link { display: noneblock } }
Best regards,
IsmaelHi,
Thanks for the update.
This css code should help.
#menu-item-1622 { min-width: 190px; }
Best regards,
IsmaelHey SoWeAre,
Thank you for using Enfold.
You can set the contact form to redirect on the same page instead of displaying a message.
Best regards,
IsmaelOctober 30, 2018 at 4:47 am in reply to: Bild leicht vergrößern und Bild mit Link fubktioniert in Version 4.5 nicht mehr #1027840Hey frasche,
Thank you for using Enfold.
1.) The css styles for the hover effect must have been deleted. You can add this css code for now until this is fixed.
.avia_image { -webkit-transition: all 0.7s; transition: all 0.7s; } .av-hover-grow:hover img { -webkit-transform: scale(1.1); transform: scale(1.1); }
2.) I can’t reproduce that issue on my end. Can you give us a link to a test page?
Best regards,
IsmaelHi,
That is actually the theme’s map shortcode. If you want to shorten it, you can create your own custom shortcode.
// https://codex.wordpress.org/Shortcode_API
function my_own_map_shortcode_func( $atts ){ return "theme map shortcode here"; } add_shortcode( 'my_own_map_shortcode', 'my_own_map_shortcode_func' );
Shortcode:
[my_own_map_shortcode]
Best regards,
IsmaelHi,
Sorry for the late response.
The layer slider is hidden on smaller screens when I checked the site.
Have you tried adding a unique class attribute to the heading layers? You can then use that selector inside a css media query to adjust the font size on mobile devices.Example:
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .layer-custom-css-class { font-size: 16px; } }
Adjust the “layer-custom-css-class” selector with yours.
Best regards,
IsmaelOctober 30, 2018 at 4:18 am in reply to: Isuue with veiwing the Enfold theme on Mobile Devices #1027833October 30, 2018 at 4:11 am in reply to: Gallery – big image too much size / size does not change on selection #1027832Hi,
Sorry for the late response.
Have you tried using css media queries to adjust the height of the gallery on different screen sizes?
@media only screen and (min-width: 768px) { /* Add your Desktop Styles here */ #top div .avia-gallery .avia-gallery-big-no-crop-thumb { height: 200px !important; } } @media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ #top div .avia-gallery .avia-gallery-big-no-crop-thumb { height: 150px !important; } }
Best regards,
IsmaelHi,
Fixed or parallax background are actually disabled on mobile devices by default because of the lack browser support for “fixed” positioned elements or backgrounds.
// https://caniuse.com/#search=fixed
iOS has an issue preventing background-attachment: fixed from being used with background-size: cover – see details
Firefox does not appear to support the local value when applied on a textarea element.
Chrome has an issue that occurs when using the will-change property on a selector which also has background-attachment: fixed defined. It causes the image to get cut off and gain whitespace around it.You may need to implement this fix: https://kriesi.at/support/topic/playing-with-new-demos/#post-871865
Best regards,
IsmaelHi,
Sorry about that. I can’t reproduce the issue on my own installation. Can we access the site? Please post the login details in the private field.
Best regards,
IsmaelOctober 30, 2018 at 3:40 am in reply to: Working with ALB on tablets not possible due to hover states of editing icons #1027821Hey Gitte,
Thank you for using Enfold.
You can try this css code to make the editor icons display without hovering the elements.
add_action( 'admin_head', 'ava_alb_display_icons' ); function ava_alb_display_icons() { echo '<style>.avia_sortable_element .avia_sorthandle, .avia_sorthandle .avia-edit-element, .avia-save-element, .avia-delete, .avia_sorthandle .avia-clone {opacity: 1 !important; } .avia_sortable_element { margin-top: 25px; } </style>'; }
Best regards,
IsmaelHi,
I would like to apologize for the late response. Not sure how I missed your thread.
Did you switch to the default editor? It’s not full width because the advance layout builder doesn’t seem to be activated.
Best regards,
IsmaelHi,
Thanks for the update.
Use the following plugin to translate the string or text of the product select field.
// https://wordpress.org/plugins/say-what/
I can’t see the page, so I’m not really sure if that’s what you’re referring to.
Best regards,
IsmaelHi,
Thank you for using Enfold.
@charlotteraboff: Try to enable the theme’s Performance > File Compression settings or activate any resource minification plugin.
@jakobl1976: Please open a new thread with the site url and the login credentials.Best regards,
IsmaelHey weasyweb2015,
Thank you for using Enfold.
There should be a minimum width applied to the “.av-tab-section-tab-title-container” container but since the “nl meals” are hidden initially, the minimum width value is being set to 0. You can fix this with css:
.av-tab-section-tab-title-container { min-width: 1024px !important; }
However, doing so will require a lot of css media queries. Another workaround is to calculate the overall width of the tab title containers and then apply the result as the minimum width of the “.av-tab-section-tab-title-container” on resize.
Best regards,
IsmaelHi,
I think this is already fixed on version 4.5. Please upgrade the theme manually.
Change log:
- fixed: an issue with portfolio javascript breaking on complex ALB pages
Best regards,
IsmaelHi,
Try to use the strip_tags function.
// http://php.net/manual/en/function.strip-tags.php
return strip_tags ( $new_title );
Best regards,
IsmaelOctober 30, 2018 at 2:42 am in reply to: product grid and product slider ignore taxonomy selection #1027806Hi,
The following code in the functions.php file alters the product slider query.
add_action( 'pre_get_posts', 'hidden_search_query_fix' ); function hidden_search_query_fix( $query = false ) { if ( ! is_admin() && isset( $query->query['post_type'] ) && $query->query['post_type'] === 'product' ) { $tax_query = $query->get( 'tax_query' ); $tax_query = array(); $tax_query[] = [ 'relation' => 'OR', [ 'taxonomy' => 'product_visibility', 'field' => 'name', 'terms' => 'exclude-from-catalog', 'operator' => 'NOT IN', ], [ 'taxonomy' => 'product_visibility', 'field' => 'name', 'terms' => 'exclude-from-catalog', 'operator' => '!=', ], ]; $query->set( 'tax_query', $tax_query ); } }
The product slider works properly when it’s disabled.
Best regards,
IsmaelOctober 30, 2018 at 2:28 am in reply to: Overview for really all ENFOLD elements at one place? #1027801Hi,
I think those styles are not implemented yet. There are no style options in the widget. I’ll ask the dev team.
Best regards,
IsmaelHi,
Thanks for the info.
I’ve added this code in the Quick CSS field.
#top .sticky_placeholder { z-index: -1; }
Please remove the browser cache prior to checking the page.
Best regards,
IsmaelOctober 29, 2018 at 3:56 pm in reply to: Postslider.php – how to switch title and category? #1027605Hey Gitte,
Thank you for using Enfold.
You can use this script to move the categories before the post title..
add_action('wp_footer', 'ava_custom_script_move_blog_info'); function ava_custom_script_move_blog_info(){ ?> <script type="text/javascript"> (function() { const posts = document.querySelectorAll('.slide-entry'); if( posts ) { posts.forEach( post => { const cat = post.querySelector('.blog-categories'); const title = post.querySelector('.slide-entry-title'); cat.parentNode.insertBefore(title, cat.nextSibling); }); } })(); </script> <?php }
Best regards,
IsmaelHey Carsten,
Thank you for using Enfold.
Did you add this css code?
.avia-image-overlay-wrap a.avia_image .image-overlay { -webkit-transform: scale(1.5); -ms-transform: scale(1.5); transform: scale(1.5); }
That css code enlarges the overlay.
Best regards,
IsmaelHey Papergena,
Thank you for using Enfld.
1-2.) You need to add the “Product Purchase Button” manually in the advance layout builder. It’s under the “Plugins Additions” panel.
3.) Did you create products variations?
Again, you may need to add the “Product Purchase Button” element if you’re using the advance layout builder for the variable product.
Best regards,
IsmaelHey heiratenmitstil,
Thank you for using Enfold.
It actually depends on the site’s specifications. The theme will automatically resize the logo based on the current header height value. You can also set the header height to a custom pixel value based on the size of the logo.
Best regards,
IsmaelHey Charlotte,
Thank you for using Enfold.
I don’t see anything unusual with that menu item. How do you want it to look?
Best regards,
IsmaelHi,
You should be able to change the breaking point with that same css code.
@media only screen and (max-width: 1500px) { .responsive #top #wrap_all .flex_column.av-break-at-tablet, .responsive #top #wrap_all .av-break-at-tablet .flex_cell { margin: 0px; margin-bottom: 0px !important; width: 100%; display: block; } }
Best regards,
IsmaelHi,
Thanks for the update.
You can use this css code to increase the width of the lightbox container.
.mfp-iframe-holder .mfp-content { width: 100%; max-width: 80vw; }
Best regards,
IsmaelHi,
Are you using an old API key from an old project? It might still be using the deprecated v2 version of the API. Please delete the project and then create a new one. Make sure that the url of the corresponding websites are specified in the Application Restrictions section.
If you are loading Maps JavaScript API from the deprecated v2 path with an old v2 key, you will get the NoApiKeys warning, even if you specified the key parameter. Please check the v2 to v3 upgrade guide and migrate your application to Maps JavaScript API v3.
// https://developers.google.com/maps/documentation/javascript/error-messages#no-api-keys
Best regards,
Ismael -
AuthorPosts