Forum Replies Created
-
AuthorPosts
-
August 4, 2020 at 5:45 am in reply to: Full width AND bottom aligned Read more button in Post Slider #1235034
Hey ATB_IO,
Thank you for the inquiry.
Aligning the read more link may not be that easy because the excerpt length or the number of words/characters in the summary for each posts are different. We might be able to do this if we limit number of characters in the excerpt and set a minimum height to the title container.
You can use this snippet in the functions.php file to limit the number of words in the excerpt.
function avf_post_slider_entry_excerpt_custom($excerpt, $prepare_excerpt, $permalink, $entry ) { $excerpt = wp_trim_words( $excerpt, 10 ); return $excerpt; } add_filter('avf_post_slider_entry_excerpt', 'avf_post_slider_entry_excerpt_custom', 10, 4);And to set a minimum height to the post title container, use this css code.
.slide-entry-title.entry-title { min-height: 50px; }Related thread: https://kriesi.at/support/topic/blog-layout-grid/#post-920173
Best regards,
IsmaelHey sylwilson,
Thank you for the inquiry.
We can add the button separately as a widget then have this widget display in the header container using template hooks in the functions.php file. Please check the documentation for more info.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
If you prefer not to use a widget, we can use the same hook to directly render the button instead.
add_action( 'ava_after_main_menu', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { echo "<div class='av-custom-donate-button'><a href='#'>Donate</a></div>"; }We can then style the button with this css code.
.av-custom-donate-button { /* style here */ }Best regards,
IsmaelHi,
We just did basic tests in the avia_ajax_search function inside the functions-enfold.php file, but failed to extract any results because the site is very slow on our end. Please hire a freelance developer or a maintenance agency to help out in identifying the issue. For some reason, doing a search triggers an internal server error, but we can’t reproduce the same issue on our own installations.
And you didn’t answer me about which tool you used to test my frontpage weight and requests…
We just observed the number of requests and check the size of the page directly in the browser inspector > Networks tab. We didn’t use any external tools but you can certainly do so if necessary. Popular choices are Gtmetrix or Google’s Lighthouse. And we deactivated the Autoptimize plugin temporarily to rule out any issues related to compression or script minification.
If you don’t mind, please open a new posts so that we can push this topic back to the queue, or refresh it. This thread is getting a bit long, so it tends to be a bit confusing for other moderators. I will also forward the new thread to our channel.
Best regards,
IsmaelHey sparrish_ccp,
Thank you for the inquiry.
LearnDash seems to be the most popular plugin here but if you’re looking for something simple or with less functionality, you could try one of these plugins.
// https://wordpress.org/plugins/wp-quiz/
// https://wordpress.org/plugins/quiz-master-next/
// https://wordpress.org/plugins/quiz-cat/
// https://wordpress.org/plugins/hd-quiz/Best regards,
IsmaelAugust 4, 2020 at 4:33 am in reply to: Portfolio Items – Masonry Element – Unassigned Categories Bug? #1235014Hey mickya1,
Thank you for the inquiry.
I think I may have discovered a bug with regards to portfolio items in the masonry element. In my mind if there are no category matches, the element should display NO RESULTS, but instead it is showing ALL RESULTS.
The element should return an empty string if there are no entries or if the loop is empty. We tried to reproduce the issue on our local installation but we’re not able to do so. Could you provide an admin account so that we can check the issue on your installation?
Best regards,
IsmaelHi,
Thank you for the inquiry.
You can modify the “show details” text by editing the avia_add_cart_button function in the themes\enfold\config-woocommerce\config.php file directly. You can also remove the current hook..
remove_action( 'woocommerce_after_shop_loop_item', 'avia_add_cart_button', 16);.. then add your own using the same function.
add_action( 'woocommerce_after_shop_loop_item', 'avia_add_cart_button_mod', 16); function avia_add_cart_button_mod() { // same code with a bit of modification }Best regards,
IsmaelHey MORTULGAAH,
Thank you for the inquiry.
We can use the avf_form_message filter to modify the email message and include the page title or ID to it. Please check the following thread for usage example.
// https://kriesi.at/support/topic/contact-form-html-field/#post-1131651
Best regards,
IsmaelHi,
So, I would like to repeat my question: Can I trigger the update check via a cronjob. Please let me know.
This should be possible, but it will require modifications that are beyond the scope of support. Currently, the theme only checks for theme updates when a user access the admin or during an AJAX call.
It’s possible that the database transient or entry called avia_theme_latest_version still contains an older version or a version that is equal to the installed version, so it assumes that the installation contains the latest version or that a newer version is not available. Again, deleting the database transients should help you in this case.
Best regards,
IsmaelAugust 3, 2020 at 1:23 pm in reply to: Page https://kriesi.at/themes/enfold-app/ rending error in iPAD #1234832Hi,
What do you mean by “static” background? Unfortunately, we can’t really do anything with the fixed background issue because it’s not supported by iOS devices including iPads as we explained previously.
Thank you for your patience.
Best regards,
IsmaelAugust 3, 2020 at 1:19 pm in reply to: Cookies settings – the toggle for Google Analytics doesnt work #1234825Hi,
Thank you for the update.
The theme doesn’t really remove the cookie when it’s already stored in the local browser. What it does is prevent the cookies from being stored when the user don’t consent to storing those cookies, or completely ignore the privacy options. My guess is that the GA cookies are already stored in your local machine even before you activated the privacy options.
Please try to delete the GA cookies manually, then refresh the page. Let us know if the analytics cookies are still added in the local storage when you don’t accept them.
UPDATE: You need to delete all cookies that were generated by the theme to reset the privacy options.
// https://kriesi.at/documentation/enfold/privacy-cookies/#developer-info
Best regards,
Ismael-
This reply was modified 5 years, 7 months ago by
Ismael. Reason: add note
August 3, 2020 at 1:08 pm in reply to: Mega Menu not working on Mobile + Critical Error on Website #1234823Hi,
We are not really sure how you made it work previously because the script ignores empty columns, as you can see in the js > avia.js file, around line 1020:
// ignore columns that have no actual link and no subitems if( ( current_megas === null ) || ( current_megas.length == 0 ) ) { if( mega_title_link == '#' ) { hide_enty = ' style="display: none;"'; } }If the column is empty, it will hide the submenu container or set its display property to “none”.
What happens when you disable the minification or compression option?
Best regards,
IsmaelAugust 3, 2020 at 12:59 pm in reply to: Support for srcset also for background image in the color section #1234820Hi,
The color section can’t support the srcset option because the image is set as background. You can still replace the section.php file with the code that we provided previously to enable asynchronous loading of the background image.
Best regards,
IsmaelHi,
Thank you for the update.
Looks like you used a widget menu instead of the default menu. Why is that? Please note that the mobile menu is based on the default menu, so the theme won’t be able to render the mobile menu items without it. Please consider removing the widget menu and create a menu in the Appearance > Menu panel.
Best regards,
IsmaelHey Trey,
Thank you for the inquiry.
That is actually the expected behavior because the pagination only redirects to the next or previous page but not to any anchors or sections inside of it. This is also why it’s not recommended to add any paginated elements other than the top of the page. As a workaround, you can use the script provided in the following thread, but it may require you to move the blog posts element inside a section, or you may need to add an anchor inside the current page.
// https://kriesi.at/support/topic/anchor-blog-pagination-to-same-page-location
Best regards,
IsmaelAugust 3, 2020 at 7:24 am in reply to: List of child pages automatically displaying in sidebar #1234731Hi,
Thank you for the update.
Unfortunately, this feature is not available in the theme by default. The theme has an option to render a Page Navigation in the sidebar, but this is not as flexible as using the Navigation Menu widget. You can enable the Page Navigation option in Enfold > Sidebar Settings panel.
Best regards,
IsmaelHi,
Thank you for the inquiry.
The Meta tag “robots” settings if set to the second option will just disable the avia_set_follow function which adds the necessary meta tag in the pages, and since Yoast already handles this feature, you can safely disable the function or option. The avia_set_follow function can be found in the enfold\framework\php\function-set-avia-frontend.php file if you want to know more how it handles the meta tags.
Best regards,
IsmaelHi,
Thank you for the info.
The preview works fine but for some reason the top area of the page is not editable. Have you tried recreating it from scratch? You may want to manually add the elements instead of saving the current content as template.
Best regards,
IsmaelHi,
Glad that you found a solution for the overlap issue.
The video won’t play on a mobile and I just see a freeze frame.
Please note that background videos are disabled on mobile devices by default, which is why a fallback image option is available. You can either add the fallback image or hide the color section on mobile view by editing the element’s visibility in the Screen Options tab. If you really need the video to display, you can add a Video element, toggle its visibility so that it only displays on mobile view, or use the Layer Slider.
Best regards,
IsmaelAugust 3, 2020 at 6:57 am in reply to: Darstellung Produkte: Product List statt Product Grid #1234721Hi,
Thank you for the inquiry.
You may need to edit the product templates directly or use template hooks in order to add extra elements in the grid. Unfortunately, this will require modifications that are beyond the scope of support. You may need to hire a freelance developer or check the following documentation to know more about the plugin’s template system.
// https://docs.woocommerce.com/document/template-structure/
// https://premmerce.com/woocommerce-hooks-guide/#reading-progress-title-3Best regards,
IsmaelHey Oliver,
Thank you for the inquiry.
You should be able to set the privacy policy page in the Einstellungen > Datenschutz (Settings > Privacy) panel, then configure the privacy option in theme’s Privacy & Cookies panel afterwards. Please check this article and documentation for more info.
// https://www.wpbeginner.com/beginners-guide/how-to-add-a-privacy-policy-in-wordpress/
// https://kriesi.at/documentation/enfold/privacy-cookies/Best regards,
IsmaelHi,
Thank you for the update.
This is actually the default behavior of the category sort feature. It will reset back to displaying all items when you go to the next page or refresh the current one. And it can only sort items that are readily available in the current page.
Best regards,
IsmaelHi,
Thank you for the inquiry.
You can insert the plugin’s shortcode inside a widget area and use a template hook to render the widget area inside the header container. For more info, please check the documentation.
// https://kriesi.at/documentation/enfold/header/#adding-a-header-widget-area
Best regards,
IsmaelAugust 3, 2020 at 6:23 am in reply to: Overlapping sections/rows & slider text not aligned correctly on mobile. #1234713Hi,
Thank you for the info.
The overlap is caused by this css property which is applied in the parent column.
-webkit-transform: scale(1.1); -ms-transform: scale(1.1); transform: scale(1.1);Did you add the css code? To override it, we can use this css code.
.responsive #top #wrap_all .flex_column { -webkit-transform: scale(1) !important; -ms-transform: scale(1) !important; transform: scale(1) !important; }Best regards,
IsmaelAugust 3, 2020 at 6:12 am in reply to: How to remove the "Your Message:" CONTENT / How to target different languages #1234708Hi,
Thank you for the inquiry.
Why would you like to remove those info? Those are details from the contact form fields, so if you don’t want to include them in the sent messages, just remove the designated form fields in the contact form.
Best regards,
IsmaelHi,
Thank you for the update.
Did you add this css code?
.menu-item-515.av-active-burger-items .avia-menu-text { display: inline-flex; }Please try to set the display property to “block”, then include this css code.
.avia-menu-text .avia-icon-pos-left { float: right; margin-right: 105px; } .avia_transform .avia_start_delayed_animation.av_font_icon.avia-icon-animate { -webkit-animation: none; animation: none; }Best regards,
IsmaelHey mogasi,
Thank you for the inquiry.
How can we reproduce the issue? Yes, you may send a copy of the theme to the plugin developers and have them use it to debug the issue. It’s fine as long as they only use the theme for the intended purpose and nothing else.
Best regards,
IsmaelHi,
Sorry for the troubles. We got locked out of the dashboard by Wordfence while checking the cookie consent. Please disable the security plugin temporarily so that we can check the issue properly.
Your access to this site has been temporarily limited by the site owner
Your access to this service has been temporarily limited. Please try again in a few minutes. (HTTP response code 503)
If you think you have been blocked in error, contact the owner of this site for assistance.
Best regards,
IsmaelHey!
Thank you for the update.
We can apply a specific width to the first cell inside the second grid row element in the page to push the content of the second column further to the right and align it with the content below. Please add this css code.
.page-id-7280 #av-layout-grid-2 .flex_cell:first-child { width: 380px; }Regards,
IsmaelHey tusing,
Thank you for the inquiry.
The theme doesn’t have a native configuration for EDD, but the plugin should work fine as long as the templates are properly added in the theme. Please check the following documentation for more info.
// https://docs.easydigitaldownloads.com/article/1216-moving-edd-templates-to-your-theme
Best regards,
IsmaelJuly 31, 2020 at 7:22 am in reply to: PHP error after "see all results" in search result page #1234314 -
This reply was modified 5 years, 7 months ago by
-
AuthorPosts
