Forum Replies Created
-
AuthorPosts
-
Hey evas49,
Thank you for the inquiry.
Which css file are you editing? We may need to see a screenshot or get access to the dashboard. Please provide the login details in the private field.
Best regards,
IsmaelHey fredirain,
Thank you for the inquiry.
You can try this filter in the functions.php file.
/** * @snippet Sort Products By Stock Status - WooCommerce Shop * @how-to Get CustomizeWoo.com FREE * @author Rodolfo Melogli * @compatible WooCommerce 3.9 * @donate $9 https://businessbloomer.com/bloomer-armada/ */ add_filter( 'woocommerce_get_catalog_ordering_args', 'bbloomer_first_sort_by_stock_amount', 9999 ); function bbloomer_first_sort_by_stock_amount( $args ) { $args['orderby'] = 'meta_value'; $args['order'] = 'ASC'; $args['meta_key'] = '_stock_status'; return $args; }This will display out of stock items at the end of the grid.
Based on: https://stackoverflow.com/questions/25113581/show-out-of-stock-products-at-the-end-in-woocommerce
Best regards,
IsmaelHi,
Thank you for the inquiry.
As @Guenni007 mentioned above, you have to make sure that the appropriate post_type is added in the supported list. Please provide the login details in the private field if you require more assistance.
Best regards,
IsmaelHey evas49,
Thank you for the inquiry.
You may need to manually do a database search for these classes in the wp_posts > post_content.
// https://codex.wordpress.org/Database_Description#Table:_wp_posts
Best regards,
IsmaelHey evas49,
Thank you for the inquiry.
We are not able to reproduce the same issue on our end. Removing the date using the same css code above works fine.
Would you mind providing a a link to the site or a screenshot of the issue? You can use imgur, savvyify or dropbox for the screenshot. Thanks.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Try to use this filter in the functions.php file to append a custom trail to the breadcrumb.
function avia_adjust_breadcrumb($trail) { if( is_singular( 'post_type' ) ) { $trail[1] = '<a href="https://site.com/pagewithmasonry" title="Page with Masonry" rel="pagewithmasonry"> PagewiththeMasonry </a>'; } return $trail; } add_filter('avia_breadcrumbs_trail', 'avia_adjust_breadcrumb', 50, 1);Best regards,
IsmaelHi,
Thank you for the inquiry.
The screenshot above is not available. Please try to use imgur, savvyify or dropbox instead. How did you add Blog Posts element in the widget?
Best regards,
IsmaelSeptember 23, 2022 at 11:40 am in reply to: PHP Fatal error: Allowed memory size dynamic-css.php on line 226 #1366093Hey dk_highbridge,
Thank you for the inquiry.
Looks like the error happens when the theme tries to generate the dynamic css file, which only happens when something changes in the theme options. Have you tried adjusting the WP_MEMORY_LIMIT to at least 256 MB?
// https://www.wpbeginner.com/wp-tutorials/fix-wordpress-memory-exhausted-error-increase-php-memory/
Best regards,
IsmaelHey dr_dominik,
Thank you for the inquiry.
You accidentally placed the filter inside a condition just after the return statement. We just moved the filter one line downward. You can now select the Discord social icon in the Enfold > Social Profiles.
Best regards,
IsmaelHi,
Thank you for the update.
The theme is not adding this attribute or schema by default. The only vocabulary schema that is generated by the theme is for the breadcrumb but this has been removed since version 4.7.2.1. You can find it in the enfold/framework/php/class-breadcrumb-trail.php file around line 445.
//google rich snippets if( $richsnippet === true ) { // removed 4.7.2.1 as google will deprecate data-vocabulary // https://meetanshi.com/blog/fix-data-vocabulary-org-schema-deprecated-error/ // https://github.com/KriesiMedia/wp-themes/issues/2650 // // if( is_ssl() ) // { // $vocabulary = 'xmlns:v="https://rdf.data-vocabulary.org/#"'; // } // else // { // $vocabulary = 'xmlns:v="http://rdf.data-vocabulary.org/#"'; // } }It is possible that the schema is being generated by a third party plugin. Did you activate a new plugin just recently?
Best regards,
IsmaelSeptember 23, 2022 at 11:01 am in reply to: Intermittent 404 errors with Enfold and The Events Calendar #1366086Hey 1lizcollins,
Thank you for the inquiry.
The event pages load properly when we checked them. The only error that we noticed is from a plugin called the-events-calendar-filterbar. This is the error in the console.
filter-scripts.min.js?ver=5.4.0:1 Uncaught ReferenceError: tribe_ev is not defined at filter-scripts.min.js?ver=5.4.0:1:11213You may need to ask your hosting provider to set the site to debug mode and enable the error logs so that we can get more hints about the issue.
Best regards,
IsmaelHi,
Thank you for the update.
The css looks correct. Can we access the dashboard? Please provide the login details in the private field.
Best regards,
IsmaelSeptember 23, 2022 at 10:38 am in reply to: On mobile device with Qwant, my website don't show all the items #1366078Hi Anne,
Thank you for the update.
Have you tried asking help from the Quant team? They might know what to check and how to check them. Unfortunately, we do not have access to the application and it is not included in the list of compatible browsers.
// https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990 > see Compatible Browsers
Best regards,
IsmaelSeptember 23, 2022 at 10:35 am in reply to: on second page of search results page some articles are not inside content #1366077Hi Guenni,
Thank you for the update.
Good to know that the suggestion helped. What are the contents of the code block?
Best regards,
IsmaelHi,
Thank you for the info.
We edited the testimonials page and set the Image element’s Styling > Size > Image Size to No Scaling. Please make sure to purge the cache before checking the page.
Best regards,
IsmaelHi,
Thank you for the update.
Are you trying to create a link or button that automatically opens the tab? The following URL seems to be working properly. (see private field)
Best regards,
IsmaelHi,
Thank you for the update.
1.) The example in the article adjusts the style of the iframe element itself but not the elements inside the iframe > document, which are not accessible by default because of certain browser policies.
2.) Try to edit the element containing the video, apply a unique ID or Custom CSS Class name to it, then use the following css code. You can find the id and custom css field in the Advanced > Developer Settings panel.
#unique_id_of_element { z-index: 3 !important; }Temporarily, you can use this css code.
#top .av-l5k0g8uv-e23fd77e6785d6233f2aef6cc166ba21 + #after_submenu_1 { z-index: 3 !important; }Best regards,
IsmaelSeptember 23, 2022 at 10:04 am in reply to: WooCommerce product img cropped on default shop page, after Enfold Update #1366073Hi,
Thank you for the update.
Did you use the filter? The filter can be added in the child theme’s functions.php file. You don’t have to redo it again on every update. It will override the default thumbnail shop_catalog and replace it woocommerce_thumbnail.
Best regards,
IsmaelSeptember 23, 2022 at 9:51 am in reply to: Stopping the animation of the headline rotator after the first pass #1366069Hi,
Sorry for the late response. Where can we check the issue? Please provide the site URL and the login details in the private field for FTP and WordPress. We will check the modification once the credentials are available.
Best regards,
IsmaelSeptember 23, 2022 at 9:47 am in reply to: Enfold Child Theme: Correct place for custom CSS #1366067Hi,
Thank you for the update.
The child theme’s style.css file is actually loaded after the custom.css file right before the post-css, so the rules in the file should override the previous styles unless the specificity of the selectors in your custom css rules are not enough. Which specific elements are you trying to adjust in the style.css file?
Best regards,
IsmaelHi,
Thank you for the update.
We adjusted the css code a bit.
#top #header .avia_mega_div > .sub-menu > li > ul li.current-menu-item, #top #header .avia_mega_div > .sub-menu > li > ul li.current-menu-item a { background: #ebebeb; color: #ffffff; }Let us know if this one works.
Best regards,
IsmaelHi,
Thank you for the screenshot.
Do you want to change the background of the active L2 item? This css should help.
#top #header .avia_mega_div > .sub-menu > li > ul li.current-menu-item { background: gray; }Best regards,
IsmaelHi,
Thank you for the update.
There is no existing templates for the blog entries on a blank Enfold installation. You may need to import one of the demo first or follow the instructions that we mentioned above. Please check the following documentation to help you get started with the theme.
// https://kriesi.at/documentation/enfold/
Best regards,
IsmaelHi,
Thank you for the inquiry.
1.) The sort option can only filter items that are already loaded in the page. Unfortunately, it cannot fetch entries in the next or previous pages. You may need to use a grid plugin with an advanced sorting option if you want to dynamically retrieve items from different pages.
2.) The lightbox can only group images that are already loaded in the page. Images of entries in the next and previous pages do not exist in the current page, so lightbox will not be able to include them in the group.
The only solution for both issue is to display all items in the same page. You can also contact our partner Codeable. They should be able to help you extend the existing functionalities.
// https://kriesi.at/contact/customization
Best regards,
IsmaelHi,
Glad to know that you have figured out the issue. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelSeptember 22, 2022 at 10:00 am in reply to: On mobile device with Qwant, my website don't show all the items #1365949Hey annesite,
Thank you for the inquiry.
We are not familiar with the Quant application but the theme or the site should display properly on major browsers. The application might be blocking certain resources from loading preventing the theme from fully displaying.
Best regards,
IsmaelHey Tilman,
Thank you for the inquiry.
The main menu seems to be displaying fine on our end. Would you mind providing a screenshot of the issue? You can use imgur, savvyify or dropbox for the screenshot. Thanks.
Best regards,
IsmaelHi,
Alright. Let us know if we can help you with anything else. We will close this thread for now.
Have a nice day.
Best regards,
IsmaelHi,
Glad to know that the issue has been sorted out. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey Ramiro,
Thank you for the inquiry.
Try to set the Menu And Logo Position to Logo right menu left, then add this css code to align the logo to the center.
.html_header_top #top .av_logo_right .logo { left: auto; right: 50%; transform: translateX(-50%); }You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings after adding this css code.
Best regards,
Ismael -
AuthorPosts
