Forum Replies Created
-
AuthorPosts
-
Hey Kat Allardyce,
Thank you for the inquiry.
You can use the Portfolio Grid or the Masonry element to display items from certain categories. These elements have a sorting option by default where users can filter items based on the categories.
You can see a demo of the portfolio grid here.
// https://kriesi.at/themes/enfold-2017/elements/portfolio-grid/
And for more info, please check this documentation.
// https://kriesi.at/documentation/enfold/portfolio-grid/
Best regards,
IsmaelHi,
Thank you for the inquiry.
The contact form is probably using the default contact form styles in the theme. Would you mind providing a link to the actual form demo so that we can compare the styles?
The default forms styles are located in the theme enfold/css/base.css file starting around line 201.
Best regards,
IsmaelFebruary 21, 2022 at 8:22 am in reply to: How to change the footer-color of only specific pages #1341584Hey Jak73,
Thank you for the inquiry.
The body element contains a class name that is unique for each page. You can use that to adjust the style of the elements on a specific page.
Example:
.page-id-416 .socket_color { background: #ea3696; }
This should adjust the color of socket in the page that you provided above because it has the ID 416.
Best regards,
IsmaelFebruary 21, 2022 at 8:17 am in reply to: FIXED: Masonry gallery no longer allows us to re-order photos #1341583Hi,
Glad to know that the code is working. Yes, you can remove the code once the latest WordPress version is available. You may need toggle the Enfold > Performance > File Compression settings to reload the scripts.
Best regards,
IsmaelHey Jak73,
Thank you for the inquiry.
You can use a popup builder plugin to create custom lead generators, banners, slide-ins and popups. Please check the following links.
// https://wordpress.org/plugins/popup-maker/
// https://wordpress.org/plugins/popup-builder/Best regards,
IsmaelHi,
Thank you for the screenshot.
You can use this css code to remove the default padding of the cells on mobile view.
@media only screen and (max-width: 767px) { .responsive #top #wrap_all .av-flex-cells .no_margin { padding-left: 0; padding-right: 0; } }
We provided a screenshot of the result in the private field.
Best regards,
IsmaelHey Jorge,
Thank you for the inquiry.
You may need to save the entries or options in the database or dynamically create an external file that will override the default styling. Unfortunately, this will require modifications that are beyond the scope of support. You may need to hire a freelance developer or contact our partner (Codeable) for further modifications.
// https://kriesi.at/contact/customization
Best regards,
IsmaelHey Edgar!
We replied in the following thread. https://kriesi.at/support/topic/searchbar/
Regards,
IsmaelHey Edgar,
Thank you for the inquiry.
The search results can be limited to products only but the layout that you are after will require modifications that are beyond the scope of support. You may need to hire a freelance developer to help you with the modification.
To limit the search results to products, just add this code in the functions.php file.
// show products in the search results function avf_search_filter_pages($query) { if ($query->is_search) { $query->set('post_type', 'product'); $query->set( 'wc_query', 'product_query' ); } return $query; } add_filter('pre_get_posts','avf_search_filter_pages');
Please register an account to the forum using your purchase code.
// https://kriesi.at/support/register/
Best regards,
IsmaelHey envis,
Thank you for the inquiry.
Have you tried removing or editing the widget in the Appearance > Widgets panel? If you need the widget to still display on the default shop page, try to use a plugin to control its visibility.
// https://wordpress.org/plugins/widget-options/
// https://wordpress.org/plugins/conditional-widgets/Best regards,
IsmaelHi,
There are an unclosed html tag in the Special Heading elements. We have found two invalid tags and fixed those but the whole content still disappears after updating the page. You may need to remove all elements with custom html tags and add them again.
This is an example of the invalid html tags.
< strong >Aperativ
Best regards,
IsmaelFebruary 21, 2022 at 5:24 am in reply to: Avia Layout builder – post title is displayed above the gallery images #1341575Hi,
@kreativeseite: We updated the gallery.php file. Please make sure to purge the cache before testing the page.Best regards,
IsmaelHi,
Glad to know that you have found a solution for this problem. Please feel free to open another thread if you want to share the solution with the users or if you have more questions related to the theme.
Have a nice day.
Best regards,
IsmaelHi,
Can I somehow exclude the complete Custom Post Type
You can unset the custom post type in the query. By default, all post types are included in the query and we use the tax_query to control which posts to actually retrieve.
Example:
function avia_masonry_custom_tax_query($query) { // this unsets the post type with the slug "name_of_post_type" unset($query["post_type"]["name_of_post_type"]); $query['tax_query'][] = array( 'taxonomy' => 'kanal_zuordnung', 'field' => 'id', 'terms' => array('30', '31'), 'operator' => 'NOT IN', ); return $query; } add_filter('avia_masonry_entries_query', 'avia_masonry_custom_tax_query');
Make sure to adjust the post type name in the filter.
Best regards,
IsmaelHi,
Thank you for the info.
The “kotikirkko” site is not loading properly on our end. Is it down? The issue seems to be resolved on the other site as shown in the screenshot below. (see private field)
Best regards,
IsmaelFebruary 21, 2022 at 5:00 am in reply to: Attempting to Update Enfold to Version 4.8.9.1 – WooCommerce Error #1341570Hi,
Sorry for the delay. We cannot access the server via SFTP. Please check the login account and make sure that all connection from any countries are allowed. You should also update the theme to the latest version in the staging site.
Best regards,
IsmaelFebruary 21, 2022 at 4:44 am in reply to: The Original Calendar Pro – Css Override for View? #1341569Hey nox309,
Thank you for the inquiry.
You can use this code in the functions.php file to remove the theme’s css and template modifications for the events plugin.
function avia_events_register_assets() { return false; } function avia_events_template_paths() { return false; }
Best regards,
IsmaelHi,
We tried to adjust the value of the quantity field using the buttons and the field seems to be reflecting the correct value when we checked it on the browser console. Please check the screenshot in the private field. Unfortunately, we are not sure how the shop table retrieves the items in the table. Please keep in touch with the plugin developers for additional help and feel free to open another thread if you have more questions about the theme.
Best regards,
IsmaelHi,
Alright. Thank you for the info. Please let us know if the issue occurs again on a different page.
Best regards,
IsmaelHi,
Thank you for the update.
We updated the filter in the functions.php file a bit. Please use this code to add the index,follow robots meta tag to the rest of the pages.
add_action( 'wp_head', function() { global $post; if ( in_array($post->ID, array(1, 2, 3) ) || is_search() || is_paged() ) { echo '<meta name="robots" content="noindex, nofollow">'; } else { echo '<meta name="robots" content="index, follow">'; } }, 10 );
Best regards,
IsmaelHi,
There is a copy of the class-avia-masonry.php file config-templatebuilder/avia-shortcode-helpers/ folder. Please remove the duplicate file, then add the modifications again in the original file.
Best regards,
IsmaelHi,
We selected the first option (No scaling) in the Styling > Gallery Settings > Image Size settings, then added this css code to display the actual height of the gallery images on mobile view.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .responsive .av-horizontal-gallery-img { height: 100%; width: 100%; } }
Best regards,
IsmaelHey smarta-brett,
Thank you for the inquiry.
The height of the slider container is a bit taller than it is supposed to be. Unfortunately, we are not yet sure why this is happening. Did you install an image compression or a lazy loading plugin?
Best regards,
IsmaelHi,
We had to edit the functions.php file and redefine the avia_apply_quant_btn function in the script above. The quantity buttons are now displaying in the shop table. Please make sure to purge the cache on your end.
Best regards,
IsmaelHi,
You can use a plugin like Post Types Order to manually sort the order of the posts but this plugin causes some issues with the theme such as the post navigation, so we do not usually recommend it. Please check the link below.
// https://wordpress.org/plugins/post-types-order/
Best regards,
IsmaelHi,
Yes, opening a thread on a general WordPress forum or directly forwarding this thread to the developers should help. Please note that web tools such as Lighthouse are not perfect so from time to time, results could contain false positives or they could point out errors that are not actually there. If you want to report this specific problem to the developers, please open an issue in this link.
// https://github.com/google/WebFundamentals/issues
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the info.
The filter is already gone from the functions.php file, which is good. Did you check if the modification still exists in the config-templatebuilder/avia-shortcode-helpers/class-avia-masonry.php? This is the previous modification that we suggested.
// https://kriesi.at/support/topic/masonry-blog-meta-elements/#post-1338815
After doing the modification, make sure to add this css.
.av-masonry-outerimage-container ul { position: absolute; z-index: 999; color: white; }
Best regards,
IsmaelHi,
Did you receive my login details and hosting login? Are you able to check?
We didn’t receive any login or hosting details, so we are not able to check. Please post the login details in the private field so that we can inspect the issue further.
Did you check the content of the _aviaLayoutBuilderCleanData? Please post the content of the entry using pastebin or provide a screenshot using imgur or dropbox.
Best regards,
IsmaelFebruary 18, 2022 at 6:05 am in reply to: Spinning wheel not showing on loading video in lightbox #1341280Hi,
Thank you for the update.
Did you toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css? The css modification that we recommended above should take priority because we defined the !important rule or property in the css rule. It should override the default background of the .mfp-iframe-scaler iframe element.
Best regards,
Ismael -
AuthorPosts