Forum Replies Created
-
AuthorPosts
-
Hi,
You’re very welcome! And thank you for the kind words. We’ll close the thread now.
Have a nice day.
Best regards,
IsmaelHi,
The site is asking for another authentication (htaccess). Please include it in the private field so that we can check the site.
Best regards,
IsmaelJune 3, 2020 at 1:51 pm in reply to: Blog archive with white background preview text and dissapearing icons in footer #1219051Hi,
Thank you for the screenshot.
Please look for the previous code that we suggested above..
.single .template-blog .post .entry-content-wrapper { background: #ffffff; padding: 30px; margin-top: -10px; margin-right: 50px; }.., then replace it with the following.
.single big-preview.single-big { padding: 0; } .single .template-blog .post .entry-content-wrapper { width: 100%; background: #ffffff; padding: 30px; margin-top: -10px; margin-right: 0; }This is how it should look after adjusting the code.
Screenshot: https://imgur.com/a/1792BVC
Best regards,
IsmaelHi,
Thank you for creating a staging site. We can see the issue now. In order to fix it, we have to override the default minimum width of the html container. Please add this code in the Quick CSS field or the child theme’s style.css file.
@media only screen and (max-width: 1024px) { html { min-width: 0; } }Please don’t forget to toggle the Performance > File Compression settings and remove the cache.
Best regards,
IsmaelJune 3, 2020 at 1:28 pm in reply to: Comments and add comment form disappeared after upgrading Enfold #1219046Hi,
Alright. Thank you for the info. We created a test post using the default editor and we can see that the comments area are displaying in the front end properly — theme is active. Please check the private field.
Can you give us a direct link to a post where the comment area is not displaying?
Best regards,
IsmaelHi,
Alright. Thank you for your patience. We’ll close the thread now.
Best regards,
IsmaelHi,
You can use the email that we provided in the private field, but please note that we don’t have direct access to it, so you have to post the actual username and password after creating the user account.
You can also install and activate the Temporary Login Without Password plugin to generate a login token instead of creating an account.
Best regards,
IsmaelHi,
You’re welcome. Please don’t hesitate to open a new thread if you need anything else.
Have a nice day!
Best regards,
IsmaelJune 3, 2020 at 1:16 pm in reply to: Background image in Alternate Content disappers after activation CSS-aggregation #1219036Hi,
No problem. Please feel free to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelJune 3, 2020 at 1:14 pm in reply to: Blog entry does look weird when using Avia Layout Architect #1219035Hi,
Thank you for the update.
1.) It should add a comma after every category item but if you want to replace it, look for this line in the previous snippet..
$cats .= get_the_term_list($the_id, $taxonomy, '', ', ','').' ';.., then replace the value of the 4th parameter (‘, ‘) in the get_the_term_list function.
// https://developer.wordpress.org/reference/functions/get_the_term_list/
2.) What do you mean by keywords? How do you define them?
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,
You can use this filter in the functions.php file to change the layout of the single post pages.
/* remove sidebar on single post pages */ function avia_change_post_layout($layout, $post_id) { if( is_singular('post') ) { $layout['current'] = $layout['fullsize']; $layout['current']['main'] = 'fullsize'; } return $layout; } add_filter('avia_layout_filter', 'avia_change_post_layout', 10, 2);Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the update.
Looks like an issue with the theme’s Performance > File Compression settings, so we disabled the option. Temporarily, you can install plugins like Autoptimize in place of the default file compression.
Best regards,
IsmaelHey sftsengineering,
Thank you for the inquiry.
You have to apply the onclick attribute directly to the button markup.
<div class="avia-button-wrap avia-button-center"> <a href="" onclick="Calendly.initPopupWidget({url: 'https://calendly.com/xyz'});return false;"> <span class="avia_button_icon avia_button_icon_left " aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span> <span class="avia_iconbox_title">Schedule a demo</span> </a></div>Best regards,
IsmaelHi,
mobile phone the image is displayed nice and clean not greyed out not poped up as it is on the desktop pc when I move the mouse over but displayed as a normal image… how can this work than ?
Sorry for the confusion. The image overlay is set to only display on mouse hover, but since there is no “hover” state on mobile or touch device, and you can’t use a mouse obviously, the overlay has to be displayed automatically on page load. I hope that’s clear enough.
If you want, we can completely disable the overlay on mobile devices so that the image is fully visible. Please add this code in the Quick CSS field.
@media only screen and (max-width: 767px) { .image-overlay { display: none !important; } }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 bobfurgo,
Please continue on this thread: https://kriesi.at/support/topic/wordpress-backend-tabs-change-portfolio-to-team-2/
Best regards,
IsmaelHey bobfurgo,
Thank you for the inquiry.
That is the portfolio post type from the theme. You can modify it by editing the includes > admin > register-portfolio.php file.
If you want, you can also deregister it by adding this code in the functions.php file.
remove_action('init', 'portfolio_register');After that, create a copy of the register-portfolio.php, rename it to something else, register-team.php file for example, move it to the child theme folder and do your own modifications. You can then load the modified file using this code in the functions.php file.
require_once( 'path/to/register-team.php' );Best regards,
IsmaelJune 2, 2020 at 5:07 pm in reply to: (Some) product pages are insecure – enfold loading bg-button.pg from dev site? #1218808Hi,
Sorry for the late response. Looks like it’s not working properly because the file compression doesn’t change the source URL from http to https. Please try to disable the Performance > File Compression settings temporarily. Let us know if that helps.
Best regards,
IsmaelHey Julie,
Thank you for the inquiry.
What do you mean by Enfold template? If you’re referring to the advance layout builder, then you have to modify the template-builder.php file. This is the template used by the builder to render the elements or shortcodes.
Best regards,
IsmaelJune 2, 2020 at 4:59 pm in reply to: How do i order the ajax search by ascending or descending order? #1218803Hey MrPoBoi,
Sorry for the delay. You can use the avf_ajax_search_query filter to adjust the query of the ajax search. Usage examples can be found in the following threads.
// https://kriesi.at/support/topic/bad-search-results/#post-1128923
// https://kriesi.at/support/topic/private-post-made-public-after-update/#post-1116846You need to add the order and orderby parameter in the query.
Best regards,
IsmaelHi,
Thank you for the update.
We will include a patch for this error in the next release. For now, you can use the fix provided in the following thread.
Related threads:
// https://kriesi.at/support/topic/enfold-fatal-error-only-in-customize-w-hummingbird-page-cache-many-sites/#post-1216994
// https://kriesi.at/support/topic/fatal-error-class-avia-gutenberg-php-on-line-529Best regards,
IsmaelHi,
Sorry for the delay. Have you tried setting the Enfold > Privacy & Cookies > Cookie Handling Default Cookie Behavior settings to the first option. This option will automatically allow essential and external or third party cookies on page load even without the users’ direct consent to store cookies. You might have to add this information in your cookie or privacy policy page.
Best regards,
IsmaelHi,
Awesome! Glad to know that you figured it out. We’ll close this thread now.
Have a nice day.
Best regards,
IsmaelHi,
Sorry for the delay. We can’t really figured out why the sidebar is not displaying in the archive pages. We tried disabling some plugins that might be influencing the default product layout — but the sidebar is still not displaying. Can we deactivate all plugins while we debug the issue?
Best regards,
IsmaelHi,
Sorry for the delay. We can’t seem to access the site. Did you move it somewhere else? Please provide the new URL in the private field. A screenshot will help as well.
Best regards,
IsmaelHi,
Sorry for the delay. You have to adjust the width of the icon containers on smaller screens or replace the current width value with relative length units (32%) instead of absolute (380px).
@media only screen and (max-width: 1366px) { #icone-livraison { width: 32%; margin-left: 1%; } }Best regards,
IsmaelHi,
@Mike is correct. The color section will fall back to other formats in an unlikely scenario when mp4 is not supported by the current browser. You can look for the avia_html5_video_embed function inside the themes\enfold\framework\php\function-set-avia-frontend.php file.And in case you’re interested: https://caniuse.com/#feat=mpeg4
Best regards,
IsmaelHi Elena!
Related thread: https://kriesi.at/support/topic/customise-masonry-ajax-filter-to-work-with-grid-blog-post-and-custom-taxonomies/
Where can we see the issue? Please provide a link to the page in question so that we can inspect the widget. And as we’ve said in the previous thread, we are not familiar with the plugin, so additional information from its developer will help. Please contact the plugin developers for additional assistance.
Best regards,
IsmaelJune 2, 2020 at 9:59 am in reply to: customise masonry ajax filter to work with grid blog post and custom taxonomies #1218698Hi,
Sorry for the delay. Looks like you’ve already opened another thread with the same inquiry, we’ll close this one for now. Unfortunately, we might not be able to effectively help you with the issue because we are not familiar with the plugin. Please contact the plugin developer for additional assistance.
Thank for your patience.
Best regards,
IsmaelHi,
Sorry for the delay. You can use this css code to define a maximum width for the mega menu container.
.avia_mega_div { max-width: 70vw; }And in case you’re not familiar with vw unit, it stands for viewport width and 70vw means 70% of the view port width.
Best regards,
IsmaelHi,
Sorry for the delay. Did you set your phone to block all cookies? Please note that items in the cart are saved using cookies, so it will not work properly if cookies are blocked. Another thing is the privacy cookies — you have to consent to the cookies first before any products can be added to the cart, unless the Privacy & Cookies > Default Cookie Behavior is set to the first option, then you’ll be able to add products without consenting to cookies.
// https://support.apple.com/en-us/HT201265
Best regards,
Ismael -
AuthorPosts
