Forum Replies Created
-
AuthorPosts
-
Hi,
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,
IsmaelHi,
You’re welcome! There are a lot of css tutorials around the web if you want to learn more, but don’t hesitate to open a new thread if you need additional help. Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
Replace that code with the following snippet.
add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 ); function avia_breadcrumbs_trail_mod( $trail, $args ) { ob_start(); edit_post_link(__(' <span style="color: #ff0000; font-weight: bold; font-size: 11px;">EDIT</span>')); $edit = ob_get_clean(); $trail[] = $edit; return $trail; }That should append the edit link to the breadcrumb trail.
Best regards,
IsmaelHey Regina Oswald,
Thank you for considering Enfold.
The theme is compatible in a way that you’ll be able to choose between the two editors, the one from the theme called Advance Layout Builder (ALB) and the new block editor (Gutenberg), without encountering any errors or issues. However, don’t expect that you’ll be able to switch between the editor and edit the same set of content because these builders are completely different from each other. The ALB utilizes the default WordPress shortcodes while the other create blocks, so you can’t transfer the the content between the editors. It doesn’t really make sense to purchase the theme if you’re not going to use the template builder (ALB) that comes with it.
Best regards,
IsmaelHi,
Great! Glad it is fixed. Please feel free to open a new if you need anything else.
Have a nice day!
Best regards,
IsmaelHi,
Thank you for the update.
What do you mean by it not scrolling through the months? I can’t seem to reproduce that issue or I’m probably checking the wrong element. Are you referring to the events pagination?
Anyway, there is an error with another plugin named “all-pdfemb-premium”. Have you tried disabling that plugin, see if anything changes?
all-pdfemb-premium.min.js?ver=4.2:53 Uncaught TypeError: Cannot read property ‘getPage’ of undefined
at g.e.renderPage (all-pdfemb-premium.min.js?ver=4.2:53)
at g.e.checkForResize (all-pdfemb-premium.min.js?ver=4.2:43)
at all-pdfemb-premium.min.js?ver=4.2:45
e.renderPage @ all-pdfemb-premium.min.js?ver=4.2:53
e.checkForResize @ all-pdfemb-premium.min.js?ver=4.2:43
(anonymous) @ all-pdfemb-premium.min.js?ver=4.2:45
eventon_dynamic_styles.css:1Best regards,
IsmaelHi,
Awesome! Glad we could be of help. Please don’t hesitate to open a new thread if you need anything else.
Thank you for using the theme. Have a nice day!
Best regards,
IsmaelJuly 2, 2019 at 5:28 am in reply to: One-page navigation + masonry animations not working properly #1115020Hi,
Thank you for the update.
Did you keep the previous modifications? This one for example.
Best regards,
IsmaelHi,
Thanks for the info.
We can’t reproduce the issue on a test page. Where can we see the problem? Please provide the link to the actual page.
This is where we added the Easy Slider. (see private field)
Best regards,
IsmaelHi,
Thank you for the update.
Where can we see the sliders? Please provide the actual links to the pages.
You don’t need to create a separate slider for the EN version. All you need to do is manually translate the content of the original slider. You can do that in the Sprachen > Übersetzungen von Zeichenketten or Languages > String translation panel. Search for the string or text, then manually translate it. Don’t forget to delete the EN version of the slider first to avoid confusion.
Best regards,
IsmaelHey jjsabatino,
Thank you for using Enfold.
You can create some padding at the bottom of the items.
.av-masonry-entry.av-masonry-item-loaded.has-post-thumbnail { padding-bottom: 100px; }Please add it in the Quick CSS field or the child theme’s style.css file. And don’t forget to toggle the Performance > File Compression settings.
Best regards,
IsmaelJuly 2, 2019 at 4:09 am in reply to: Add Layout Builder to every editor element in a custom post type #1115010Hi,
Thank you for using Enfold.
Unfortunately, that is not possible with the current implementation. The advance layout builder (ALB) is a stand alone editor and is completely different from the default editor. The builder can’t be added or it can’t be attached to the main editor or to any third party editor or element. You can probably use the builder shortcodes or add them manually, but you can’t use the ALB itself inside those editors.
Have you tried adding the builder shortcodes manually?
Best regards,
IsmaelHi,
Thank you for the update.
The internal links counter is working properly on our end. Have you tried disabling plugins and see if there is a conflict somewhere?
// https://imgur.com/a/hWW774j
As you can see in the screenshot, there is one internal link in the “A Healthy Snack For Kids” post.
Best regards,
IsmaelHi,
On a quick search, I found this solution or script, which allows you to remove the Roboto font on load.
// https://stackoverflow.com/questions/25523806/google-maps-v3-prevent-api-from-loading-roboto-font
Please open a new thread if you have additional inquiries. We’ll close this one now.
Best regards,
IsmaelHi,
Sorry for the confusion.
The analysis actually works fine with the builder, but please note that there are certain limitations to it such as the supported language, so it’s possible that some of your keywords or content are not being detected properly because the language that you’re using is not supported. A list of the supported languages can be found in the following link.
// https://github.com/Yoast/javascript/tree/master/packages/yoastseo#supported-languages
This is a screenshot of a test page showing the results of the SEO Analysis tool.
// https://imgur.com/a/OfIPsVS
As you can see the analysis properly detected the outbound/inbound links and the related keyphrase (“Apple is a healthy snack for kids.”) in the builder’s text blocks.
Best regards,
IsmaelHi,
Sorry for the confusion.
The analysis works fine on my end as long as it’s in English, so it probably doesn’t work in yours because the analysis doesn’t support the language, yet. In a page I use the text “A healthy snack for kids.” as the focus keyphrase and based on that value I added a text block with the content “Apple is a healthy snack for kids”. As you can see in the following screenshot, the focus keyword/keyphrase is properly detected or recognized by the analysis tool.
// https://imgur.com/a/OfIPsVS
I also added outbound/internal links and they were properly analyzed as well.
Please check the following link for a list of supported languages.
// https://github.com/Yoast/javascript/tree/master/packages/yoastseo#supported-languages
Best regards,
Ismael -
AuthorPosts
