Forum Replies Created
-
AuthorPosts
-
Hey!
UPDATE: Regarding 1 & 2, we registered the background image of the color section in the Yoast sitemap. Please update the enfold/config-wordpress-seo/config.php file with this code: https://pastebin.com/N3rmYPRW
Best regards,
IsmaelHi,
1-2.) Unfortunately, this is beyond the scope of support. You may need to hire a freelance developer to help you with this customization. You can find freelancers by visiting our customization page.
4.) We updated the Yoast config to include posts images to the sitemap. Please edit the enfold/config-wordpress-seo/config.php, remove everything, and then replace it with the content from the following link: https://pastebin.com/kRh3YKbh
Best regards,
IsmaelFebruary 26, 2024 at 10:13 am in reply to: disable zoom effect on images in “masonry gallery” made of portfolio items #1435410Hi,
Great! Glad we could be of help. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
The automatic update in your dashboard is no longer supported by the version currently installed on your site, 4.8.6.1. To update the theme, you’ll need to do so manually either via S/FTP or by uploading the theme files directly to your server. For more info, please refer to the documentation provided below.
// https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp
Best regards,
IsmaelFebruary 26, 2024 at 10:07 am in reply to: Masonry: AND rule for category selection returns no results #1435408Hi,
Thank you for the update.
This seems to be functioning correctly from our side. Please check the screenshots provided in the private section. Could you confirm the version of the theme installed on your site? Please make sure that it’s updated to version 5.6.10. If the theme has been updated and the problem persists, please provide the login credentials in the private field.
Best regards,
IsmaelHi,
Thank you for the update.
Yes, you can use the plugin but you can also do it manually in the functions.php file.
Example:
function av_custom_input_script_shortcode($atts) { $atts = shortcode_atts( array( 'type' => 'text', 'placeholder' => '', 'script' => '', ), $atts ); $type = esc_attr($atts['type']); $placeholder = esc_attr($atts['placeholder']); $script = esc_js($atts['script']); $output = '<input type="' . $type . '" placeholder="' . $placeholder . '" />'; $output .= '<script>' . $script . '</script>'; return $output; } add_shortcode('av_custom_input_script', 'av_custom_input_script_shortcode');In the builder, you can use this shortcode:
[av_custom_input_script type="text" placeholder="Enter your text" script="alert('Input submitted');"]Best regards,
IsmaelHi,
You can add this css code to adjust the top padding of the main container based on the header layout.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive #top #main { padding-top: 88px !important; } .response.html_header_transparency #main { padding-top: 0 !important; } }This should apply an 88px top padding on pages with header transparency disabled.
Best regards,
IsmaelHi,
The arrows seem to be displaying as they should. How would you like the arrows to appear on mobile view?
Please note that the css code above should remove the border both on desktop and mobile view. If you want to apply it on desktop view only, please use this css code.@media only screen and (min-width: 768px) { /* Add your Desktop Styles here */ #top .av-control-minimal-dark .avia-slideshow-arrows a:before { border-color: transparent; } }Best regards,
IsmaelHi,
Thank you for the info.
We cannot find any Grid Row element or cells in the page. Where did you add the element? Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:
1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
2.) Locate the option to upload a file or an image.
3.) Select the screenshot file from your computer or device and upload it to the platform.
4.) After the upload is complete, you will be provided with a shareable link or an embed code.
5.) Copy the link or code and include it in your message or response to provide us with the screenshot.Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.
Best regards,
IsmaelHi,
Have you tried applying a minimum height to the caption content? Please try to add this code in the Quick CSS field.
.av-masonry-entry .av-inner-masonry-content { min-height: 130px; }Best regards,
IsmaelHey joschro,
Thank you for the inquiry.
1.) You can set the Content > Sorting > Order settings to Page Order, then add this code to the functions.php file to enable the Order field for the portfolio items. You can then manually adjust the order of the items in the grid by modifying the Order field.
/* Change portfolio post type settings */ function avf_portfolio_cpt_args_mod($args) { $args['supports'][] = 'page-attributes'; return $args; } add_filter('avf_portfolio_cpt_args', 'avf_portfolio_cpt_args_mod');// https://wordpress.com/support/pages/page-attributes/#access-page-attributes
2.) The recommended size is 450x450px, but it may vary depending on the number of columns.
3-4.) Yes, you have to use the Portfolio Grid element in the Advance Layout Builder to display your portfolio items.
Best regards,
IsmaelHey Erin,
Thank you for the inquiry.
You need to set the home or front page in the Enfold > Theme Options > Frontpage Settings. Please reset the options in the Settings > Reading or the Appearance > Customize panel to default, then configure the settings as described.
Best regards,
IsmaelFebruary 26, 2024 at 8:37 am in reply to: Masonry: AND rule for category selection returns no results #1435388Hey enoversum,
Thank you for the inquiry.
Please note that when you set the Terms Relation to AND, your posts must belong to the selected categories for them to display in the list. If you have two categories, for example, the posts should belong to both categories. Is this how your posts are set up? If not, you have to set it back to OR.
Best regards,
IsmaelHi,
Thank you for the update.
You can upload the image for the banner in the Products > Categories panel. Edit a category, then look for the Thumbnail section.
Best regards,
IsmaelHey!
You can add this filter to disable the sidebar on search pages.
function avia_change_sidebar_layout($layout, $post_id) { if ( is_search() ) { $layout['current'] = $layout['fullsize']; $layout['current']['main'] = 'fullsize'; } return $layout; } add_filter('avia_layout_filter', 'avia_change_sidebar_layout', 10, 2);Regards,
IsmaelHi,
@northorie: Would you mind providing a screenshot of the changes that you’d like to make? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
2.) Locate the option to upload a file or an image.
3.) Select the screenshot file from your computer or device and upload it to the platform.
4.) After the upload is complete, you will be provided with a shareable link or an embed code.
5.) Copy the link or code and include it in your message or response to provide us with the screenshot.Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.
Best regards,
IsmaelFebruary 23, 2024 at 10:21 am in reply to: How do I set up bbPress to have a forum layout similar to the one on kriesi.at? #1435174Hey liuxuewu,
Thank you for the inquiry.
The support forum is a modified version of bbPress. Unfortunately, these modifications are not included in the theme by default and would require a significant amount of time and modifications to implement. Regrettably, this level of customization is not covered by our support. However, if it is crucial for you to have this functionality implemented, you have the option to hire a freelancer who can assist you with the customization. You can find freelancers who specialize in theme customization by visiting our customization page.
If you have any other questions or require further assistance, please feel free to let us know.
Best regards,
IsmaelFebruary 23, 2024 at 8:37 am in reply to: Accordion Slider – Stop allowing all images to show in slider #1435166Hi,
Thank you for the inquiry.
As suggested above, you can apply a custom class name to the Accordion elements and re-initialize the lightbox script in order to group the items. Please edit all Accordion elements in the page, then go to the Advanced > Developer Settings. In the Custom CSS Class name field, place the value ‘accordion-lightbox-group’. After editing all Accordion elements, add this code in the functions.php file.
function ava_custom_script_group_lightbox() { ?> <script> (function($){ function g() { var accordion = $('.accordion-lightbox-group') accordion.each(function() { var srcList = []; var slider = $(this) slider.find('li a').each(function() { var src = $(this).attr('href'); var title = $(this).attr('title'); var alt = $(this).attr('alt'); srcList.push({ src: src, type: 'image', title: title, alt: alt }); }); slider.magnificPopup({ items: srcList, type: 'image', gallery: {enabled: true} }); }); } $(document).ready(function() { g(); }); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_custom_script_group_lightbox');If this doesn’t work as expected, try to edit the enfold/js/avia-snippet-lightbox.js, look for this code:
var alt = item.el.attr('alt'); if (typeof alt == "undefined") { alt = item.el.find('img').attr('alt'); } if (typeof alt != "undefined") { img.attr('alt', alt); }Replace it with:
if (item.el) { var alt = item.el.attr('alt'); if (typeof alt == "undefined") { alt = item.el.find('img').attr('alt'); } if (typeof alt != "undefined") { img.attr('alt', alt); } }Best regards,
IsmaelHey Benoit Roussialz,
Thank you for the inquiry.
Where can we view the site? Please share the site URL in a private field. Have you tried to run tests using Google PageSpeed Insights or GTmetrix?
Best regards,
IsmaelHi,
Thank you for the inquiry.
Social bookmark icons are hidden on mobile devices by default. If you want to display it back, please add this css code.
@media only screen and (max-width: 479px) { .responsive #top #wrap_all #header_meta .social_bookmarks { display: block; float: left; width: 30%; padding: 0; margin: 0; } .responsive #top #header_meta .social_bookmarks li { border: 0; } .responsive #top #wrap_all #header_meta .phone-info { width: 70%; float: left; clear: none; } }Best regards,
IsmaelHey Andrea,
Thank you for the inquiry.
You can add this code in the Enfold > General Styling > Quick CSS field to apply borders to the accordion slider.
.aviaccordion.avia-accordion.av-20kk09-5e9d8a8cecdc150ba53caa6aa5560059 { border-left: 3px solid red; border-right: 3px solid red; }Best regards,
IsmaelHey josh,
Thank you for the inquiry.
Would you mind providing a screenshot of the button that you’d like to remove? You can use platforms like Savvyify, Imgur or Dropbox to upload and share the screenshot. Here are the steps to follow:
1.) Visit the website of your chosen platform, such as Savvyify, Imgur or Dropbox.
2.) Locate the option to upload a file or an image.
3.) Select the screenshot file from your computer or device and upload it to the platform.
4.) After the upload is complete, you will be provided with a shareable link or an embed code.
5.) Copy the link or code and include it in your message or response to provide us with the screenshot.Thank you for taking the time to share the screenshot. It will help us better understand the issue you’re facing and provide appropriate assistance.
Best regards,
IsmaelFebruary 23, 2024 at 7:06 am in reply to: Styling Issues after importing Enfold 2017 Theme Demo #1435160Hi,
Thank you for the update.
Have you tried uploading the child theme via S/FTP? Please check the documentation below for more info.
// https://kriesi.at/documentation/enfold/install-enfold-theme/#ftp-install
// https://kriesi.at/documentation/enfold/child-theme/#how-to-install-the-child-themeBest regards,
IsmaelHey sophiasbiti,
Thank you for the inquiry.
Are you inserting scripts or input tags within the Code Block element? Please note that such tags could break the builder’s functionality and are not recommended. You might have to create a custom shortcode for handling these script and input tags, instead of adding them directly to the builder.
// https://codex.wordpress.org/Shortcode_API
Best regards,
IsmaelHi!
Thank you for the update.
1.) The value “mainContentOfPage” is a valid schema.org item property for indicating the main content of a webpage. For more information on schema.org’s WebPage type and its properties, you can refer to the official documentation at https://schema.org/WebPage.
2.) The theme doesn’t really impose strict limitations on how users build their pages, so they are not limited to elements that applies images as background. We recommend using elements that make use of HTML img tags, such as an Image element, rather than applying background images to Color Sections.
3.) If you’ve experienced a decline in your site’s search engine ranking, it may be best to seek assistance from an SEO consultant. While the theme includes basic schema markup to help search engines understand the structure of your content, you may need more specific schema markup for certain types of content or data. You might want to look for a dedicated schema markup plugin or extension for a more accurate schema markup suited to your site.
4.) We modified the filter a bit to make sure that it recognizes the value of the attachment attribute in the Image element.
// https://pastebin.com/hpZ7V3pU
With this modification, Yoast was able to recognize the Image, Gallery and Slider elements in the page as shown in the screenshots below. The page has 3 Image elements, a Gallery with 5 items, and an Easy Slider with 3 slides, total of 11 images: https://1drv.ms/f/s!AjjTfXSRbKTvgtxfLx7TxBKZnZrGyw?e=NgYxo2
Cheers!
IsmaelFebruary 22, 2024 at 7:43 am in reply to: searching for a topic in the forum results in critical error on this website #1435094Hey!
Good to know! Please feel free to open another thread if you can’t find what you’re looking for in the forum.
Have a nice day.
Regards,
IsmaelHi,
Good to know that the footer issue has been resolved. Regarding the formatting, the home page on the development site looks exactly the same as in the live site. If you encounter minor styling issues, try toggling or temporarily disabling the Enfold > Performance > File Compression settings, then purge the cache.
Best regards,
IsmaelHi,
Great! Good to know that the issue has been fixed. Let us know if you have more questions.
Have a nice day.
Best regards,
IsmaelHi,
Great to hear that the issue has been resolved! Please feel free to start a new thread if you have any further questions or need assistance with the theme.
Have a nice day.
Best regards,
Ismael -
AuthorPosts
