Forum Replies Created
-
AuthorPosts
-
Hi,
Thanks for the info. I’ll forward this thread again, just to make sure you get an update. Please wait for Kriesi’s response.
Best regards,
IsmaelHey Peter,
Thank you for creating a new thread.
I can now login to the site but I need another authentication to access the actual page. Please add it in the private field. Or just set the user role to admin.
This site is password protected while under development. Enter your password to access the development site.
Best regards,
IsmaelHi,
You have to remove this code first:
.responsive #top #wrap_all .flex_column.avia-builder-el-9:empty { margin-top: 100px !important; }
And then add this one:
.responsive #top #wrap_all .av-flex-cells .no_margin { overflow: visible; }
Add a unique Section ID to the grid row element containing the columns if you want to solely apply this modification to that particular column.
Best regards,
IsmaelHi,
You can usually ignore those errors if you don’t encounter any layout issues when you test the page on a mobile device. Do you see any issues on your site? You can also redirect those url to the home page or wherever you want and then set the line in your google search console as “mark as fixed”.
// https://support.google.com/webmasters/answer/35120?hl=en
Best regards,
IsmaelNovember 8, 2018 at 3:28 am in reply to: Set the Burger Menu /Navigation Break Width in Custom CSS #1031063Hi,
It happens when the screen width is between 989px and 768px.
media only screen and (max-width: 989px) and (min-width: 768px) { .responsive body.boxed#top, .responsive.html_boxed.html_header_sticky #top #header, .responsive.html_boxed.html_header_transparency #top #header { max-width: 100%; } }
You can adjust the css media query view port values.
Best regards,
IsmaelHi,
I’m sorry for the late response. This script should help fix the “stacking up” issue.
// https://kriesi.at/support/topic/parallax-bug-on-background-images-with-pictures/#post-1013455
I’m not really sure if I understand the question regarding the “taxonomy”. Can you provide a screenshot of that? What do you mean by “taxonomy function”?
Best regards,
IsmaelHi,
It seems to be created by the “addthis” widget. Did you add any scripts related to that widget?
Best regards,
IsmaelHey GCSkye,
Thank you for using Enfold.
You cannot return a whole menu when using the “wp_nav_menu_items” filter. You need to edit the includes > helper-main-menu.php file directly and load the appropriate wp_nav_menu based on your conditions.
// https://developer.wordpress.org/reference/functions/wp_nav_menu/
You can also use the “avf_alternate_mobile_menu_id” filter but it will override the default heading settings.
Best regards,
IsmaelHey ITIS,
Thank you for using Enfold.
I’m getting this error in the console on desktop view.
// /wp-admin/admin-ajax.php:1 Failed to load resource: the server responded with a status of 500 ()
The “wpv_get_view_query_results” ajax function is not working properly because of that. Please ask your hosting provider if the mod_security rule is blacklisting or blocking the admin-ajax.php file.
Best regards,
IsmaelNovember 8, 2018 at 2:31 am in reply to: How to override Enfold mods to The Events Calendar in Enfold-Child? #1031054Hi,
Thanks for the update. You should be able to override the template in your child theme but you have to remove the theme’s default template paths. Add this code in the functions.php file:
add_action('after_setup_theme', function() { if(is_child_theme()) remove_action('tribe_events_template', 'avia_events_template_paths', 10, 2); }); add_action('tribe_events_template', 'avia_events_template_paths_mod', 10, 2); function avia_events_template_paths_mod($file, $template) { $redirect = array('default-template.php', 'single-event.php'); if(in_array($template, $redirect)) { $file = get_stylesheet_directory() . "/tribe-events/views/".$template; } return $file; }
You can now add the single-event.php file inside the child theme’s “tribe-events/views” folder.
Best regards,
IsmaelNovember 8, 2018 at 2:24 am in reply to: Using Button element to play a video in a lightbox #1031053Hi,
Thanks for the update. You can actually use the video url as the link and it will open in a lightbox. Do you really need to open the video inside a page?
Best regards,
IsmaelHey dondela,
Thank you for using Enfold.
1-2) These css codes should help.
@media only screen and (min-width: 479px) { #av_product_description * { font-size: 20px; line-height: 1.4em; } .responsive #top #wrap_all .container { width: 95%; max-width: 95%; } }
3) Please enable the debug mode and then update the custom footer page. The columns doesn’t respond or resize properly because the whole section is outside the wrapper or main container.
// https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#debug-mode
Best regards,
IsmaelNovember 8, 2018 at 2:00 am in reply to: Contact form spam with privacy policy message = false #1031049Hi!
Yes, you have to add it in the functions.php file. It would be better if you have a child theme or just install this plugin add the snippet in the custom functions panel.
// https://wordpress.org/plugins/my-custom-functions/
Cheers!
IsmaelHi,
I’m very sorry for the late response. Have you tried installing security plugins like Sucuri or WordFence? They may be able to block those spams or at least report where they’re coming from.
For additional security, try to implement the reCAPTCHA widget to the form.
// https://kriesi.at/support/topic/contact-form-spam-with-privacy-policy-message-false/#post-1030153
Related thread: https://www.wpbeginner.com/opinion/sucuri-review-how-sucuri-helped-us-block-450000-wordpress-attacks-in-3-months/
Best regards,
IsmaelHey mobiloclean,
Thank you for using Enfold.
Where can we see the site? Did you enable the theme’s preloader option? Have you tried disabling it?
Best regards,
IsmaelHey ezvisa,
Thank you for using Enfold.
Are you using an extension to create those tabs? Please provide a screenshot.
Use this css code to remove the quantity buttons:div form.cart div.quantity { display: none !important; }
Best regards,
IsmaelNovember 8, 2018 at 1:42 am in reply to: Enfold Theme – Layer-Slider – Reduce number of sliders #1031045Hey Jochen,
Thank you for using Enfold.
This is possible but you have to use the slider’s events callback. Unfortunately, we won’t be able to help you with that. Please contact a freelance developer.
// https://layerslider.kreaturamedia.com/documentation/#layerslider-api
Best regards,
IsmaelNovember 6, 2018 at 11:58 am in reply to: How to show a default featured image (posts & pages!) if there is none? #1030349Hi,
This thread should help you display thumbnails on the search results page:
// https://kriesi.at/support/topic/show-featured-images-in-search-results-page/
If you want to add a placeholder, look for this line:
$searchthumb = get_the_post_thumbnail( $the_id, 'large' );
Replace it with:
$placeholder = "<img src='PLACE HOLDER IMAGE HERE' />"; $searchthumb = get_the_post_thumbnail( $the_id, 'large' ); $searchthumb = $searchthumb ? $searchthumb : $placeholder;
Best regards,
IsmaelHi,
This filter works on my installation.
add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function( $size ) { $size['width'] = 300; $size['height'] = 300; $size['crop'] = 1; return $size; }, 10, 1);
Please add it in the functions.php file.
Screenshot: https://imgur.com/a/v0HGhbk
Best regards,
IsmaelHi,
Awesome! Please open a new thread if you need anything else. Have a nice day! :)
Best regards,
IsmaelHi,
That is not the case anymore because the old Envato API has been shut down, so the auto update is not going to work. You need to do the manual update if you’re still on v4.4.1. You’ll be able to use the auto update again on v4.5.
Best regards,
IsmaelNovember 6, 2018 at 6:33 am in reply to: Contact form invalidation and validation border color #1030230Hi,
Great! Please open a new thread if you need anything else. :)
Best regards,
IsmaelHi,
Did you install a cache or a copmpression plugin? Please deactivate those temporarily and then add this code in the functions.php file:
function ava_load_wp_media_files() { wp_enqueue_media(); } add_action( 'wp_enqueue_scripts', 'ava_load_wp_media_files' );
Best regards,
IsmaelNovember 6, 2018 at 6:20 am in reply to: LayerSlider – How can First Slide appear only once? #1030224Hi,
Thanks for the update.
Not sure what you mean with transition out.
There is an option in the layer’s Transition panel where you can keep the layer on the canvas forever. Go to the layer’s Transitions > Other Settings panel, set the “Keep this layer visible” to “Forever”. By then, maybe you can remove the first slide and move the drone on the second slide.
Best regards,
IsmaelHi,
Thanks for the update.
This css code should add a red border around the privacy input if it’s not ticked:
.av_form_privacy_check.error { border: 1px solid red; }
Best regards,
IsmaelHi,
I’m not really sure what’s going on with that link. Is it only happening when you use that particular link? Have you tried it on incognito mode?
Best regards,
IsmaelHi,
Alright. Please open a new thread if you need anything else. Thank you for using Enfold.
Best regards,
IsmaelHi,
Thanks for the info. Please remove the mark tag and use this script in the functions.php file instead:
add_action('wp_footer', 'ava_color_closed_event', 9999); function ava_color_closed_event() { ?> <script> (function() { const et = document.querySelector('.tribe-events-single-event-title'); if(et && et.textContent == 'Closed' ) { et.style.color = '#c20b1a'; } })(); </script> <?php }
Best regards,
Ismael -
AuthorPosts