Forum Replies Created
-
AuthorPosts
-
Hi,
Are you referring to the lightbox images? You can’t assign a different image or image size on mobile view. That option is not available out of the box. Have you tried installing a different lightbox plugin? I’m not sure if there is a lightbox plugin with that option, but it’s worth a try.
Best regards,
IsmaelHi,
You’re welcome. Please open a new thread if you need anything else.
Best regards,
IsmaelHi,
Yes, the file is there but it’s not loaded or the scripts are minified. Please give us access to the dashboard.
Best regards,
IsmaelHi,
The password is incorrect. Please check the login details carefully.
FYI, I updated the plugin a bit. Please delete the whole “enfold-recaptcha” directory and replace it with this:// https://github.com/KriesiMedia/enfold-library/tree/master/customizations/enfold-recaptcha
Best regards,
IsmaelHi,
Thanks for the update.
The header in the site is not responding as it should. The “header-scrolled” indicator or class attribute is always enabled even if you haven’t scrolled yet. Please disable the plugins temporarily and then update the theme to version 4.5.3.
Best regards,
IsmaelHi,
The theme’s mobile menu script is located in the js > avia.js file. Look for this code and comment it out, if you want to disable the mobile/hamburger menu.
//activates the hamburger mobile menu avia_hamburger_menu();
Best regards,
IsmaelHi,
Thanks for the update.
Did you minify or compress the scripts? I can’t find the “avia-snippet-cookieconsent.js” anywhere and I tried to get to the dashboard but it’s not accessible.
Best regards,
IsmaelHi,
Thanks. I modified the code a bit. It’s now displaying the “rel=prev” without the “rel=next” attribute on the last page.
Best regards,
IsmaelHi,
You can use this one if you want to remove the overlay completely.
.avia-image-overlay-wrap a.avia_image .image-overlay { display: none !important; }
Best regards,
IsmaelHi,
Thank you for the update. Can we have access to the site? We would like to check the settings.
Have you tried enabling the compression settings with the plugins disabled?Best regards,
IsmaelHi,
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,
Ismael -
AuthorPosts