Forum Replies Created
-
AuthorPosts
-
Hi,
Would you please tell me what types of server environments can cause problems with active compression ?
Server configurations can vary significantly between different environments, so we can’t really give you any information about this. And unfortunately, we won’t be able to help you further if we cannot access the site. If you can provide us with the WP and FTP login details, we’ll try to check the issue further.
Best regards,
IsmaelNovember 7, 2023 at 6:56 am in reply to: How to make blocks to full width of the screen in WooCommerce in the Enfold #1424869Hi,
Glad to know that this has been resolved! Let us know if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey jnightingale,
Thank you for the inquiry.
Did you install a maintenance mode plugin? If you’re using the default maintenance mode option from the theme, please make sure that the selected page is published and publicly visible. Let us know how it goes.
Best regards,
IsmaelHey nadiart,
Thank you for the inquiry.
We’ve sent a password reset link to the email address attached to the account. Please confirm if you received this email.
Best regards,
IsmaelNovember 7, 2023 at 5:16 am in reply to: PHP Warning: Undefined array key “HTTP_ACCEPT_LANGUAGE” #1424864Hey Gregory,
Thank you for the inquiry.
Have you tried checking the functions.php file? Please look for any reference of the HTTP_ACCEPT_LANGUAGE array key and remove it, or disable the function that contains it. You could also edit the function and make sure that the variable or key exist before proceeding.
// https://www.php.net/manual/en/function.isset.php
// https://www.w3schools.com/php/func_array_key_exists.aspBest regards,
IsmaelNovember 7, 2023 at 5:00 am in reply to: [Enfold 5.6.8] Block Editor: Cannot open Sidebar / Settings with Avia active #1424863Hi,
Thank you for the update.
The sidebar panel is actually disabled when ALB is active and while Fullscreen Mode is enabled. If you want to enable the sidebar panel back even when Fullscreen Mode is enabled, please add this code in the functions.php file.
add_action('admin_head', 'ava_admin_head_mod'); function ava_admin_head_mod() { echo '<style> body.block-editor-page.avia-advanced-editor-enabled.avia-block-editor-expand.is-fullscreen-mode .interface-interface-skeleton__sidebar { display: block !important; z-index: 99999 !important; } </style>'; }Best regards,
IsmaelNovember 7, 2023 at 4:43 am in reply to: Formatting & CSS in Child Theme Not Recognized After Update to Enfold 5.6.8 #1424862Hi,
Thank you for the update.
We can’t access the staging site because the password is incorrect. Have you tried disabling the Enfold > Performance > File Compression settings after updating the theme? You may need to purge the cache as well and do a hard refresh just to make sure that the updated resources are loaded.
Best regards,
IsmaelNovember 7, 2023 at 4:40 am in reply to: how to use the imported fonts of the theme in the layer slider? #1424861Hi,
Thank you for the inquiry.
there applies the font style BUT it results in referencing the font on the Google server instead of using the already uploaded, local, and otherwise working Roboto font.
What do you mean? When you uploaded the Roboto font, did you make sure to select it as both the heading and body font? It’s possible that the default Roboto font is still selected, or there might be an element in the Enfold > Advanced Styling panel that is still using the default font. Please note that the uploaded font will not override the default font and the entry appears at the very bottom of the dropdown, so it is quite easy to miss.
Best regards,
IsmaelHey Highlander-2013,
Thank you for the inquiry.
The other h1 element might be coming from the default title and breadcrumb container, which can be toggled in the Enfold > Header Layout > Header Title and Breadcrumbs settings. Please provide a link to the page containing the shortcode so that we can check it properly.
Best regards,
IsmaelHey finchkelsey,
Thank you for the update.
We will include a fix in the next patch. For the meantime, please add this code in the Quick CSS field.
.avia-image-container.av-hover-grow.av-hide-overflow .avia-image-container-inner { overflow: hidden; }Best regards,
IsmaelHey Volgspot,
Thank you for the inquiry.
The filter still works correctly on our end. Please edit the Masonry element and make sure that the Content > Captions > Element Title and Excerpt settings is set to the very first option (Display title and excerpt).
add_filter( 'avf_masonry_loop_prepare', 'avf_masonry_loop_prepare_mod', 10, 2 ); function avf_masonry_loop_prepare_mod( $key, $entries ) { $class = preg_grep('/category/', $key['class']); $getstr = str_replace('category-', '', implode(',', $class)); $categories = explode(',', $getstr); $cat = implode(',', array_map('ucfirst', $categories)); foreach ( $key as $post => $value ) { if ( $post == 'content' ) { $value .= "<div class='av-masonry-categories'>".$cat."</div>"; } $key[$post] = $value; } return $key; }Best regards,
IsmaelHey jb84,
Thank you for the inquiry.
You can adjust the column animations in the Advanced > Animations > Column Animation settings, but the available options are limited to fade, rotate, flip and slide animations. If you require a more complex animation effect, you might want to consider using the Layer Slider element
Best regards,
IsmaelNovember 7, 2023 at 3:48 am in reply to: Error when displaying Enfold visual configuration items #1424854Hi,
Thank you for the info.
It might be an issue caused by one of the plugins or a corrupted theme file. Can we temporarily deactivate the plugins? In the meantime, please download a fresh copy of the theme and replace the current one.
Best regards,
IsmaelHey ramonolivencia,
Thank you for the inquiry.
1.) In the past, you could toggle the scrollbar with css, but browsers have since changed the behavior of scrollbar overlays, so it seems to be impossible now. However, you can try this css code and see if it still works with your browser and OS.
html.responsive, .responsive body { overflow: scroll; }2.) Would you mind providing a screenshot of the issue, or provide a link where we can see these text?
Best regards,
IsmaelHi,
For example, the child theme didn’t have an “includes” folder, so I created it.
Yes, that is the correct way to override a template file. The folder structure should be the same as the parent theme.
However, the header for this is “Share this entry“. I’d like to change this to “Share this article“.
To adjust the title of the sharing section, add this filter in the functions.php file.
add_filter('avia_social_share_title','avia_social_share_title_mod'); function avia_social_share_title_mod() { $output = 'Share this article:'; return $output; }Is there a simple way (in the browser Inspect function) to figure out which file the code comes from, to set this text?
If you’re not familiar with the code base, one way to proceed is by performing a “search all” for a specific string or class name throughout the entire directory. This will provide you with a list of files in which the specific string or element is rendered. If you’re using an IDE such as VS Code, you can do the following steps.
// https://code.visualstudio.com/docs/editor/codebasics#_search-across-files
Other ways are to use the get_included_files function or use PHP debugging tools such as Xdebug.
// https://www.php.net/manual/en/function.get-included-files.php
// https://marketplace.visualstudio.com/items?itemName=xdebug.php-debugBest regards,
IsmaelHi,
Glad to know that this is now working correctly. Updating the Product lookup tables may have helped in this case. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey adapt,
Thank you for the inquiry.
You can remove the post-meta-infos container from the enfold/includes/loop-index.php file starting from line 419 to 552.
line 421:
if( $blog_style !== 'bloglist-compact' )line 552:
} // display meta-infos on all layouts except bloglist-compactTo override the original template file, you can create a copy of it in your child theme directory before doing the modification.
Best regards,
IsmaelHey Mihou,
Thank you for the inquiry.
Please be aware that the theme’s actual zip file is located within the Themeforest package. You need to extract the Enfold or theme zip file from the package you downloaded from Themeforest, before uploading it to your WordPress installation.
Best regards,
IsmaelHi!
Thank you for the update.
We recommend forwarding the receipt to Themeforest for confirmation of your renewal. You can still post inquiries in the forum while waiting for their response.
Best regards,
IsmaelHey studiovene,
Thank you for the inquiry.
We may need to access the site in order to properly check the issue with the layout builder. Please provide the site URL in the private field. In the meantime, try to temporarily toggle or temporarily disable the Enfold > Performance > File Compression settings to regenerate the scripts and stylesheets.
Best regards,
IsmaelNovember 6, 2023 at 12:41 am in reply to: Image getting overlaid with color on transparent part #1424741Hi,
Great! Glad to know that @mike was able to be of help. Please feel free to open another thread if you have more questions about the theme.
Have a nice day.
Best regards,
IsmaelHey Gregory Beylerian,
Thank you for the inquiry.
We’ve reviewed your account, and it indicates that your support license expired on 2023-11-03 at 22:36:59+11:00. Are you sure that you used the same email address or account for the support license purchase? We suggest contacting Themeforest regarding the renewal so they can review your account and manually correct it if necessary. We have temporarily activated your account so you can submit inquiries to the forum.
Best regards,
IsmaelHey Chittra,
Thank you for the inquiry.
Do you still have the purchase code for the theme? You may need to contact Themeforest about your account and confirm if its actually the account used to purchase the theme. Unfortunately, we will not be able to obtain such information for you in this forum.
Best regards,
IsmaelNovember 3, 2023 at 10:58 am in reply to: Gallery issue with “open the images in a new browser/window tab” #1424537Hi,
Thank you for the update.
After resizing the thumbnail size, you have to upload the images again or use a plugin to regenerate the thumbnails. The existing thumbnails will not automatically inherit the updated size configuration.
// https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelNovember 3, 2023 at 10:57 am in reply to: Gallery issue with “open the images in a new browser/window tab” #1424536Hi,
Thank you for the update.
After resizing the thumbnail size, you have to upload the images again or use a plugin to regenerate the thumbnails. The existing thumbnails will not automatically inherit the updated size configuration.
// https://wordpress.org/plugins/regenerate-thumbnails/
Best regards,
IsmaelNovember 3, 2023 at 10:45 am in reply to: Icon Next to Burger / All previous topics won’t work #1424520Hey ti2media,
Thank you for the inquiry.
Please add this css code to adjust the size of the icon and move it beside the burger menu.
#top .av-custom-menu-button .av_font_icon { font-size: 30px; color: red; } #top .av-custom-menu-button { position: absolute; right: 100px; top: 14px; z-index: 100; height: 62px; width: 50px; border-right: 2px solid; line-height: 62px; }After that, you have to remove this css code to get rid of the box beside the cart icon.
.av-custom-menu-button a { padding: 10px 10px; background: red; position: relative !important; left: 0 !important; }Best regards,
IsmaelHi,
Great! Glad to know that the solution is working. Please let us know if you have more questions.
Have a nice day.
Best regards,
IsmaelHey kaneljeff,
Thank you for the inquiry.
There is no option for this by default but you can manually insert items from custom post types in the Appearance > Menus panel. If you can’t find the portfolio items in the selection, look for the Screen Options at the very top, and make sure that the Portfolio Items are checked.
Best regards,
IsmaelHey sharolyn,
Thank you for the inquiry.
If the automatic demo import continues to fail, you might want to consider installing the demo manually using the XML files. Please check the documentation below for more info.
// https://kriesi.at/documentation/enfold/import-demos/#how-to-manually-import-a-theme-demo
Best regards,
IsmaelHey kaneljeff,
Thank you for the inquiry.
The portfolio items doesn’t support the page attributes or page order field by default but it can be enabled with a filter. Please add this code in the functions.php file.
/* 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');Best regards,
Ismael -
AuthorPosts
