Forum Replies Created
-
AuthorPosts
-
March 26, 2019 at 8:17 am in reply to: Home page contents disappear when updating/publishing. #1082990
Hi,
Thanks for the update.
1.) Make sure that there are no unclosed html tags in the page. These tags if left unclosed can cause the builder to erase the subsequent content.
2.) Set the Enfold > Theme Options > Select Your Editor to “Classic Editor” instead of the new block editor. And disable the plugins temporarily.
Best regards,
IsmaelHi,
Thanks for the update.
You can use this filter in the functions.php file to adjust the markup of the title.
remove_filter( 'post-format-standard', 'avia_default_title_filter', 10, 1 ); add_filter( 'post-format-standard', 'avia_default_title_filter_mod', 10, 1 ); function avia_default_title_filter_mod($current_post) { if(!empty($current_post['title'])) { $heading = is_singular() ? "h1" : "h2"; $output = ""; //$output .= "<{$heading} class='post-title entry-title ". avia_offset_class('meta', false). "'>"; $output .= "<{$heading} class='post-title entry-title' ".avia_markup_helper(array('context' => 'entry_title','echo'=>false)).">"; $output .= " <a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$current_post['title']; $output .= " <span class='post-format-icon minor-meta'></span>"; $output .= " </a>"; $output .= "</{$heading}>"; $current_post['title'] = $output; } return $current_post; }Adjust this line:
$heading = is_singular() ? "h1" : "h2";Best regards,
IsmaelMarch 26, 2019 at 8:02 am in reply to: making changes on pages, shows in preview but does not update to web #1082987Hi,
Thank you for the update.
Are you adding any html code in that page? Make sure that you’re closing the html tags properly because unclosed tags could break the layout of the page. Please check the login credentials above because they seem to be invalid.
Best regards,
IsmaelHi,
The videos should work fine even without the “https” or “http” at the start of the url. It is going to be automatically prepended based on the protocol the site is loaded, so if the site loads over “https”, those youtube videos will load over the same protocol.
Best regards,
IsmaelHi,
Thanks for the update.
We don’t see any issues with the test page. The tab section title and content are both visible. Is this fixed?
Best regards,
IsmaelHey webguy007,
Thank you for using Enfold.
Are you using the grid row element before? We don’t see the described issue on the Services page. Did you find a workaround?
Best regards,
IsmaelHi,
Thank you for using Enfold.
That is possible, but you have to modify the config-templatebuilder > aviashortcodes > slideshow > slideshow.php file. Look for this code around line 227:
"name" => __("Apply a link to the slide?", 'avia_framework' ),Below that line, look for this code:
"std" => "",Set the “std” value to “image”.
"std" => "image",The “Image Link?” std can then be set to “lightbox”. You can find that code around line 251:
"std" => ""),Replace it with:
"std" => "lightbox"),Best regards,
IsmaelMarch 26, 2019 at 4:42 am in reply to: I updated enfold now I'm getting an error with child theme #1082962Hi,
We would like to apologize for the late response.
It seems to be an error with the greensock animation scripts that are included in the layer slider. Would you mind if we deactivate the plugins temporarily while debugging the issue?
greensock.js?ver=1.19.0:18 Uncaught TypeError: i is not a function
greensock.js?ver=1.19.0:18 Uncaught TypeError: Cannot read property ‘length’ of undefinedBest regards,
IsmaelHey sberendss,
Thank you for using Enfold.
You can use action hooks to insert additional content above the shop overview page. An example of that hook can be found in this article.
// https://wpsites.net/web-design/2-ways-to-add-a-widget-before-woo-commerce-product-pages/
Best regards,
IsmaelHey Maarten,
Thank you for using Enfold.
Do you have a test page where we can see the issue? What is the css modification that you have used to fix the issue? Please provide the info in the private field.
Best regards,
IsmaelHi,
Those scripts are for the advance layout builder and should not affect your the site speed. The avia_modal.js file, which is one of their dependencies is not loaded anywhere else except when the ALB is active or currently in used, so the warning occurs.
Best regards,
IsmaelHi,
Thanks for the update.
You can add this hook in the functions.php file to render the language switcher inside the header container. You can then add css codes to adjust the switcher’s position.
add_action( 'ava_main_header', 'ava_wpml_switch_to_header' ); function ava_wpml_switch_to_header() { echo do_action('wpml_add_language_selector'); }Best regards,
IsmaelHi,
Thank you for using Enfold.
1.) This css code should highlight the current menu item.
.main_color .av-subnav-menu > .current-menu-item > a { color: blue; }Unfortunately, you can’t make the parent menu items clickable when the sub menu items are not visible on initial load or the “Hide Mobile Menu Submenu Items” is enabled.
2.) Use this one to adjust the line height of the socket menu items.
#socket .sub_menu_socket li { line-height: 23px; }Best regards,
IsmaelHey aderal2016,
Thank you for using Enfold.
Have you tried using the Widget Logic plugin to control the visibility of the widgets? You can also use the WPML Widget plugin.
Best regards,
IsmaelHi,
Thanks for the update.
The latest error on that log is not critical or fatal and not likely to cause an internal server error. It is also dated March 9, 2019 and completely not related to the theme.
PHP Warning: Invalid argument supplied for foreach() in /home1/ashforth/public_html/wp-content/mu-plugins/wpengine-common/plugin.php on line 1078
Do you have a staging site where we can replicate the issue? We don’t see any fatal errors on that log.
Best regards,
IsmaelHey Pixel_Production,
Thank you for using Enfold.
How do you check the TLS-handshakes? The initial load time of the site on our end, without cache, is less than 10 seconds and less than 2 seconds on succeeding loads. That is not slow considering that the home page itself is more than 3MB. Have you done any optimization to the site? These 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-tipsYou can start with the image compression.
Best regards,
IsmaelHi,
We would like to apologize for not replying immediately.
A fix has been included in the latest version of the theme, 4.5.5. Is the site running on that version? How did you fix it?
Best regards,
IsmaelHi!
Are there any spam protection plugins like Akismet installed in the site? These plugins should filter out spams, delete existing ones or block them completely. A good list of plugins can be found in the following article.
// https://www.wpexplorer.com/antispam-plugins-wordpress/
Regards,
IsmaelHi,
Alright. We’ll close the thread now. Please don’t hesitate to open a new one if you encounter any issues after the update.
Have a nice day.
Best regards,
IsmaelHi,
The images are not displaying when the Section ID is filled because of this css code.
#so-123 img { opacity: 0!important; }Looks like you’re using the generic (.avia-builder-el-11, .avia-builder-el-6 etc) class attributes as selectors for the elements. Those class attributes are temporary and can change based on the number of elements in the page and their order in the builder. Turn on the custom css class field in order to apply a permanent css class attribute to the elements, which can then be used to change their style.
Best regards,
IsmaelHi,
Thanks for the update.
The endpoint works properly on our installation. Could you provide a user account that we could use? Make sure that at least one order has been processed under the account.
Best regards,
IsmaelHi,
Thanks for the update.
Replace the previous modification with the following css code.
.av-masonry-entry.post { box-shadow:0px 0px 0px 5px rgba(255,255,255,1); }That should exclude the items from the masonry gallery.
Best regards,
IsmaelHey ihtezaz,
Thank you for using Enfold.
The template looks correct. Could you give us a link to the a page where this template is activated?
Best regards,
IsmaelHi,
We can no longer see the issue on the page. Is it fixed?
// http://keremshalom.org/wp-content/uploads/2019/03/KS-homepage-preview.png
Best regards,
IsmaelHi,
That is not possible out of the box. You have to specify the tags for each item manually. Please open a new thread for new inquiries.
Best regards,
IsmaelHi,
Thanks for the update.
This should remove the yellow paypal button in the cart page.
.woocommerce-cart .wcppec-checkout-buttons.woo_pp_cart_buttons_div { display: none !important; }Don’t forget to disable or toggle the Enfold > Performance > File Compression settings after adding that code.
Best regards,
IsmaelMarch 25, 2019 at 5:39 am in reply to: Problem with Enfold Image Sizes and Woocommerce Widgets and Thumbs #1082524Hi,
We would like to apologize for the late response.
The product thumbnails in the footer widgets are 100x100px in size. All of them. Is this fixed? The product widget in the sidebar is no longer there, so we were not able to check it.
Best regards,
IsmaelHi,
Great! Thanks for the reviews. We’ll close the thread now.
Have a nice day.
Best regards,
IsmaelHi,
Alright. Let us know in a new thread if you need anything else.
Have a nice day.
Best regards,
IsmaelMarch 25, 2019 at 5:20 am in reply to: Mail chimp widget not show up in Footer on single blog post #1082519Hi,
Awesome! Glad that it’s fixed.
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,
Ismael -
AuthorPosts
