Forum Replies Created
-
AuthorPosts
-
Hey almondmike_a,
Thank you for using Enfold.
There is an incompatibility issue between the megamenu and the popup maker plugin. A fix is included in the theme docs.
// https://kriesi.at/documentation/enfold/mega-menu/#mega-menu-appears-as-a-normal-menu
Best regards,
IsmaelHey 2SINN,
Thank you for using Enfold.
Is it working properly when you use a youtube or a mp4 video? I checked it on IE and I get an error, which seems to be related to vimeo. I’m not sure what it is though because there is no other info.
Access is denied. File: 166486624, Line: 1, Column: 1Best regards,
IsmaelOctober 18, 2018 at 12:55 pm in reply to: Pinterest Button Addition to Images on Blog Posts #1023328Hey kesdeg,
Thank you for using Enfold.
Can we access the dashboard? I would like to check the pinterest script.
Where did you get the script? Please provide a reference or the documentation.Best regards,
IsmaelHey kesdeg,
Thank you for using Enfold.
Have you tried using the “Categories” widget from the Appearance > Widgets panel? The widget displays a list of post categories.
Best regards,
IsmaelHey rivandemo,
Thank you for using Enfold.
What is the current size settings? The items may not be sorted based on their slug when the images have different sizes because of how the isotope script calculates the item position. You may need to use a different size settings.
Best regards,
IsmaelOctober 18, 2018 at 12:34 pm in reply to: Fatal error updating theme – Fatal Error: Call to undefined function avia_is_bur #1023317Hi,
The frontend went down after activating the theme. Please disable the plugins and then upgrade the theme to version 4.5 before activating it.
Best regards,
IsmaelHey Rusty,
Thank you for using Enfold.
You can add this css code to change the opacity of the image.
.avia_desktop .av-hover-overlay-active .av-masonry-image-container { opacity: 1; }And this one to remove the overlay.
#top .av-inner-masonry:hover:before { background: transparent; transition: all .5s cubic-bezier(0.63, 0.7, 0.55, 1.03); }Best regards,
IsmaelOctober 18, 2018 at 12:06 pm in reply to: Fatal Error with nextgen plus using lightbox pro effect on mobile devices #1023310Hi,
I meant the complete error report from the browser console. Is that where you see the error?
Best regards,
IsmaelHi,
Thanks for the update. Try this code in the functions.php file.
add_action('after_setup_theme', 'avf_register_default_bbpress_style', 1000 ); function avf_register_default_bbpress_style() { remove_filter('bbp_default_styles', 'avia_bbpress_deregister_default_assets', 10, 1); }Best regards,
IsmaelOctober 18, 2018 at 12:01 pm in reply to: How to Combine both Posts & Custom Taxomy Categories in Blog Posts Element #1023306Hi,
It is working properly on my end. Did you copy the code from your email? Please copy it directly from the forum. Or post the FTP login details in the private field, so that I can add it for you.
Best regards,
IsmaelHi,
You can move the layer below the others. Have you tried that?
Best regards,
IsmaelHi,
What did they tell you about the “iavsd2019” project? Did they check that? Can we access your Gmail account?
Please upgrade to version 4.5 while you’re waiting for their response.Best regards,
IsmaelHi,
The mobile menu is working properly when the includes > helper-main-menu.php and the child theme’s avia.js files are disabled.
Best regards,
IsmaelHi,
It turned out to be an issue with the array_map function and its first argument, which is an anonymous function. You have to upgrade PHP to version 7.2. Please ask your hosting provider for assistance if you’re not familiar with it.
Best regards,
IsmaelHi,
Thanks for the update. You can toggle the visibility of the color section for different screen sizes in the Screen Options panel. For the layer slider, set the visibility in the Slider Settings > Mobile panel.
Best regards,
IsmaelHi,
Thanks for the update. Please use this filter in the functions.php file.
add_filter('avia_contact_form_args', 'avia_contact_form_args_mod', 10, 2); function avia_contact_form_args_mod($form_args, $post_id) { $form_args['autoresponder_subject'] = 'Hostettler HR & LAW'; return $form_args; }Best regards,
IsmaelHi,
@demeonjamie: You have to follow the instructions here:
// https://kriesi.at/support/topic/show-featured-images-in-search-results-page/
Best regards,
IsmaelHey ronduring,
Thank you for using Enfold.
Create a layer, set it to html and add a single div to it. Set the width and height to 100% and then add the gradient css code in the layer’s Styles > Custom CSS field. Adjust the opacity or transparency of the layer as needed.
Best regards,
IsmaelOctober 17, 2018 at 4:39 pm in reply to: How to Combine both Posts & Custom Taxomy Categories in Blog Posts Element #1022868Hey aarynm,
Thank you for using Enfold.
You can try this filter in the functions.php file.
// blog posts and event query add_filter( 'avia_post_slide_query', 'avia_post_slide_query_mod', 1000, 2); function avia_post_slide_query_mod( $query, $params ) { $posts = get_posts( array( 'posts_per_page' => 3, 'categories' => 369 ) ); $event = tribe_get_events( array( 'posts_per_page' => 1, 'tax_query'=> array( array( 'taxonomy' => 'tribe_events_cat', 'field' => 'term_id', 'terms' => array(370) ) ) ) ); foreach($posts as $post) { $include[] = $post->ID; } $include[] = $event[0]->ID; if ( ! is_admin() ) { array_unshift_assoc($query['tax_query'], 'relation', 'OR'); $query['tax_query'][] = array( 'taxonomy' => 'tribe_events_cat', 'field' => 'term_id', 'terms' => array(38), 'operator' => 'IN', ); $query['post__in'] = $include; $query['post_type'][] = 'tribe_events'; } return $query; }Best regards,
IsmaelHi,
Thanks for the update. The API key that you provided doesn’t end with “WQN4”. Did he check the project or the API key that is related to the “iavsd2019” site? Did you create separate projects for each site?
Best regards,
IsmaelHi,
Thanks for the update. Please provide the FTP details in the private field. We’ll check the files.
Best regards,
IsmaelHi,
Great! We’ll close the thread now. Please feel free to open a new one if you need anything else. :)
Best regards,
IsmaelHi,
What do you mean “it’s a long running script”? It’s just a simple script that closes the mobile menu when you click on the link.
Best regards,
IsmaelHi,
Thanks for the update. Try use the “ava_after_main_container” hook instead of adding the cart icon in the sidebar.
add_action("ava_after_main_container", "ava_after_main_container_mod", 10); function ava_after_main_container_mod() { // your cart icon code here }Best regards,
IsmaelHi,
Users can actually change the value directly in the field., which is the default way of adjusting the product quantity. The quantity buttons are just added by the theme.
Best regards,
IsmaelOctober 17, 2018 at 3:41 pm in reply to: Color section with transparent header not working on Enfold 4.4.1 #1022809Hi,
Edit the slide in the full screen slider. Set the “Image Position” to “Center center”.
Best regards,
IsmaelHi,
I’m not sure if there’s an available tool for that right now. There is a plugin called “Integrity Checker” but it can only check themes that are listed in the wordpress.org site. As a workaround, you can do a manual update to remove unwanted files from your installation. Remove the theme and then upload a fresh copy via FTP.
Best regards,
IsmaelOctober 17, 2018 at 3:21 pm in reply to: Problems with Google Maps: "Google Maps API warning: RetiredVersion" #1022801 -
AuthorPosts
