Forum Replies Created
-
AuthorPosts
-
Hi,
Alright. Let us know in a different thread if you have more questions.
Best regards,
IsmaelHey Kersversbusiness,
Thank you for the inquiry.
Did you check the favicon URL after enabling SSL? You may need to adjust the URL of the favicon (Enfold > Theme Options > Favicon) and make sure that the URL is using https instead of http.
Best regards,
IsmaelHey morfologia,
Thank you for the inquiry.
You can adjust the hover effect of the Masonry Gallery by adjusting the Image Hover Effect settings in the Advanced > Animation panel. Set it to the last option to disable the hover effect.
Best regards,
IsmaelHi,
But the other format also points to the same URL. The URL above is just shortened. If you enter the shortened URL in your browser, it will just redirect to the other URL, which is the accepted format in the Advance Layout Builder. Not really sure what is the difference when sharing.
Best regards,
IsmaelHi,
. YouTube’s current default sharing link protocol isn’t recognised by the ALB theme element.
What do you mean? Would you mind providing a link to a documentation about this? We edited the Youtube URL above.
Best regards,
IsmaelHi,
The video elements in the builder including the background video options in the slider only accepts the first format. You will get issues if you use the other format because the theme doesn’t recognize it. Before choosing a video, you will actually see a note about the accepted URL format.
Choose Video
Either upload a new video, choose an existing video from your media library or link to a video by URLA list of all supported Video Services can be found on WordPress.org. YouTube videos will display additional info like title, share link, related videos, …
Working examples, in case you want to use an external service:
Best regards,
IsmaelHi,
Have you tried enabling debugging? There might be an error generated somewhere, which prevents saving from going through. You should also deactivate the plugins temporarily.
Best regards,
IsmaelHey BELHADJAsma,
Thank you for the inquiry.
Most of the animations in the demo are created using the Advanced > Animation options in the Column elements. You can then place other elements such as the Special Heading inside the column.
Let us know if you need more help with the options.
Best regards,
IsmaelFebruary 21, 2023 at 5:18 am in reply to: Dots Menu (Fullwidth submenu element) with current class #1398725Hi,
Thank you for the update.
It was not working because the selector for the “social media” section is incorrect. We modified the code in the functions.php file a bit.
// a custom script // add current-menu-item class to active item function ava_custom_script_mod() { if ( wp_script_is( 'avia-default', 'registered' ) ) { wp_add_inline_script( 'avia-default', ' (function($) { $(document).ready(function() { const setActive = (entry) => { $("#top .av-subnav-menu a").parent("li").removeClass("current-menu-item"); let item = $("#top .av-subnav-menu a[href*=\'" + entry + "\']"); if(!item.attr("href").includes(entry)) return; let list = item.parent("li"); let parent = list.parent("#menu-sub-menu"); if(list.is(".current-menu-item")) return; parent.find("li").removeClass("current-menu-item"); list.addClass("current-menu-item"); } const createObserver = (entry) => { let el = document.querySelector(entry); const observer = new IntersectionObserver(function(entries) { if(entries[0].isIntersecting === true) { setActive(entry); } }, { root: null, threshold: [0.1] }); observer.observe(el); } const anchors = ["#home", "#klassiker", "#ice", "#spritz", "#free", "#social-media"]; anchors.map(anchor => { createObserver(anchor); }); }); })(jQuery); '); } } add_action( 'wp_enqueue_scripts', 'ava_custom_script_mod', 9999);We also added this css code in the child theme’s style.css file to differentiate the active item from the rest of the menu items.
.av-subnav-menu .current-menu-item { color: red; background: red; }You can adjust it as needed.
Best regards,
IsmaelHey tom_on_wheels,
Thank you for the inquiry.
1.) These elements will only be enabled or will only be visible in the single post page. If you want to adjust grid layout, you have to modify the shortcode templates in the enfold\config-templatebuilder\avia-shortcodes\postslider file directly.
2.) Since you are using the Advance Layout Builder (ALB) for the post, you have to add the Comments element manually in the builder or the editor in order to display the discussions and the comment form.
3.) You can add this filter in the functions.php file to adjust the layout of the archive or category pages.
add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); function avia_change_category_blog_layout($layout, $context){ if($context == 'archive') $layout = 'blog-grid'; return $layout; }If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHi,
Sorry about that. Have you tried editing the file in your IDE or any text editor directly instead of doing it in the Appearance > File Editor panel? Since this is a local installation, it will be difficult for us to debug issue. Editing via the theme file editor works correctly on our local installation using the latest version of the theme.
Best regards,
IsmaelFebruary 21, 2023 at 4:37 am in reply to: Fehler “undefined array key” nach Umstellung auf PHP 8.0 #1398721Hi,
Thank you for the info.
Looks like you have modified some of the shortcodes or builder elements in your child theme. Please get a fresh copy of the shortcode files from the enfold\config-templatebuilder\avia-shortcodes folder in the parent theme, make sure to copy the folder structure for each shortcodes, then redo the modifications.
Best regards,
IsmaelHey Triton,
Thank you for the inquiry.
1-2.) The theme doesn’t contain a custom login option or template, but there are available plugins that you can use to customize the default login page.
// https://www.wpbeginner.com/plugins/how-to-create-custom-login-page-for-wordpress/
3-4.) We do not offer installation service for our themes, so it is up to the user or the developer to install it to their chosen server or hosting provider. You may need to hire a freelance developer or contact a web agency if you are not familiar with this process.
Best regards,
IsmaelHey Pete,
Thank you for the inquiry.
This might be an issue with the file permissions, which you will have to check with your hosting provider. Have you tried editing the file via S/FTP?
// https://wordpress.org/documentation/article/using-filezilla/
Best regards,
IsmaelHey Stretchspot,
Thank you for the inquiry.
You can use this css code to adjust the style of the image overlay on hover.
.av-overlay-hover-deactivate .avia-image-overlay-wrap:hover .av-caption-image-overlay-bg { opacity: 0.4 !important; background-color: red; }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the code.
Best regards,
IsmaelHey Createve_Solutions,
Thank you for the inquiry.
This is possible but you will have to directly modify the enfold\js\avia.js file and look for this code around line 892.
newHash = '#' + container.attr('id') ;Replace it with.
newHash = "";Please make sure to toggle the file compression and purge the cache before testing the page.
Best regards,
IsmaelHey jbond82,
Thank you for the inquiry.
Unfortunately, this is not available in the current implementation of the GDPR or privacy options in the theme. You may need to look for a third party plugin or hire a freelance developer to build this feature on top of the current options.
Best regards,
IsmaelHi,
Let us know in another thread if you have more questions.
Have a nice day.
Best regards,
IsmaelFebruary 20, 2023 at 4:38 am in reply to: Search Results Page (avia_product_slider) – get_style_tag() on null error #1398575Hi,
The issue seems to be coming from the following plugin: Relevanssi Premium.
You may need to contact the plugin developers for more info about this issue. For the meantime, you may need to revert back to the default search template without the modification.
Best regards,
IsmaelHey godux,
Thank you for the inquiry.
You might have accidentally enabled the Use first slides caption as permanent caption option in the Styling > Slides panel. Please check if the option is enabled.
Best regards,
IsmaelHey Jim Zeigler ,
Thank you for the inquiry
We do not sell plugins, only WordPress themes. Are you using the Enfold theme? And yes, the theme supports the latest versions of PHP.
Best regards,
IsmaelHey Johan,
Thank you for the inquiry.
You have to disable the native layer slider plugin by adjusting the Enfold > Layout Builder > Integrated (Bundled) LayerSlider Plugin settings first, before installing and activating the stand-alone plugin. You should be able to register after that.
Best regards,
IsmaelHey bonsaimedia,
Thank you for the inquiry.
Where do you see the notifications? Do you see any layout issues in the product pages? If there are no layout issues, then you can just ignore the warnings for now.
Best regards,
IsmaelHey jaimemerz,
Thank you for the inquiry.
Have you tried hiding the amp menu using css media queries?
@media only screen and (min-width: 768px) { /* Add your desktop Styles here */ }Best regards,
IsmaelHey Fred,
Thank you for the inquiry.
There is a parallax option in the Fullscreen Slider element. You can also use the Layer Slider if you need more options.
Best regards,
IsmaelFebruary 17, 2023 at 8:26 am in reply to: Corrupt Files, Spacebar not working, and template files out of date #1398301Hey simplycoding15,
Thank you for the inquiry.
Where do the issues occur? Please create a test page and provide screenshots so that we can understand the problem better. You should also update the theme to version 5.4 and remove the older Enfold folder to avoid confusion.
Best regards,
IsmaelHey Silvio,
Thank you for the inquiry.
You may need to edit the tab section’s items and set the Styling > Alignment > Vertical align settings from Middle to Top.
Best regards,
IsmaelFebruary 17, 2023 at 8:15 am in reply to: uploaded fonts to be used for certain headings suddenly not work anymore #1398299Hey M-Graphics24,
Please refrain from creating duplicate threads: https://kriesi.at/support/topic/uploaded-font-suddently-not-working/
Best regards,
IsmaelHey M-Graphics24,
Thank you for the inquiry.
Did you upload a Google font? Please note that only Google fonts are allowed in the Custom Font Manager, other fonts have to be added manually using the @font-face rule.
// https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face
Best regards,
IsmaelHi,
Yes, the code has to be added in the functions.php file. And if you want to only apply it on a single page, just look for this line.
const body = document.querySelector('body');Replace “body” with the unique class name of the page.
const body = document.querySelector('.page-id-123');Best regards,
Ismael -
AuthorPosts
