Forum Replies Created
-
AuthorPosts
-
Hi,
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" #1022801Hi,
Thanks for the update. Plugins are loaded before the theme, so the function is not available yet. You can try to call the function inside the “init” or “after_setup_theme” hook. Check if the function or the AviaBuilder class exists.
Best regards,
IsmaelOctober 17, 2018 at 2:58 pm in reply to: Onepager: change h2 title color on focus when scrolling #1022791Hi,
Sure thing. Please feel free to open a new thread if you need anything else. :)
Best regards,
IsmaelHi,
Thanks for the update. Disable the theme’s Performance > File Compression settings temporarily. Enable the settings back once you’re completely done with the site.
Best regards,
IsmaelHi,
I can’t modify the files from the dashboard editor. Please edit the includes > loop-search.php file, look for this code.
$slider = get_the_post_thumbnail(get_the_ID(), 'entry_without_sidebar');
Replace it with:
$slider = get_the_post_thumbnail(get_the_ID(), 'full');
And then add this css code on the Quick CSS field.
.search-result-counter + .big-preview img { width: 100%; } .search-result-counter { line-height: 44px; }
Best regards,
IsmaelOctober 17, 2018 at 4:44 am in reply to: Color Section Background video: Custom Background Image #1022539Hi,
My bad. That is possible but you have to modify the config-templatebuilder > aviashortcodes > section.php file. Look for this code around line 1097:
'video_loop' => true,
Set it to false.
Best regards,
IsmaelOctober 17, 2018 at 4:40 am in reply to: Disable "Enable Overlay" site wide in Advanced Layout Editor #1022537Hi,
Great! Please open a new thread if you need anything else. Thank you for using Enfold. :)
Best regards,
IsmaelOctober 17, 2018 at 4:40 am in reply to: Problem Updating Enfold: "Download failed. Problem downloading theme" #1022534October 17, 2018 at 4:39 am in reply to: Problem Updating Enfold: "Download failed. Problem downloading theme" #1022533Hi,
The new version contains the Envato API as I’ve said earlier. We’ll close this thread now. Please open a new thread if you encounter any issues after the update.
Best regards,
IsmaelHi,
This is an issue with the old Envato API. You need to update the theme manually via FTP because the automatic update on version 4.4.1 is not going to work properly. The new Envato API has been integrated on version 4.5, so you’ll be able to update the theme again automatically in the future.
Best regards,
Ismael -
AuthorPosts