Forum Replies Created
-
AuthorPosts
-
Hey whdsolutions,
Thank you for using Enfold.
You can add another menu item and set it as the child or second level of the mega menu. It’s going to be automatically converted to a column.
Best regards,
IsmaelHi,
You should configure the Screen Options of the separator/whitespace element inside the third 1/3 column so that it’s only visible on desktop or tablet view or both. Set it so it’s hidden on mobile view.
Best regards,
IsmaelHi,
You can add the “avf_modify_thumb_size” filter in the child theme’s functions.php file to adjust the size of the existing thumbnails.
Example:
add_filter( 'avf_modify_thumb_size', 'avf_modify_thumb_size_mod', 10, 1 ); function avf_modify_thumb_size_mod( $size ) { $size['entry_with_sidebar'] = array('width'=>845, 'height'=>475); return $size; }
Best regards,
IsmaelHi,
Thanks for the update.
That function should allow bots as long as the following conditions are met: it is a post, a page, the home page or is not on a paginated page. That is the existing logic in the function.
if ((is_single() || is_page() || is_home() ) && ( !is_paged() )) { $meta = '<meta name="robots" content="index, follow" />' . "\n"; }
Please enable the function back and try to deactivate the plugins temporarily.
Best regards,
IsmaelHi,
Thanks for the update.
You can use this css code to remove the posts date from the news widgets.
#top .news-time { display: none; }
Best regards,
Ismael0Hi,
Did you enable the top header? If so, try to replace the “ava_after_main_menu” hook with “avia_meta_header” so that it renders the banner above the main header container.
add_action( 'avia_meta_header', 'enfold_customization_header_widget_area' ); function enfold_customization_header_widget_area() { dynamic_sidebar( 'header' ); }
Best regards,
IsmaelHi,
You can download the files manually from your Themeforest account and upload it via FTP to your server.
// https://kriesi.at/documentation/enfold/install-enfold-theme/#reinstall-or-update-using-ftp
// https://kriesi.at/archives/the-complete-guide-to-updating-enfoldBest regards,
IsmaelHi,
Their font ‘titillium web’ is locally installed on my server (imported via Enfold Child Font Manager’s Import feature).
Is the site hosted on a shared server? Slow server response time could cause this issue because it’s not able to load the font files immediately. Optimizing the site speed should decrease the delay. The following articles should help.
// https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
// https://kriesi.at/archives/4-key-wordpress-image-optimization-tipsBest regards,
IsmaelHi,
Great! Glad it helped.
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
Try to remove the second social_bookmarks container and move the instagram li or icon inside the first one. That should cause the icons to realign themselves.
Best regards,
IsmaelHi,
Awesome! Glad it’s working now. Please don’t hesitate to open a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelMarch 29, 2019 at 1:04 am in reply to: Customizing Woocommerce single product product template? #1084351Hi,
Thanks for the update.
You should probably include this in the init hook that you’ve just created.
add_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_add_to_cart', 11 );
We set the priority from 30 to 11, so the add to cart renders right after the product title.
Best regards,
IsmaelHi,
Yes, you should add it in the functions.php file. Does the comment form display properly when you switch to the default editor?
Best regards,
IsmaelHi,
Thanks for the reply. You can send the invite to the email address in the private field.
Best regards,
IsmaelHi,
Thanks for the update.
We are able to reproduce the issue. The admin-ajax.php file is not loading properly — causing an internal server error. Please ask your hosting provider if the said file is being blocked or blacklisted by the mod_sec/mod_security rule. Have you tried deactivating the plugins?
Best regards,
IsmaelHi,
Yes, that’s what I meant. More info about that can be found in the following documentation.
// https://www.w3schools.com/css/css_rwd_mediaqueries.asp
Best regards,
IsmaelHi,
Glad it worked. For the second column, edit the first column in the row and make sure that the “Equal Height Columns” and the “Vertical Alignment” settings are the same for every portfolio items.
Best regards,
IsmaelHi,
No, you don’t have to modify it because it is set as the blog page unless the Blog Layout > Blog Layout settings is set to the last option. This option allows you to add custom content or modify the blog page using the advance layout builder.
Best regards,
IsmaelHi,
It seems to be adjusting properly when we change this code.
.responsive #top .av-masonry-entry.post { margin-bottom: 60px; }
Remove the .post selector or replace it with following.
.responsive #top .av-masonry-entry { margin-bottom: 60px; }
Screenshot: https://imgur.com/a/dCD2Zxn
Best regards,
IsmaelHi,
It is working properly on our end. Please remove the browser cache prior to checking the page.
Screenshot: https://imgur.com/a/9OI1992
Try to adjust the width and left margin values if you want to move the footer columns further to the right.
Best regards,
IsmaelHi,
Did you add a custom css class attribute to the element? What is it? If you haven’t already, try adding “el-no-padding” to the field and then use it as a selector in the Quick CSS field or the child theme’s style.css. Example:
@media only screen and (max-width: 767px) { .el-no-padding { padding: 0 !important; } }
Best regards,
IsmaelMarch 29, 2019 at 12:19 am in reply to: Create Attribute Filters on Pages using the Enfold Product Grid #1084338Hi,
You can use hooks to insert additional content at the top or bottom the category pages. Or you can override the default product templates.
Hooks:
// http://hookr.io/actions/woocommerce_before_main_content/
// http://hookr.io/actions/woocommerce_after_main_content/Templates:
// https://docs.woocommerce.com/document/template-structure/Best regards,
IsmaelHi,
Odd. The pages in the print preview are displaying properly on our end. Is it displaying properly when the print media query is not in used?
Best regards,
IsmaelHi,
You can change that but you have to modify the includes > helper-social-media.php file directly. Look for this code around line 221.
$this->html .= "<h5 class='av-share-link-description av-no-toc'>"; $this->html .= apply_filters('avia_social_share_title', $this->title , $this->args); $this->html .= "</h5>";
Best regards,
IsmaelHi,
Sorry for the delay. This css code should center align the image and increase its width.
@media only screen and (max-width: 767px) { body .alignleft, .entry-content-wrapper a:hover .alignleft, body .alignright, .entry-content-wrapper a:hover .alignright { float: none; margin: 7px 0px 13px 0; display: block; position: relative; width: 100%; } }
Best regards,
IsmaelHi,
The stylesheets are currently compressed, which is why the css codes are not recognized when you move the css code in the child theme. You have to toggle the file compression settings in Enfold > Performance panel after activating the child theme. You can also move the css code in the Enfold > General Styling > Quick CSS field.
Best regards,
IsmaelMarch 28, 2019 at 11:39 pm in reply to: I updated enfold now I'm getting an error with child theme #1084323Hi,
The slider works when the plugins are deactivated. We reactivated the plugins again. In order to find the culprit, please deactivate the plugins again and activate them one at a time, refreshing the page every deactivation until the conflict is found.
Best regards,
IsmaelHi,
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
Best regards,
IsmaelHi,
Are you referring to the mobile menu? Unfortunately, we can’t change the default behavior. You can either set the sub menu to be always visible or clone the parent menu item. Those options are available in the Enfold > Main Menu panel. Please open a new ticket.
Best regards,
Ismael -
AuthorPosts