Forum Replies Created
-
AuthorPosts
-
October 30, 2018 at 6:27 am in reply to: Default Template Settings Missing from Event Calendar Pro #1027878
Hi,
Look for this line:
remove_action('tribe_events_template', 'avia_events_tempalte_paths', 10, 2);Replace it with:
remove_action('tribe_events_template', 'avia_events_template_paths', 10, 2);Best regards,
IsmaelOctober 30, 2018 at 6:25 am in reply to: Parent page link works correct but translation doesn't #1027877October 30, 2018 at 6:23 am in reply to: "Slightly increase the image on hover" not workin after update to 4.5 #1027874Hi,
Yes, I found a thread with the same issue today. You can use that css code for now.
Best regards,
IsmaelHi,
I don’t think you can add css in the editor unless it’s wrapped inside a < style > tag.
<style> // style here </style>Best regards,
IsmaelOctober 30, 2018 at 6:15 am in reply to: Table of contents widget: how to show it on top of the content of a post or page #1027872Hi,
You can move that code in the includes > loop-index.php file where the post elements reside, right about line 262 where the title is.
echo $title;– And could you please give me a hint, how to make a shortcode out of it please?
The shortcode:
add_shortcode('avs_toc', 'avs_toc_function'); function avs_toc_function() { $args = array ( 'name' => 'Displayed Everywhere', 'id' => 'av_everywhere', 'description' => '', 'class' => '', 'before_widget' => '<section id="avia_auto_toc-2" class="widget clearfix avia_auto_toc">', 'after_widget' => '<span class="seperator extralight-border"></span></section>', 'before_title' => '', 'after_title' => '', 'widget_id' => 'avia_auto_toc_custom', 'widget_name' => 'Enfold Child Table of Contents', ); $instance = array ( 'title' => 'Toc', 'exclude' => '', 'style' => '', 'level' => 'h1', 'single_only' => 1, 'indent' => 1, 'smoothscroll' => 1, ); $toc = new avia_auto_toc; return $toc->widget($args, $instance); }You can then use this code to render the toc in the template file:
echo do_shortcode('[avs_toc]');Or use it directly in the editor.
Best regards,
IsmaelHi,
Unfortunately, this is still not working. After logging in, I get to a blank page with the text “error”.
What did u do?? Pure magic!!! :-)
Yeah.. It’s pure magic! I didn’t do anything. :D
Best regards,
IsmaelHi,
Great! Not really sure how that modification fixed it but I’m glad it did.
Have a nice day. :)Best regards,
IsmaelOctober 30, 2018 at 5:58 am in reply to: Fatal error updating theme – Fatal Error: Call to undefined function avia_is_bur #1027861Hi,
The old theme doesn’t have a google services field and the scripts are very different. You need to upgrade to the latest version.
Best regards,
IsmaelOctober 30, 2018 at 5:57 am in reply to: Multiple Enfold purchases and Token doesn't seem to work #1027859Hi,
Have you tried using the same token for every site that you owned? You may need to wait for a few minutes or hours before you can use a newly generated token.
Best regards,
IsmaelHi,
You can try this filter in the functions.php file but I’m not sure if this is going to work because it’s not working on my installation. It’s supposed to include every scripts and stylesheets in the compression but I don’t see the distinction between the “all” value and the default “avia-module” when I review the compression script.
add_filter('avf_merge_assets', function() { return array('css' => 'all', 'js' => 'all'); });Please post the FTP details in the private field.
Best regards,
IsmaelOctober 30, 2018 at 5:13 am in reply to: Portfolio grid image load effect speed (version 4.4 and higher) #1027848Hi,
Thanks for the update.
In the latest version, you’ll find that same code in the config-templatebuilder > aviashortcodes > portfolio > portfolio.js file.
Best regards,
IsmaelOctober 30, 2018 at 5:07 am in reply to: Response does not work on landscape (iPad) and scroll to top in mobil #1027845Hey 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 pagesBest 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,
Ismael -
AuthorPosts
