Forum Replies Created
-
AuthorPosts
-
January 21, 2022 at 7:56 am in reply to: YOAST Breadcrumbs Integration in 2022 (Enfold v4.8.x) #1336492
Hey Chris,
Thank you for the inquiry.
You can try this code in the functions.php file to override the default breadcrumb with Yoast breadcrumb.
// https://pastebin.com/2HHVQ9bs
This is based on this documentation.
// https://yoast.com/help/implement-wordpress-seo-breadcrumbs/
Best regards,
IsmaelJanuary 21, 2022 at 7:49 am in reply to: when inserting a masonry gallery on my website, it is not shown on the page #1336487Hi,
Thank you for the inquiry.
The page above no longer exists, so we created another test page (see private field) and added the masonry element to it. The element seems to be working correctly but there is only one entry in it. Would you mind providing a screenshot of the issue?
Best regards,
IsmaelJanuary 21, 2022 at 7:39 am in reply to: Cookiefenster ist bei mobiler Ansicht abgeschnitten #1336484Hi,
We cannot reproduce the issue on our end. The popup container scrolls down to the very bottom and we are able to access the very last tab or toggler without any issue. We provided a screenshot in the private field.
If you want, we can adjust the height of the popup container to make the privacy tabs more accessible. Please add this code in the Quick CSS field.
.av-inline-modal { max-height: 95vh; overflow: auto; }
Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHi,
Thank you for following up.
the Services menu item is highlighted!
Would you consider adding a “Home” menu item in the main menu? We tried to edit some of the scripts that adds the current-menu-item class name to the menu items but the issue persists. To prevent the current menu item from displaying in the home page, we temporarily added this css code in the Quick CSS field.
.home .avia-menu-fx { display: none; }
Not sure why this slider is not displaying.
The mobile slider is displaying properly on our end. Where are you testing it?
Best regards,
IsmaelHey ayeh,
Thank you for the inquiry.
In the fontello.com site, you can convert an SVG file into a font icon and download it as a zip file. You will then have to upload the zip file in the Enfold > Import/Export > Iconfont Manager in order to use the new font icons in the site. Please check this documentation for more info.
// https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
Best regards,
IsmaelHi,
I didn’t set it as an official translation of the English homepage. Is it possible to assign it as a translation of the homepage?
Unfortunately, there is no option for that by default as far as we know. The home page of other languages should be a translation of the home page in the original language. This is actually stated in their documentation.
It is mandatory to translate the static front page in all languages. If you choose a page not translated in all languages, you will get an error message and your choice will not be validated.
// https://polylang.pro/doc/define-your-home-page-as-a-static-page/
You may need to ask the plugin developers if there is a way to assign a page as home page without actually translating the default home page.
Best regards,
IsmaelJanuary 21, 2022 at 6:50 am in reply to: How to add "sponsored" attribute to the Button Link #1336466Hi,
For links inside a text block, try to apply the target attribute manually in the link element and set it to “_blank”.
Example:
<a href="#" target="_blank">A link</a>
Best regards,
IsmaelJanuary 21, 2022 at 6:47 am in reply to: Horizontale Galerie schneidet Bilder hart ab auf dem mobil (zB: iphone) #1336465Hi,
Thank you for the screenshot.
Try to add this css code in the Quick CSS field to disable the transform property and adjust the position of the image.
@media only screen and (max-width: 767px) { .responsive .av-horizontal-gallery-img { height: auto; transform: none; top: 0; position: relative; left: 0; } }
Please make sure to toggle the file compression settings or disable it temporarily.
Best regards,
IsmaelHi,
Thank you for the screenshots.
Would you mind posting the login details in the private field? We would like to check the code in the functions.php file and modify it if necessary.
To make the whole post entry clickable, try to add this script in the functions.php file.
function ava_custom_script() { ?> <script> (function($) { $(".slide-entry").on("click", function(e) { e.preventDefault(); var link = $(this).find(".slide-image").href(); window.location.href = link; }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script');
Best regards,
IsmaelHey inextable,
Thank you for the inquiry.
Did you use the WPML Translation Editor to translate the content of the portfolio items? In the “Language” box, make sure that the default translation editor is enabled before clicking the translation (+) button. Please check this documentation for more info.
// https://wpml.org/documentation/theme-compatibility/enfold/#Translating-custom-post-types-taxonomies
You may also need to translate the portfolio categories or taxonomies.
Best regards,
IsmaelJanuary 20, 2022 at 9:00 am in reply to: Accordeon toggle title not showing up in safari+mobil, artefacts in text #1336311Hi,
Sorry for the confusion. Looks like the theme adds the custom css class name when you define a custom color in the Styling > Colors panel. Unfortunately, we are still not sure why the issue is happening on mobile view. Please try to disable the Performance > File Compression settings temporarily, then add this code in the functions.php file to disable the post css option.
/** * Filter to skip css file generation. * You can add logic to skip for certain pages/posts only. * * @since 4.8.6.1 * @param boolean $create * @return boolean true | false or anything else to skip generation of css file */ function custom_avf_post_css_create_file( $create ) { return false; } add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
Make sure to purge the cache afterwards. Let us know if that helps.
Best regards,
IsmaelJanuary 20, 2022 at 8:48 am in reply to: remove enfold language switcher and use wpml language switcher #1336310Hey!
Yes, the previous filters did not work, so we removed them. Please keep the script in the functions.php file.
Best regards,
IsmaelJanuary 20, 2022 at 8:47 am in reply to: Horizontale Galerie schneidet Bilder hart ab auf dem mobil (zB: iphone) #1336309Hey Blatze,
Thank you for the inquiry.
Would you mind providing a screenshot of the issue? This is how the horizontal gallery looks on our end. (see private field)
Best regards,
IsmaelJanuary 20, 2022 at 8:38 am in reply to: WooCommerce product attribute 'Custom Product Attribute' change text functions.p #1336308Hi,
In the wc_display_product_attributes function, there is a filter called woocommerce_display_product_attributes, which you might be able to use to adjust the value of the product attributes but it might still not work because html tags are not allowed by default in the plugins/woocommerce/templates/single-product/product-attributes.php file.
Example:
add_filter("woocommerce_display_product_attributes", function($attributes, $product) { foreach($attributes as $attr) { // do something here } return $attributes; }, 10, 1);
Best regards,
IsmaelHey Elena,
Thank you for the inquiry.
1.) You do not have to enable the theme’s recaptcha option because the plugin has its own integration for it. Please check this article for more info.
// https://contactform7.com/recaptcha/
2.) The legal information option will only work in the default contact form.
3.) This option is for the default recaptcha option and the for default contact form in the theme. Unfortunately, we are not sure if this is possible with the plugin. Please contact the plugin developer for additional assistance.
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,
IsmaelHey emilconsor,
Thank you for the inquiry.
This is possible but it will require modifications that is beyond the scope of support. You can try to use a plugin such as the following.
// https://wordpress.org/plugins/ajax-load-more/
More plugin options in the following link.
// https://wordpress.org/plugins/search/ajax+load/
You can also modify the includes > related-posts.php template directly.
Best regards,
IsmaelJanuary 20, 2022 at 8:15 am in reply to: Custom font shows correctly on Mac, but not on Windows #1336302Hey Max,
Thank you for the inquiry.
Do you accept the privacy cookies on every devices or browsers? Please note that the font will not load if the required cookies are not enabled or accepted, same goes with external services such as maps and videos. You have to open the privacy modal window, toggle the buttons for external services including Google fonts and accept the cookies. But if you want them to load automatically without user consent, you have to set the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior to the first or second option.
Best regards,
IsmaelHey mattb1169,
Thank you for the inquiry.
Unfortunately, there is no option to remove the Youtube title bar. You may have to upload the video to your own server and host it locally if you don’t want a title bar to display in the slider.
// https://developers.google.com/youtube/player_parameters#Parameters
You can also try Vimeo.
Best regards,
IsmaelHey Ikyo,
Thank you for the inquiry.
Would you mind posting the code that you are currently using? Did you use the is_admin conditional function?
(which is already) + text block underneath sensitive
What do you mean by “sensitive”? Please provide a screenshot using imgur or dropbox.
Best regards,
IsmaelHey maryenvato,
Thank you for the inquiry.
You have to enable the default Lightbox Modal Window option in the Enfold > Theme Options panel. This option has to be enabled in order display the privacy popup window.
Best regards,
IsmaelHey Dina,
Thank you for your interest in the theme.
The theme does not have a stand alone e-commerce option out of the box but it is compatible with the Woocommerce plugin, which is one of the most used e-commerce plugin on WordPress. The plugin has a setup wizard, so you should be able to run your own online shop in no time. Please check the plugin documentation to learn more.
// https://woocommerce.com/document/woocommerce-setup-wizard/
Best regards,
IsmaelJanuary 19, 2022 at 9:03 am in reply to: remove enfold language switcher and use wpml language switcher #1336144Hi,
We adjusted the language switcher option in the WPML settings to display the language dropdown and we added this code in the functions.php file to completely remove the default flags.
function ava_custom_script() { ?> <script> (function($) { $(document).ready(function() { $('.av-language-switch-item').remove(); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script');
There is a slight delay on the flag removal, so we added this css code to make sure that flags do not display at all on load.
.av-language-switch-item { display: none; }
Best regards,
IsmaelHi,
The same code seems to work fine on our end. Please post the login details in the private field so that we can test the modification. Make sure that the Appearance > Editor panel is active.
Best regards,
IsmaelHi,
Thank you for the inquiry.
The changes are only visible on desktop view because of this css media query.
@media screen and (min-width: 990px) and (max-width: 1500px) { }
Make sure to move the css outside of that css media query in order to apply it on every screen sizes.
#top .av-elegant-toggle .toggle_icon { border: 0 !important; color: #90908e !important; opacity: 1 !important; right: 0; }
Best regards,
IsmaelHi,
@Chris: Did you actually translate the home page? Looks like you created a new home page for DE because the EN home page doesn’t have any DE translation. You have to translate the selected home page.Best regards,
IsmaelJanuary 19, 2022 at 8:34 am in reply to: Cookiefenster ist bei mobiler Ansicht abgeschnitten #1336139Hey SikoraEDV,
Thank you for the inquiry.
The cookie consent message bar is disabled when we checked the site. Would you mind enabling it back and provide a screenshot of the layout issue? Please use imgur, dropbox, postimgcc or any free image hosting for the screenshot.
Best regards,
IsmaelHi,
No problem. Glad we could be of help. Please feel free to open another thread if you need anything else.
Have a nice day.
Best regards,
IsmaelJanuary 19, 2022 at 8:28 am in reply to: Sidebar not showing up on WooCommerce category page #1336133Hi,
Sorry for the confusion. Did you put the dev site down? We tried to access its dashboard but the site is not loading at all. We also tried to access the live site but it just redirects to the home page.
Best regards,
IsmaelHi,
Thank you for following up.
Looks like you have enabled the Enfold > Performance > File Compression settings. Please keep it disabled for now, then try to check the page on incognito mode. Make sure to add the modification that @Yigit suggested above. For some reason, the modification is not working when compression is enabled.
Best regards,
IsmaelHi,
Please think about updating Enfold with this information. because it could help other people with the same issue.
Glad to know that the solution worked. Please keep the filters for now. They were added specifically for this kind of modification.
I can see, that there is an UL-Element.
Do you see the same error when you run a test using the gtmetrix tool? The li element is clearly within a ul or parent element, so the error or warning is incorrect.
Thank you for your patience.
Best regards,
Ismael -
AuthorPosts