Forum Replies Created
-
AuthorPosts
-
Hi,
You’re welcome! Glad we could help. Please don’t hesitate to open a new thread if you need anything else.
Have a nice day!
Best regards,
IsmaelHi,
@tebitrongmbh: Thanks for the info. That could also happen when the duplicates of the original slider still exist, so make sure that they are gone before doing the translation.
@xeovision: Did you remove the duplicate before translating the text?Best regards,
IsmaelHi,
Thank you for the update.
Try to change the media condition in the css media query from (max-width: 479px) to (max-width: 989px) so that it applies to tablet view. After adjusting the media condition, add this css code inside that same css media query.
.responsive #top #header .av-logo-container .social_bookmarks { display: none; }Best regards,
IsmaelHi,
We would like to apologize for the delay.
The slider seems to be running properly. Is it fixed? Are you referring to the very first slider in the home page?
Best regards,
IsmaelHey Charlotte,
Add this code in the Quick CSS field or the child theme’s style.css file to remove or disable the image overlay.
.image-overlay { display: none !important; }Thank you for using Enfold.
Best regards,
IsmaelHi,
Thank you for the update.
We added this code in the functions.php file to change the blog style 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 = 'single-big'; return $layout; }Best regards,
IsmaelJuly 4, 2019 at 2:57 pm in reply to: Advanced Layout Builder by default when import WooCommerce products #1115798Hey sony1208,
Thank you for using Enfold.
Are you using the block or Gutenberg editor? The modification from the previous thread will only work if the classic editor is enabled, so you should try switching to a different editor in the Enfold > Theme Options > Select Your Editor settings.
Best regards,
IsmaelJuly 4, 2019 at 2:51 pm in reply to: Using Layout Builder for blog pages. No thumbnail images on post category pages #1115797Hey!
Sorry for the delay.
You should be able to change the blog layout or style in the Enfold > Blog Layout panel and disable the date info from there. If you want to move the featured image beside the post title, select the “Blog Single Author Small” blog layout. If you want to learn more about how to setup your blog, please visit the documentation.
// https://kriesi.at/documentation/enfold/page-setup/#blog
// https://kriesi.at/documentation/enfold/blog-post/Thank you for using Enfold.
Cheers!
IsmaelJuly 4, 2019 at 2:45 pm in reply to: WPML – Fullwidth Easy Slider not showing on translated pages. #1115794Hey Rui,
Thank you for using Enfold.
1.) Did you replace the slider with a Layer Slider? Did you translate the media files or at least reselect the existing images when you’re on the translated page?
// https://wpml.org/documentation/getting-started-guide/media-translation/
2.) The menu looks the same on an Edge browser. What are the differences that you see on your end?
3.) And the header behaves the same way. Did you configure the languages’ Theme Options?
Best regards,
IsmaelJuly 4, 2019 at 2:35 pm in reply to: After adding "shortcodes.js" to theme child, accordion isn't working anymore… #1115788Hi,
Thank you for the update.
We can’t find any errors when we reenable the shortcodes.js file in the child theme, so it’s a kind of difficult to debug. Did you modify anything else aside from the suggested modification from the previous thread?
Best regards,
IsmaelHey!
Did you remove the other sliders before translating the strings or text? You probably translated some of the text of the duplicated sliders instead of the original slider.
Thank you for the update.
Regards,
IsmaelHi,
Thank you for the update.
Are you using the block editor? Please try to switch between the editors and see how it goes.
Best regards,
IsmaelHi,
Great! Glad that the issue is solved. Please don’t hesitate to open a new thread if you need anything else.
Have a nice day!
Best regards,
IsmaelJuly 4, 2019 at 2:08 pm in reply to: Blog pagination not showing on posts – using Masony element. #1115775Hi,
Thank you for the update.
Did you change the shotcode from “[rpost]” to “[rpostport]”? That’s the new name or tag of your shortcode.
Best regards,
IsmaelHi,
Thank you for the update.
You can use this css code to change the link color on hover.
#top #header .mega_menu_title:hover a { color: red; }Best regards,
IsmaelHi,
According to the enfold-related-posts-element.php > avia_include_shortcode_template function, the shortcode file should remain inside the shortcodes folder of the plugin directory. Do you see any errors after activation? I will tag @Mike to the thread.
Best regards,
IsmaelHi!
Thanks for the update.
You didn’t mention that “status” is a custom field, and not the default post status. Maybe I just missed it. Anyway, we adjusted the query a bit to query posts with that custom field.. The “test-2/” posts should appear in the AJAX search when you search for the code “359017”.
Regards,
IsmaelHey!
My bad. I missed the link to the single portfolio page, so I actually thought you are referring to the portfolio grid elements in the home page. We’d like to edit the widget file, but the Appearance > Editor panel is not accessible. Please enable it or create a new thread and post the FTP details in the private field.
Thank you for the update.
Best regards,
IsmaelHi,
Thanks for the update.
You can use this css code to group the menu items into two columns.
#top #av-burger-menu-ul { display: flex; flex-wrap: wrap; flex-direction: row; max-width: 800px; margin: 0 auto; } #top #wrap_all #header #av-burger-menu-ul > li { width: 50%; text-align: left; }Please don’t forget to toggle the Enfold > Performance > File Compression settings after adding the code.
Best regards,
IsmaelJuly 3, 2019 at 2:30 pm in reply to: The Events Calendar – upcoming events will not displayed #1115481Hi,
Thank you for the update.
How did you add that information? It’s not included in the upcoming events template by default.
Best regards,
IsmaelHi,
Thank you for using Enfold.
Have you tried using the “woocommerce_mini_cart_contents” or the “woocommerce_widget_shopping_cart_before_buttons” hook to insert the coupon field after the product column?
An example can be found here: http://hookr.io/actions/woocommerce_widget_shopping_cart_before_buttons/
Best regards,
IsmaelHi,
Thank you for the update.
The above modification is for the Portfolio Widget, which is different from the Portfolio Grid element. You can actually adjust the order of the items directly from the element’s panel. Edit the Portfolio Grid element, scroll down a bit and you should see the “Order by” and “Display order” settings. Let us know if it works.
Best regards,
IsmaelHi,
Thank you for using Enfold.
Try to replace it with the following code.
// remove title attribute add_action('wp_footer', 'ava_new_custom_script_masonry'); function ava_new_custom_script_masonry(){ ?> <script type="text/javascript"> (function($) { $(window).on('debouncedresize av-height-change load', function() { setTimeout( function() { $('a, img').removeAttr('title'); }, 300 ); }); })(jQuery); </script> <?php }This should remove the title attribute once the next set of masonry items are loaded.
Best regards,
IsmaelHi,
This is the same issue as in the following thread. You don’t need to create duplicates of the slider because you can translate the content in the Polylang > String Translation panel.
// https://kriesi.at/support/topic/erweiterter-layerslider-in-second-language/#post-1115013
And do not set a specific width to the button because the button text might get cut off when the translation is longer than the original text.
Best regards,
IsmaelHi,
Thank you for the update.
There are a few errors related to the Contact Form 7 and Cleaver Reach plugins. Have you tried disabling those plugins temporarily? Did you modify the logoslider.php file in your child theme? We tried to check it but the Appearance > Editor panel is not accessible.
Best regards,
IsmaelHi,
Thank you for the update.
The site is not running on the latest version of the theme. Please upgrade to version 4.5.7, then toggle the Performance > File Compression settings afterwards.
Best regards,
IsmaelHi,
Thank you for the update.
The theme will automatically append the language flags to the main menu, so you don’t have to configure the language switch in the WPML settings. We removed the language switcher configuration.
Best regards,
IsmaelJuly 3, 2019 at 11:50 am in reply to: Move date below title in sidebar shortcode magazine elements #1115449Hey datadirt,
Thank you for using Enfold.
The “schmitt-gibt-krone-at-fuehrung-ab/” post or page redirects to the home page, so we can’t see the magazine element. Did you set a redirect? Does the page/post exists?
Best regards,
IsmaelHi,
Thank you for the update.
1.) We’ve added this code in the Quick CSS field to hide the gray box or the meta container in the password protection page.
.post-password-required .av-single-event-meta-bar { display: none !important; }2.) We can’t reproduce this issue on our end, so there is probably a plugin conflict somewhere. Have you tried to disable the plugins temporarily? Did you add any custom scripts or snippets?
Best regards,
IsmaelJuly 2, 2019 at 10:30 am in reply to: Current version of Enfold compatible with WordPress 5.2.1? #1115126Hi,
Have you tried to temporarily disable the plugins including WordFence? And if I am not mistaken, your server is blocking the admin-ajax.php file according to the error logs. Please ask your host if they can rule out this file.
[Sat Jun 08 10:32:50 2019] [error] [client 93.85.78.188] ModSecurity: Access denied with code 418 (phase 1). Pattern match “^Mozilla/5.0 \\(Windows NT 6.1; WOW64; rv:40.0\\) Gecko/20100101 Firefox/40.1$” at REQUEST_HEADERS:User-Agent. [file “/dh/apache2/template/etc/mod_sec2/99_dreamhost_rules.conf”] [line “345”] [id “1990098”] [msg “Malicious Bot UA”] [hostname “gatehealing.com”] [uri “/wp-login.php”] [unique_id “XPvxQq3srLoAABdq-JsAAAAJ”]
[Sat Jun 08 10:32:51 2019] [error] [client 93.85.78.188] ModSecurity: Access denied with code 418 (phase 1). Pattern match “^Mozilla/5.0 \\(Windows NT 6.1; WOW64; rv:40.0\\) Gecko/20100101 Firefox/40.1$” at REQUEST_HEADERS:User-Agent. [file “/dh/apache2/template/etc/mod_sec2/99_dreamhost_rules.conf”] [line “345”] [id “1990098”] [msg “Malicious Bot UA”] [hostname “gatehealing.com”] [uri “/”] [unique_id “XPvxQ63srLoAAALHKIAAAAAI”]Best regards,
Ismael -
AuthorPosts
