Forum Replies Created
-
AuthorPosts
-
Hi,
Do you have version 4.5.2? This change had been included since version 4.3.1.
– fixed: Fix maintenance mode not working with Yoast
// https://kriesi.at/documentation/enfold/changelog/
Best regards,
IsmaelHi,
I’m still getting the same “Deleted Project” error. Can we access the gmail account where you created the project?
Best regards,
IsmaelHi,
Where did you add the code? I can’t find it in the functions.php file.
I also noticed that you’re not using a child theme. It is highly recommended to create one for every WordPress installation.// https://kriesi.at/documentation/enfold/child-theme/#how-child-themes-work
Best regards,
IsmaelHi,
The “aviaCookieConsent” cookie is being set properly but it doesn’t seem to be recognized when switching languages. Do you mind if wee access your file server? Please post the FTP details in the private field.
Best regards,
IsmaelHey!
You can start with the following css code.
/* mega menu title */ #top #header .mega_menu_title a { color: inherit; font-size: 17px; line-height: 1.1em; padding: 0; margin: 0; background: transparent; border: none; } /* mega menu links */ #top #header .avia_mega_div > .sub-menu > li > ul > li a { width: auto; float: none; display: block; border: none; padding: 3px 12px 3px 12px; font-weight: normal; height: auto; line-height: 23px; }
Cheers!
IsmaelHi,
Can you give us a screenshot again? The ones above are no longer available. FYI, we don’t provide support for third party plugins as stated on our support policy, so you have to keep in touch with the plugin developer because they are more familiar with their code. If you want to fully disable the theme’s mega menu script, edit the functions.php file and remove this code:
//mega menu inclusion (only necessary with sub menu items) $condition = (avia_get_submenu_count('avia') > 0); avia_enqueue_script_conditionally( $condition , 'avia-megamenu', $template_url."/js/avia-snippet-megamenu.js", array('avia-default'), $vn, true);
Or dequeue it manually.
// https://codex.wordpress.org/Function_Reference/wp_dequeue_script
Best regards,
IsmaelHi,
Thanks for the update. Set the visibility property value from “none” to “hidden”. Or just set the “display” property to “none”.
.image-overlay .image-overlay-inside { visibility: hidden; }
OR
.image-overlay .image-overlay-inside { display: none !important; }
Best regards,
IsmaelJanuary 23, 2019 at 3:32 am in reply to: How to put a 3/4 column in the center of the page? #1057549Hi,
You should add that class attribute directly in the column itself. Have you tried that?
Best regards,
IsmaelHey HostageMedia,
Thank you for using Enfold.
Having a child theme is highly recommended, but you can always activate any snippet plugin if you don’t want to create a child theme and as suggested on the previous thread, the “avia_responsive_mega_menu” class can be overridden.
// https://wordpress.org/plugins/code-snippets/
// https://wordpress.org/plugins/my-custom-functions/Best regards,
IsmaelJanuary 23, 2019 at 3:14 am in reply to: No Avia Layout Builder on old an new pages – tryed Classic Editor #1057546Hey FlorianMeise,
Thank you for using Enfold.
You have to upgrade WordPress to 5.0.2 and the theme to version 4.5.2. Those updates should fix the issue.
Best regards,
IsmaelJanuary 22, 2019 at 4:40 pm in reply to: Exclude one portfolio item on list of portfolio items #1057296Hi,
You can add that code in the child theme’s functions.php file.
That filter is located in the config-templatebuilder > aviashortcode > av-helper-masonry.php file.Best regards,
IsmaelJanuary 22, 2019 at 4:38 pm in reply to: spam email from contact form even with the google reCAPTCHA 2 #1057295Hi,
If you decided to use the plugin, then you have to install their own recaptcha or honeypot plugin for added security.
// https://wordpress.org/plugins/contact-form-7-honeypot/
// https://contactform7.com/recaptcha/Best regards,
IsmaelJanuary 22, 2019 at 4:24 pm in reply to: Autoplay Vimeo video added to homepage with Avia Video block #1057285Hi,
The thread is getting a bit too long. Please create a new thread or ticket then we’ll continue there.
You can also hide that element on mobile view and display an image with a link to the vimeo video.Best regards,
IsmaelJanuary 22, 2019 at 5:34 am in reply to: Exclude one portfolio item on list of portfolio items #1057025Hi,
You should be able to use the “avia_masonry_entries_query” filter to exclude certain entries from the masonry element on a specific page. Example:
add_filter('avia_masonry_entries_query', 'avia_masonry_entries_query_mod', 10, 2); function avia_masonry_entries_query_mod($query, $params) { if( is_page(1009871) ) { $query['post__not_in'] = array( 6254 ); } return $query; }
The filter above will exclude the item with the id 6254 from the page 1009871 (aumento-de-pomulos).
Best regards,
IsmaelHi,
Thanks for the info. You can start with this css code:
#top .inner_product_header { min-height: 0; border-bottom: 1px solid gray; } #top .avia_cart_buttons { border-top: 0; } #top .quantity { text-align: center; margin-top: 17px; }
Best regards,
IsmaelJanuary 22, 2019 at 5:16 am in reply to: Youtube Videos with no infos and now follow-Up videos from others (and no contol #1057023Hi,
Thanks for the update. According to the youtube player API, you will no longer be able to disable related videos.
The behavior for the rel parameter is changing on or after September 25, 2018. The effect of the change is that you will not be able to disable related videos.
// https://developers.google.com/youtube/player_parameters#release_notes_08_23_2018
Best regards,
IsmaelHi,
Which one is your blog page? It’s not working as it should because the “Aktuelles” page was set as both front and blog page in the theme options. I deselected it as blog page temporarily, so you have to choose another page for your blog.
Best regards,
IsmaelHey medienvirus,
Thank you for using Enfold.
We created a plugin for it but you have to use V2.
// https://github.com/KriesiMedia/enfold-library/tree/master/customizations/enfold-recaptcha
Best regards,
IsmaelHey philcrothers,
Thank you for using Enfold.
Go to the Screen Options and enable the “Link Target” option. More info here: https://www.megamenu.com/documentation/how-to-open-menu-links-in-a-new-tab-or-window/
Best regards,
IsmaelHi,
The code should look something like this:
// exclude categories add_filter( 'avia_blog_post_query', 'avia_blog_post_query_mod', 10, 2 ); function avia_blog_post_query_mod($query, $params) { if( is_page('home') ) { // exclude meat category when the current page is "home" $query['tax_query'][] = [ 'taxonomy' => 'category', 'field' => 'name', 'terms' => 'meat', 'operator' => 'NOT IN', ]; } if( is_page('fish') ) { // exclude an array of categories on the "fish" page $query['tax_query'][] = [ 'taxonomy' => 'category', 'field' => 'name', 'terms' => array('meat', 'vegetables', 'fruits'), 'operator' => 'NOT IN', ]; } return $query; }
Refer to the documentation for more info:
// https://developer.wordpress.org/reference/functions/is_page/
// https://codex.wordpress.org/Class_Reference/WP_Query#Taxonomy_ParametersBest regards,
IsmaelHi,
Thank you for using Enfold.
There are no errors in the console and the menu is displaying properly.
Screenshot: https://imgur.com/a/XjJ370y
Is this fixed?
Best regards,
IsmaelHi,
Did you find a masonry element in the page? Let us know if you’re still having the issue.
Best regards,
IsmaelJanuary 22, 2019 at 4:21 am in reply to: Enfold Kontaktformular hat Probleme mit outlook.com und hotmail.com #1057008Hi,
Thank you for using Enfold.
These steps might help: https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-
Best regards,
IsmaelHi,
You can toggle the elements’ visibility in their options panel. Just look for the Screen Options tab.
Best regards,
IsmaelHey kinnear,
Thank you for using Enfold.
Did you get it to work? The map is displaying properly.
Best regards,
IsmaelHi,
It doesn’t look blurry on my end. Have you tried to insert a larger image? The size of the current image is only 500x300px.
Best regards,
IsmaelHey Uncannystevo,
Thanks for the info.
I modified the plugin a bit. You have to modify the “public/class-enfold-recaptcha-public.php” file and edit this code around line 196:
var form = jQuery(".avia_ajax_form");
Replace it with:
var form = jQuery(".avia_ajax_form").not(".avia-mailchimp-form");
Best regards,
IsmaelHi,
I tried login but the info are incorrect. Please check the login details carefully.
Best regards,
IsmaelJanuary 21, 2019 at 2:35 pm in reply to: spam email from contact form even with the google reCAPTCHA 2 #1056674Hey YongyanLi,
Thank you for using Enfold.
Have you tried installing a security plugin like Sucuri or WordFence? You can also use a third party contact form plugin like Gravity Form or Contact Form 7 to prevent spammers from abusing the current or default contact form.
Best regards,
Ismael -
AuthorPosts