Forum Replies Created
-
AuthorPosts
-
Hi,
Thank you for the update.
The css files are currently compressed, so you have to disable the Performance > File Compression settings after adding the code. Also, please don’t forget to remove the browser cache prior to checking the page.
Best regards,
IsmaelHi,
Thank you for the update.
The code is there but for some reason it’s not taking effect. We might have to wait for the document to be ready before executing the function. We adjusted the code a bit. Please try it again.
We just changed this line:
$(document).ready( function() { b('#recentecases'); });Best regards,
IsmaelAugust 19, 2020 at 4:34 am in reply to: Cookie Consent Message Bar Does Not Process Consent or Reload Page Properly #1238992Hi,
It still doesn’t work — still the same invalid login account. We tried different encryption and protocol, use default port, but it’s the same. Could you provide a screenshot of the FTP settings?
Best regards,
IsmaelAugust 19, 2020 at 3:58 am in reply to: Added PHP Functions for Autoplay Video and experience two bugs now: Please help #1238988Hi,
Thank you for the inquiry.
Did you mark off the Content > Player Settings > Enable Autoplay option of the video element? You can also mute the video in the same Player Settings toggle.
Best regards,
IsmaelAugust 19, 2020 at 3:44 am in reply to: enfold child theme layout broken on woocommerce customization #1238987Hi,
Why did you add two closing divs after the get_header(‘shop’)?
You have to remove the shortcodes in the template and use the actual rendered HTML instead just like what you did with the color section because shortcodes or elements that are not directly added in the builder will not work properly.
Best regards,
IsmaelAugust 17, 2020 at 12:38 pm in reply to: use CPT instead of page for "Page Content" element #1238468Hi,
Thank you for sharing that info.
If you want to include the new post type in the list, we have to modify the enfold\config-templatebuilder\avia-shortcodes\postcontent.php file and include the post type in the linkpicker element. Look for this code around line 72:
array( 'name' => __( 'Which Entry?', 'avia_framework' ), 'desc' => __( 'Select the entry that should be displayed', 'avia_framework' ), 'id' => 'link', 'type' => 'linkpicker', 'std' => 'page', 'fetchTMPL' => true, 'subtype' => array( __( 'Single Entry', 'avia_framework' ) => 'single' ), 'posttype' => array( 'page', 'portfolio' ), 'hierarchical' => 'yes', // 'yes' ( =default) | 'no' 'post_status' => 'publish,private,draft' // array | string (default = publish) ),In the posttype parameter or key, include the name of the new post type.
'posttype' => array( 'page', 'portfolio' ),But please not that using a custom post type on the Page Content element might cause unintended behavior or layout issues in the page.
Best regards,
IsmaelHi,
Thank you for the update.
Looks like the date only breaks to the second line on mobile view. We can decrease the font size to keep it on a single line.
Please try this css code.
@media only screen and (max-width: 1024px) { .date-container.minor-meta.updated { font-size: 13px !important; } }You can change the date and time format in the Settings > General panel.
// https://wordpress.org/support/article/formatting-date-and-time/
Best regards,
IsmaelHi,
This is actually cause by the loading spinner or icon. To fix the issue temporarily, we can add this code in the Quick CSS field.
.avia_loading_icon { display: none !important; }// https://kriesi.at/support/topic/masonry-screen-shakes-on-desktop/
Unfortunately, we are not yet sure why this is happening on other installation.
Best regards,
IsmaelHi,
Thank you for the update.
It looks like the gallery is not moving on the first and second click because it focuses the second and third items first before going to the fourth one and only then the gallery moves to display the next items. We recommend setting the Styling > Active Image Style to Enlarge Image so that the users can see the active item in gallery.
Best regards,
IsmaelHey loganfive,
Thank you for the inquiry.
Do you receive a lot of these emails, and is it from the same IP address? There are a lot of ways to prevent spam but one thing that usually works is to blacklist the IP addresses where the blank messages came from. We recommend installing a security plugins such as WordFence, Sucuri Security or All In One WP Security & Firewall to filter out the site traffic and block activities from suspected IP addresses.
Did you enable the contact form’s spam protection or the Google ReCAPTCHA option?
// https://kriesi.at/documentation/enfold/contact-form/#what-is-captcha
Best regards,
IsmaelHi,
Thank you for the info.
We can use this css code set a minimum height to the main container which in turn will push the socket downwards and remove the space below.
#main > .container_wrap.container_wrap_first.main_color.sidebar_right { min-height: 520px; }Best regards,
IsmaelAugust 17, 2020 at 7:20 am in reply to: Wishlist Member / WLM conflict with recent Enfold update / release #1238386Hey sky19er,
Thank you for the inquiry.
Do you still have the test page or site where this issue occurred? Please post the login details for that site in the private field so that we can check the issue.
Did you try disabling the Performance > File Compression settings after updating the theme?
Best regards,
IsmaelHey envatouser2019,
Thank you for the inquiry.
We’ll forward your concern to Kriesi. Currently, there are no plans on making the Advance Layout Builder (ALB) compatible with Gutenberg or vice versa, nor there are plans on creating block elements for the new editor.
Best regards,
IsmaelAugust 17, 2020 at 6:00 am in reply to: Cookie Consent Message Bar Does Not Process Consent or Reload Page Properly #1238354Hi,
We tried logging in to the server but it says that the user account above is invalid. Please check the info carefully or post another account so that we can debug the issue.
Thank you for your patience.
Best regards,
IsmaelHi,
You have to create a copy of the includes folder and of the loop-page.php file in the child theme in order keep the modifications after updating the theme.
Thank you for your patience.
Best regards,
IsmaelHi,
You’re welcome! Glad it’s working. Please don’t hesitate to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelHi,
We did not make such modification.
Sorry for the troubles. The previous developer added the css modifications in the old site to adjust the default style of the elements such as the post items. Unfortunately, we are not sure where the custom css code were added because the stylesheets are minified or compressed, and we couldn’t access the old site (mqgtst) using the user account above. The Appearance > Editor panel is not accessible either.
Please check the screenshot below.
Please disable the css compression first and post the login details of the old site so that we can check the dashboard and hopefully locate the css modifications.
Best regards,
IsmaelHi,
@Tom: Sorry I missed the pagination in the #recentecases container. Try to add this script in the functions.php file.
function add_custom_script(){ ?> <script type="text/javascript"> (function($){ function b(id) { $('.pagination .inactive').click(function(e) { e.preventDefault(); var section = $(id), link = $(this).attr('href'), anchor = $(section ).attr('id'); if(!section.length) return; var link = link + '#' + anchor; window.location.href = link; }); } $(document).ready( function() { b('#recentecases'); }); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_script');Best regards,
IsmaelHi,
We’ll keep the thread open for further updates. We might have to remove the aria-hidden attribute and move the location of the privacy modal container so that it’s not seen on the reader view as the main content.
Best regards,
IsmaelHi,
@mealcasa: We were not able to reproduce the issue on our own installation. The default quantity arrows display as expected after removing the custom ones. To test the issue properly, please open a new thread and post the necessary details in the private field.We’ll close this one for now.
Best regards,
IsmaelHi,
Glad to know that this is no longer an issue. Please feel free to open a new thread if the layout issue happens again.
Thank you for your patience and have a nice day.
Best regards,
IsmaelHey Jak73,
Thank you for the inquiry.
The share buttons from the theme just redirect the users to certain social media or external sites, and it doesn’t store any cookies in the clients’ browser or collect any user-related data. Is that what you’re asking?
To learn more about the privacy options from the theme, please check this documentation.
//https://kriesi.at/documentation/enfold/privacy-cookies/
Best regards,
IsmaelHey Jak73,
Thank you for the inquiry.
You might be able to use Woocommerce variation filters to achieve something like this but the templates or the layout of the product items might have to be modified a bit to make it look like a portfolio gallery.
// https://docs.woocommerce.com/document/products-by-attributes-variations/
You could also try this plugin.
// https://wordpress.org/plugins/search-filter/
Best regards,
IsmaelHey xxtita,
Sorry for the delay. What do you mean by GPX layer? Could you provide a screenshot or explain it a bit further?
Best regards,
IsmaelHi,
1.) Looks like the phone number is now visible on mobile view. The color is now green over a white background.
2.) Have you tried switching to a Full Screen Slider instead? The fullscreen slider inherits the height of the browser screen, so this should create enough space for the captions and buttons on mobile view. But if you want to keep on using the full width slider, we can use this css code to remove the space above the caption.
@media only screen and (max-width: 767px) { .html_header_transparency #top .avia-builder-el-0 .container, .html_header_transparency #top .avia-builder-el-0 .slideshow_caption { padding-top: 0; } }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,
As I mentioned before, when we switch to a default WordPress theme, the page loads at least twice as fast as with Enfold
It also doesn’t contain half of the features that Enfold or any other premium themes have, so it’s quite expected that the default theme will load faster than any premium themes available in the market out of the box. More features require more resources.
Again, you can start off by manually resizing and optimizing the images to decrease the overall size of the page, then install an image compression plugin like ShortPixel to further decrease the file size of the images.
After optimizing the images, you can gradually implement the other recommendations in the article that we posted above to optimize the loading speed of the site. To learn more about site optimization, please check this article.
// https://gtmetrix.com/wordpress-optimization-guide.html
Best regards,
IsmaelHi,
Have you tried clicking the “Change Media” button in the Video/Audio layer? This should open up a modal pop up window where you can add the URL of the youtube or vimeo video or select a locally hosted media file from your media library.
You can also delete the current one and add a new Video/Audio layer again to see the modal popup window for the media files. And after selecting the media file or placing the required video URL, this will automatically add the embed code (iframe or video tag) in the layer field.
Best regards,
IsmaelHi,
We would really appreciate it if you will open these questions on a separate thread, to avoid confusion. Thank you for your patience.
Best regards,
IsmaelAugust 14, 2020 at 5:36 am in reply to: enfold child theme layout broken on woocommerce customization #1237663Hi,
Thank you for the update.
The issue occurs because the containers starting from the first slideshow or slider is rendered outside the wrap_all container. Those elements are supposed to be inside the main container. This causes the elements in the page to not respond or adjust properly on mobile view.
How did you add the sections? Please post the content of the modified files using pastebin.com so that we can check the issue properly, or test it on our end if necessary.
Best regards,
IsmaelHi,
Thank you for the clarification.
You have to translate the content manually if the Modal Window Custom Content because these entries are already saved in and fetched from the database. Since the default custom content is in English, it will display in English initially.
When the custom content option is disabled, it will just display static text from a template (themes\enfold\includes\helper-privacy.php) which can be automatically translated in the front end without getting anything from the database.
Best regards,
Ismael -
AuthorPosts
