Forum Replies Created
-
AuthorPosts
-
December 21, 2020 at 12:46 pm in reply to: Site title and category title overwritten by post title #1269006
Hey msgrt,
Thank you for the inquiry.
The title of the first post (Weihnachtsgruß des Bürgermeisters) is now being used as the title of the front page. Did you figure out the issue?
Best regards,
IsmaelDecember 21, 2020 at 12:44 pm in reply to: WMPL not working for headline with full-width slideshow #1269005Hey BelIblis,
Thank you for the inquiry.
We are not yet sure why the caption title is not properly translated. Have you tried to remove the slider, update the page, then add it again from scratch? As you may already know, you could also duplicate the page to another language and translate or edit the content manually instead of using the translation management.
Best regards,
IsmaelDecember 21, 2020 at 12:26 pm in reply to: autoloaded data is too large and crashing my server #1268997Hi,
@Cloudypro: Would you mind creating your own ticket or thread for the issue? Please include the login details to the dashboard, cpanel and the file server so that we could check the issue properly. We will close this one for now.Best regards,
IsmaelHi,
Thank you for the info.
Are you referring to this modification?
// https://kriesi.at/documentation/enfold/blog-post/#fullwidth-single-post
Did you add the provided css code?
/*----------------------------------------- // CSS - Full-width Single Post //----------------------------------------*/ #top.single .post .blog-meta { margin: 0 30px 10px 30px; } #top.single .post .post-title { text-align: left; width: 100%; } #top.single .post .post-meta-infos { text-align: left!important; } #top.single .post .entry-content-wrapper, #top.single .post .entry-content-header, #top.single .post .entry-content, #top.single .post .post-title, #top.single .post .entry-footer { min-width: 100%!important; }Please add the css cod again or post the login details in the private field so that we could test the modification.
Best regards,
IsmaelDecember 21, 2020 at 7:23 am in reply to: Blog post image sizes suddenly all different sizes? #1268970Hi,
Thank you for the info.
We tried logging in to the site but got locked out by the security plugin. Please disable the plugin temporarily or whitelist the countries listed in the following page so that we could check the dashboard and the blog settings.
Best regards,
IsmaelHi,
Sorry for the delay. The link above is not a product archive or category page. Where would you like to display the category description? Please provide a screenshot or a mockup using imgur or dropbox.
Best regards,
IsmaelHi,
Sorry for the delay. We modified the taxonomy-portfolio_entries.php file a bit so that it displays the masonry element instead of default post grid.
$atts = array( 'type' => 'grid', 'items' => get_option('posts_per_page'), 'columns' => 3, 'class' => 'avia-builder-el-no-sibling', 'paginate' => 'yes', 'use_main_query_pagination' => 'yes', 'custom_query' => array( 'post__in' => $post_ids, 'post_type' => get_post_types() ) ); $blog = new avia_masonry($atts); $blog->extract_terms(); $blog->query_entries(); echo $blog->html();We also added this snippet or filter in the functions.php file to adjust the portfolio archive query.
function my_avia_masonry_query_func( $query, $params ) { if(!is_archive()) return $query; global $wp_query; return $wp_query->query; } add_filter( 'avia_masonry_entries_query', 'my_avia_masonry_query_func', 10, 2);`
See private field.
Best regards,
IsmaelHi,
Glad to know that you have found a solution. Please feel free to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
Have you tried displaying a different slider that is specifically configured for mobile view or that uses images that are actually resized for smaller screens? You can toggle the sliders’ Advanced > Responsive > Element Visibility to control their visibility of different screen sizes or devices.
Best regards,
IsmaelHi,
Thank you for the info.
We adjusted the filter in the functions.php file a bit to remove the items that belong to the Reservados category.
function avia_masonry_custom_query( $query ) { if(is_page(38)) { $query['tax_query'][] = array( 'taxonomy' => 'portfolio_entries', 'field' => 'id', 'terms' => 38, 'operator' => 'NOT IN' ); } return $query; } add_filter('avia_masonry_entries_query', 'avia_masonry_custom_query');Best regards,
IsmaelHi,
What is the actual specs of the server, and how do you test the memory consumption ? Try to use this query in your database to show a list of the top autoloaded data, and post it here so that we can check if some of the entries can be deleted.
SELECT option_name, length(option_value) AS option_value_length FROM wp_options WHERE autoload='yes' ORDER BY option_value_length DESC LIMIT 200;You should also try to clean the database transients and do a database repair once in while.
// https://kinsta.com/knowledgebase/wordpress-repair-database/
Best regards,
IsmaelHi,
@El: Sorry about that. Can we access the site or the dashboard? We would like to test the modifications. As you can see in the previous screenshot, setting the height of the td tag or of the woocommerce-cart-form__cart-item container fixes the issue on our end.
Screenshot: https://imgur.com/UBCGGFv
This is the previous fix.
table.shop_table .woocommerce-cart-form__cart-item.cart_item { height: 100% !important; }Best regards,
IsmaelHi,
Is there any method to bypass the issue? My client wants specifically a video he created (the one that is in the link you received) which has sound.
Please tell the client that by enabling the audio, the video will not autoplay and since there are no video controls in the color section, users will not be able to play the video manually and will probably never see it.
If you really want to enable the audio, please keep the previous modification, then edit the enfold\config-templatebuilder\avia-shortcodes\av-helper-slideshow.php file and remove this code around line 488:
$video_class .= ! empty( $video_mute ) ? ' av-mute-video' : '';Best regards,
IsmaelHi,
Have you tried removing the class attribute from the html or markup? They seem to be unnecessary. Those markups or the extra characters in the html might be causing the error in the builder.
Best regards,
IsmaelHi,
has extra links in the Sidebar above SidebarPages:Office.
Those are probably the default sidebar widgets or the dummy widgets. To disable it, please add this snippet in the function.php file.
function avf_remove_default_sidebars( $show ) { return false; } add_filter( 'avf_show_default_sidebars', 'avf_remove_default_sidebars', 10, 1);Best regards,
IsmaelHi,
The image is zoomed in because the theme has to maintain its aspect ratio, so parts of it will have to overflow outside the background positioning area or it will get cut off. We could set it so that the whole image is visible but it will create white spaces or gaps around the container. If you would like to test it, please try this css code.
@media only screen and (max-width: 767px) { .avia-full-stretch { background-size: contain !important; background-position: top center !important; } }Best regards,
IsmaelHi,
Thank you for the info.
Which documentation are you referring to? Please provide a link to the documentation so that we could see the instructions, and a link to one of the posts where the modification can be seen.
Best regards,
IsmaelHi,
Thank you for the info.
Is the Sidebar Pages widget area empty? The links above the widgets are from the default Page Sidebar navigation, which can be disabled from the Enfold > Sidebar Settings panel.
Best regards,
IsmaelHi,
Thank you for the update
Yes, you should clear the cache or try to check the site on incognito mode. Also, make sure that the Performance > File Compression settings are disabled while you are still configuring the site.
Best regards,
IsmaelHi,
Are you saying that it works fine when you are not using the testimonial element? We checked the content of the testimonial element in the old page and it has some odd markup or the value of the class attribute is quite long. Where did you get it and what are those class names for?
Example:
<span class="d2edcug0 hpfvmrgz qv66sw1b c1et5uql oi732d6d ik7dh3pa fgxwclzu a8c37x1j keod5gw0 nxhoafnm aigsh9s9 d3f4x2em fe6kdd0r mau55g9w c8b282yb iv3no6db jq4qci2q a3bd9o3v knj5qynh oo9gr5id hzawbc8m" dir="auto">Mi sto preparando ad un viaggio a Zanzibar ed essendo la prima volta in questa destinazione, ho chiesto alcuni consigli allo staff di EasyZanzibar. Posso solo dire di aver ricevuto non solo degli ottimi consigli di viaggio, ma anche utili raccomandazioni in vista della partenza. Bravi e </span>complimenti <span class="d2edcug0 hpfvmrgz qv66sw1b c1et5uql oi732d6d ik7dh3pa fgxwclzu a8c37x1j keod5gw0 nxhoafnm aigsh9s9 d3f4x2em fe6kdd0r mau55g9w c8b282yb iv3no6db jq4qci2q a3bd9o3v knj5qynh oo9gr5id hzawbc8m" dir="auto">per il vostro sito web dove ho trovato ottimi spunti su come organizzare le mie vacanze. Grazie!</span>You might have to re-create the testimonial items from scratch and clean the markup.
Best regards,
IsmaelDecember 18, 2020 at 3:32 pm in reply to: Adding button to mute/unmute audio on fullscreen background video #1268435Hi,
@necessary66: The audio toggle or button works fine on Firefox Dev Windows 10. Do you see any error in the browser console when you check or test the audio button on Safari?Best regards,
IsmaelHi,
Thank you for the update.
Create an image that is 5000px long for example, add it as a layer in one of the slides and in the Styles panel, make sure that the width in the Layout | Sizing & Position is set to 5000px as well and height to 100% or auto. In the layer’s Transitions tab, edit the Opening Transition and disable the Fade effect in the Style Properties box to make sure that the image is actually visible when the slide starts, then set the Position & Dimensions > Offset X to -100lw or -100% layer width, and set the easing to linear and play around with the duration . This should make the layer or the image slide from start to end.
Best regards,
IsmaelHi,
We forgot to inform you that by enabling the audio, the browser will prevent the video from autoplaying on page load. This is because of the new autoplay policy, which aims to minimize data consumption and network usage.
// https://developers.google.com/web/updates/2017/09/autoplay-policy-changes
Chrome’s autoplay policies are simple:
Muted autoplay is always allowed.
Autoplay with sound is allowed if:
User has interacted with the domain (click, tap, etc.).
On desktop, the user’s Media Engagement Index threshold has been crossed, meaning the user has previously played video with sound.
The user has added the site to their home screen on mobile or installed the PWA on desktop.
Top frames can delegate autoplay permission to their iframes to allow autoplay with sound.Best regards,
IsmaelHi,
Happy to help! Thank you for sharing. Please feel free to open a new thread if you need anything else.
Have a nice day. :)
Best regards,
IsmaelHi,
@doppelaxel: The content of privacy modal popup window is actually editable, so you should be able to remove the default privacy toggle including the button for Google Analytics, and edit the privacy content when necessary. Please check the documentation for more info.// https://kriesi.at/documentation/enfold/privacy-cookies/#additional-custom-cookies
Make sure that the Modal Window Custom Content option in the Privacy & Cookies > Cookie Handling tab is enabled. The Google Analytics privacy toggle or shortcode is located in the Google Analytics Cookies tab.
These cookies collect information that is used either in aggregate form to help us understand how our website is being used or how effective our marketing campaigns are, or to help us customize our website and application for you in order to enhance your experience. If you do not want that we track your visit to our site you can disable tracking in your browser here: [av_privacy_google_tracking]Just remove this shortcode..
[av_privacy_google_tracking].. or remove the whole Google Analytics Cookies tab if it is not needed.
Best regards,
IsmaelHi,
Thank you for the inquiry.
The solution that we provided in the following thread might help with the pagination issue.
// https://kriesi.at/support/topic/the-grid-with-products-does-not-work-pagination/#post-1254673
Best regards,
IsmaelHi,
The following css code should ensure that the quantity buttons are visible on every device or screen sizes.
.cart_item .plus, .cart_item .minus { display: block !important; }Best regards,
IsmaelDecember 18, 2020 at 2:31 pm in reply to: Video controls don't show up on full width slider #1268411Hi,
You might be able to make the above modification work with Vimeo by using its own player API. Unfortunately, this is beyond the scope of support and something that we will not be able to provide here. Please hire a freelance developer or contact our partner Codeble for further assistance.
// https://developer.vimeo.com/player/sdk/reference#set-the-volume-level-of-a-player
Best regards,
IsmaelHey samanthashea,
Thank you for the inquiry.
That option or layout is not available by default, but you can always use the Advance Layout Builder and Templates option to create custom layouts for the posts. If you want the posts to have that layout automatically, then you will have to modify the single.php file or the includes > loop-index.php template.
Best regards,
IsmaelHey Jorie,
Thank you for the inquiry.
The Events Calendar plugin is compatible with the theme but the new or the updated calendar design of the plugin is causing issues with the event and calendar views. You could disable that option in the Events > Settings > Display tab and the calendar and events template should work fine after that.
Related threads:
// https://kriesi.at/support/topic/the-events-calendar-breaks-design/#post-1260693
// https://kriesi.at/support/topic/enfold-calendar-like-church-theme/#post-1263871Best regards,
Ismael -
AuthorPosts
