Forum Replies Created
-
AuthorPosts
-
Hi,
No problem! Glad we could be of help. Please let us know if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHi,
Thank you for the update.
I can’t seem to change them without also changing every other icon on the page!
You may have to apply a custom css class name or ID to the icon box element. Please edit the icon box, go to the Advanced > Developer Settings panel, look for the Custom CSS Class field and input the name “av-pencil-iconbox”, without the quotation marks. You can then use this class name to target that specific iconbox element and adjust its style.
#top .av-pencil-iconbox .iconbox_icon { float: none; position: absolute; left: 50%; top: -46px; margin: 0 0 0 -46px; padding: 30px; font-size: 50px; line-height: 50px; } #top .av-pencil-iconbox .iconbox_icon:before { position: absolute; left: 50%; top: 50%; right: auto; transform: translate(-50%, -40%); }Adjust the values of the css properties as you wish.
Best regards,
IsmaelHey Antonio,
Thank you for the inquiry.
You can apply the background to a Color Section element and set its minimum height to 100%, or use a Fullscreen Slider. The elements are available in the Advance Layout Builder (ALB).
Best regards,
IsmaelHey I-Visio,
Thank you for the inquiry.
This is not yet available in the theme but you can include a toggle in privacy modal popup or in the site’s privacy page to enable or disable the Google Analytics script. This is the toggle shortcode.
Best regards,
IsmaelMay 19, 2022 at 12:51 pm in reply to: Product filter disappear in sidebar after update on 4.9.2.1 #1352303Hey!
Sorry for the delay. We have checked the dev site but unfortunately, we are not yet sure why the product widgets are not rendering properly in the sidebar. Did you install a new plugin or add custom scripts after updating the theme?
We may have to access the live site in order to compare it with the latest version, and see if we can find anything different. Please post the htaccess and WordPress login details of the live site in the private field. Additional info from the plugin authors will help a lot.
Regards,
IsmaelHi,
Glad to know that this modification is working. We will close this thread for now Please feel free to open another if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey profumopuntoit,
Thank you for the inquiry.
The following css code should adjust the position of the sale price and place it beside the original price.
ul.product_list_widget li del, ul.product_list_widget li ins { display: inline !important; clear: none; width: auto; float: left; margin-right: 15px; }Best regards,
IsmaelHi,
Thank you for the update.
You can place the code in the Enfold > General Styling > Quick CSS field or in the style.css file within the child theme directory. Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings and don’t forget to purge the cache after adding the css modification.
Best regards,
IsmaelHey pelgrimrat,
Thank you for the inquiry.
You should be able to use the following css code to adjust the style of the iconbox icons.
#top .iconbox_top .iconbox_icon { float: none; position: absolute; left: 50%; top: -46px; margin: 0 0 0 -46px; padding: 30px; font-size: 50px; line-height: 50px; } #top .iconbox_top .iconbox_icon:before { position: absolute; left: 50%; top: 50%; right: auto; transform: translate(-50%, -40%); }Please make sure toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
Best regards,
IsmaelHi,
Thank you for the update.
Did you switch the from the classic or block editor to the Advance Layout Builder (ALB)? Looks like the page or product was first built using the classic or block editor, then later switched to use the ALB, which is why the actual shortcodes are displayed instead of the builder elements. You may need to recreate the page using the ALB.
Best regards,
IsmaelHi,
For out of stock products, you may need to adjust the Out of stock visibility option and tick the Hide out of stock items from the catalog checkbox in the Woocommerce > Settings > Products > Inventory panel.
// https://rudrastyh.com/woocommerce/hide-out-of-stock-products.html
Best regards,
IsmaelHi,
Yes, it should be doable but it will require modifications that are beyond the scope of support. You may need to hire a freelancer developer or contact our partner Codeable using the form in the page below.
// https://kriesi.at/contact/customization
Best regards,
IsmaelMay 19, 2022 at 8:29 am in reply to: flex masonry gallery with landscape image over two columns #1352247Hi,
I have a widget installed that applies categories to media elements.
How do you apply the categories (landscape, portrait) to the images or media files? Are you using a plugin? Please ask the plugin author how can we retrieve the image categories so that we can create a condition or logic out of them.
In the enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-masonry.php, you will find a function called ratio_check_by_tag which as the name suggests, checks for the posts tag and returns the appropriate orientation. We might be able to do the same thing with the image categories once we know how to retrieve them.
Best regards,
IsmaelHey Christian,
Thank you for the inquiry.
Yes, that should be possible. Just enter the email addresses (separated by commas) in the contact form’s Content > Backend > Your email address field.
Best regards,
IsmaelHi,
Where can we check the page? Please create a new thread and provide the site details in the private field. We will close this one for now.
Best regards,
IsmaelMay 19, 2022 at 7:58 am in reply to: Invert posts order in Blog Post block (form oldest to newest) #1352240Hey Nicola,
Thank you for the inquiry.
Try to replace the filter with the following code.
add_filter('avia_post_slide_query', 'avf_post_slide_query_mod'); function avf_post_slide_query_mod( $query ) { $query['order'] = 'ASC'; return $query; }The orderby parameter is already set to “date” by default, so we don’t have to specify it.
Best regards,
IsmaelHey Christian,
Thank you for the inquiry.
You may need to modify the enfold/framework/php/widgets/widget-classes/class-avia-combo.php file directly and adjust the widget tab title in this code around line 47.
$this->form_tabs = array( 0 => __( 'No content', 'avia_framework' ), 'popular' => __( 'Popular posts', 'avia_framework' ), 'recent' => __( 'Recent posts', 'avia_framework' ), 'comments' => __( 'Newest comments', 'avia_framework' ), 'tagcloud' => __( 'Tag cloud', 'avia_framework' ) );You can also use this plugin if editing a file is not an option.
// https://wordpress.org/plugins/say-what/
Best regards,
IsmaelHey Caleb,
Thank you for the inquiry.
The maximum size of the featured image used in the single event pages is set to 1360x321px by default, but we can adjust it by using this filter in the functions.php file.
// adjust the size of the single events featured image add_filter('post_thumbnail_size', 'avf_single_event_post_thumbnail_size'); function avf_single_event_post_thumbnail_size($size) { if ( is_singular('tribe_events') ) { $size = 'full'; // Change to your desired image size. } return $size; }This should display the original version of the featured image.
Best regards,
IsmaelHi,
Did you enable the masonry excerpt? The filter above will only work when excerpt is enabled.
If you need the read more text inside the masonry image, try to edit the enfold/config-templatebuilder/avia-shortcode-helpers/class-avia-masonry.php file and look for this code around line 650.
$bg = '<div class="av-masonry-outerimage-container">'; $bg .= $img_before; $bg .= "<div class='av-masonry-image-container' {$img_style} {$outer_title} {$outer_alt}>"; $bg .= $img_html; $bg .= '</div>'; $bg .= '</div>';You can place the read more text after this line.
$bg .= $img_html;Best regards,
IsmaelMay 19, 2022 at 7:19 am in reply to: Locking the layour Editor but still allowing editors to load in a template. #1352236Hi,
Thank you for the update.
Once the ALB is locked, user who is not an admin will not be able to use the templates option, but we can modify the enfold/config-templatebuilder/avia-template-builder/php/class-save-buildertemplate.php file to enable it back. You have to remove the following code around line 29 inside the __construct function.
if( ! isset( $_REQUEST['avia_export'] ) ) { if( $this->builder->disable_drag_drop == true ) { return; } }Best regards,
IsmaelHey steel-blue,
Thank you for the inquiry.
You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings. And please make sure to purge the cache after disabling the compression.
Best regards,
IsmaelHi,
Did you set the stock or product inventory status as category? The post navigation will not filter posts based on its inventory. Please provide a link to a product or category page.
Best regards,
IsmaelHey ftt123,
Thank you for the inquiry.
You can use this css code to display all masonry items at once on page load.
.av-masonry-entry { opacity: 1; visibility: visible; }Regarding the category filter, please note that the masonry element can only filter items that are already visible in the page. If pagination is enabled, filtered items will not display if they are located on a different page. User will have to go to that page and click the category filter again.
Best regards,
IsmaelHey KvarngardenMedia,
Thank you for the inquiry.
Try to add this script in the functions.php file to initially hide some of the categories and create a toggle button.
function ava_add_custom_script(){ ?> <script> (function($) { $(".product_meta").prepend("<a class='prod_category_toggle cat_hidden' href='#'>toggle</a>"); $(".prod_category_toggle").on("click", function() { var toggle = $(this); if( toggle.is(".cat_hidden") ) { show_categories(); } else { hide_categories(); } toggle.toggleClass("cat_hidden"); }); function hide_categories() { var posted_in = $(".product_meta .posted_in").html(); var posted_in_replaced = posted_in.replaceAll(", ", "<span class='sep'>, </span>"); $(".product_meta .posted_in").html(posted_in_replaced); $(".product_meta .posted_in a").each(function(i) { if (i > 10) { $(this).css("display", "none"); $(this).next(".sep").css("display", "none"); } }); } function show_categories() { $(".product_meta .posted_in a").each(function(i) { $(this).css("display", "inline"); $(this).next(".sep").css("display", "inline"); }); } hide_categories(); })(jQuery); </script> <?php } add_action('wp_footer', 'ava_add_custom_script');You can adjust the style of the toggle button with this css code.
.prod_category_toggle { position: absolute; background: #555555; padding: 10px 15px; font-size: 15px; border-radius: 2px; color: #ffffff; }Best regards,
IsmaelHey LentzOtto,
Thank you for the inquiry.
We were not able to check the site because it is still on maintenance mode and the login info above seems to be invalid. Please check the info carefully or provide another login account.
Best regards,
IsmaelHey Melanie,
Thank you for the inquiry.
Please check the filter that @Mike provided in the following thread.
// https://kriesi.at/support/topic/add-button-to-the-masonry-post/#post-1311784
The filter should append a read more text to the masonry content.
Best regards,
IsmaelMay 18, 2022 at 7:39 am in reply to: Locking the layour Editor but still allowing editors to load in a template. #1352146Hey kops,
Thank you for the inquiry.
In the Enfold > Layout Builder panel, there is the Lock advanced layout builder option, which prevents anyone who is not an administrator to adjust the layout of an existing page, but everyone who can edit that entry will still be able to edit the content of the existing elements. You nay need to use a third party membership plugin if you need to specify more rules and restrictions.
Best regards,
IsmaelHi,
Try to adjust the css code a bit and specify the top position. Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding the css.
.av-magazine-entry:before { float: left; display: inline-block; content: ''; -webkit-border-radius: 0.375rem; border-radius: 0.375rem; height: 0.75rem; width: 0.75rem; margin-right: 0.5rem; background-color: #bdbdbd; top: 5px; position: relative; }Best regards,
Ismael -
AuthorPosts
