Forum Replies Created
-
AuthorPosts
-
Hey MPPcreative,
Thank you for the inquiry.
1.) It might be that the font that you’re using doesn’t support Hebrew characters. You may need to switch to another font and make sure that it supports the required characters.
2.) You can add this filter in the functions.php file to change the default link of the button.
/** * Changes the redirect URL for the Return To Shop button in the cart. * * @return string */ function wc_empty_cart_redirect_url() { return 'http://mywebsite.com/sample-page/'; } add_filter( 'woocommerce_return_to_shop_redirect', 'wc_empty_cart_redirect_url' );Best regards,
IsmaelHi,
The date is not showing because the date and time format fields in the Settings > General panel are blank. (see private field)
Best regards,
IsmaelAugust 27, 2020 at 8:35 am in reply to: Woocommerce checkout form not responsive on mobile and alignment issues #1241120Hey Morticka,
Sorry for the delay. You should wrap the code inside a css media query so that it will only affect the desktop view and keep the default style or layout on mobile view.
@media only screen and (min-width: 768px) { /* Add your Desktop Styles here */ }Place the previous code inside the css media query above.
Best regards,
IsmaelAugust 26, 2020 at 3:47 pm in reply to: "Large Header Size" and "Shrinking Header" for homepage only #1240948Hi,
According to the documentation is_home depends on the site’s “Front page displays” Reading Settings ‘show_on_front’ and ‘page_for_posts’.
// https://developer.wordpress.org/reference/functions/is_home/
Did you set the front or home page in the Settings > Reading panel?
Best regards,
IsmaelHi,
Sorry for the delay. According to the page speed insight tool the page is too big or has an excessive DOM size which might also cause the layout shifts or affect the CLS score. Is there any possibility to decrease the content in the page?
A large DOM will increase memory usage, cause longer style calculations, and produce costly layout reflows. Learn more.
The page contains 1,656 elements in total, which is quite huge.
And according to the reports, the pseudo element before contributes most to the CLS of the page. We are not really sure from which element that is, but it is probably referring to the font icons which is added using the pseudo element.
CLS Contribution
::before
<::before>Best regards,
IsmaelAugust 26, 2020 at 3:21 pm in reply to: Enfold Theme Conflict – Woocommerce Product Bundles + Min/Max #1240941Hi,
Yes, it’s quite odd. Please try this code in the Quick CSS field.
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button { -webkit-appearance: inner-spin-button !important; }Best regards,
IsmaelAugust 26, 2020 at 2:53 pm in reply to: Media error: Format(s) not supported or source(s) not found. #1240932Hi,
Thank you for the update.
We don’t see the error in the SERPS anymore. Did you remove the layer slider in the home page?
Screenshot: https://imgur.com/yybYtSs
Best regards,
IsmaelHi,
Sorry for the delay. You should be able to use this css code to adjust the default width of the “Features” mega menu.
#header .three.units { width: 400px !important; } #header .six.units { width: 800px !important; }Please don’t forget to toggle the Performance > File Compressions settings and remove the cache after adding the code.
Best regards,
IsmaelAugust 26, 2020 at 2:33 pm in reply to: Feature Request: Add heart (like) button to social links at the bottom of posts #1240923Hey kgalatz,
Thank you for the inquiry.
Which plugins have you tried? Most of the plugins offer shortcodes or function that can be added directly in the template and allow users to manually control the position of the button or adjust its markup and style. The following plugin for example has a Code Snippet field containing the function which can be added anywhere in the templates.
// https://wordpress.org/plugins/wp-like-button/
Best regards,
IsmaelHi,
Thank you for the update.
You can use this css code to apply a shadow to the icons on hover.
.av_font_icon:hover .av-icon-char::before { text-shadow: 3px 3px 3px #eee; }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,
IsmaelHey John,
Thank you for the inquiry.
Did you add the css code that we provided from the documentation? You can place it in the Enfold > General Styling > Quick CSS field to the child theme’s style.css file.
// https://kriesi.at/documentation/enfold/example-of-logo-left-widget-center-menu-right/#toggle-id-2
Please sure that the Enfold > Header > Header Layout > Menu and Logo Position is set to Logo left, Menu right. And toggle the Performance > File Compressions setting after adding the css code.
Best regards,
IsmaelHi,
Thank you for the update.
1.) Where can we see the issue? The home pare redirects to the maintenance mode page even when we’re logged in.
2.) This is unfortunately out of the scope of support, but we can definitely help with any issues or minor alterations related to the theme.
3.) To center align the copyright text, we can use this css code.
#socket .copyright { float: none; text-align: center; width: 100%; display: block; }If you have any additional questions at this time we kindly ask that you open them up in a separate thread because 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,
Sorry for the delay. Changing the image size to No Scaling works as expected in the home page. The slider becomes a bit bigger though because it’s using the original version of the images. Please don’t forget to purge the cache before checking the page. (see private field)
Best regards,
IsmaelHi,
The plugin offers a shortcode that we can maybe use in the template to render the reading time
[rt_reading_time label=”Reading Time:” postfix=”minutes”]If you’re using the Grid Layout, you have to modify the enfold\config-templatebuilder\avia-shortcodes\postslider\postslider.php and add the shortcode around line 733 or near this code which renders the post categories.
if( ! empty( $cats ) ) { $meta_out .= '<span class="blog-categories minor-meta">'; $meta_out .= $cats; $meta_out .= '</span>'; }Best regards,
IsmaelHi,
The checkbox or privacy option is not supported by the element yet — only text and dropdowns. You should see this note in the Mainchimp Signup element editor.
Please note: This element currently only supports basic list subscription with basic form fields (text and dropdowns). Please let us know if you would like to see more advanced features.
Best regards,
IsmaelHi,
Thank you for the inquiry.
The 5th parameter of the get_$adjacent_post_link() is the $taxonomy which is set to “category” by default. You have to replace it with “portfolio_entries” if you want the links to work on portfolio items.
// https://developer.wordpress.org/reference/functions/get_previous_post_link/
Best regards,
IsmaelAugust 26, 2020 at 12:40 pm in reply to: Display of all posts by author not working when Search & Filter Pro is active #1240901Hey pepin,
Thank you for the inquiry.
What happens when you hard-code the ID of a specific author instead of using the get_queried_object_id?
'author' => get_queried_object_id(),We are not familiar with the plugin’s code, so you may need to contact the plugin developers for additional help.
Best regards,
IsmaelAugust 25, 2020 at 5:18 pm in reply to: How to correctly implement RankMath breadcrumbs in Enfold? #1240714Hi,
It’s possible that the rankmath breacrumb doesn’t have the schema markup by default. You might have to ask the plugin authors for additional info.
Best regards,
IsmaelHi
Here you can see it is starting to work, BUT the “gallery” needs to be the same styling as the masonary
Unfortunately, this will require major modifications in the theme which is beyond the scope of support. Please hire a freelance developer or contact our partner Codeable for additional assistance.
Thank you for understanding.
Best regards,
IsmaelAugust 25, 2020 at 5:13 pm in reply to: Icon List Items: Header Tags not rendered in output and TOC #1240711Hi,
Another solution is to use the Special Heading element. As we mentioned previously, the iconbox title is not a heading or is not wrapped in any of the heading tags by default.
Best regards,
IsmaelAugust 25, 2020 at 5:04 pm in reply to: Icons in tab section do not fully display or load on mobile #1240706Hi,
Thank you for the update.
We can’t reproduce the issue in the site anymore. Looks like disabling the animation did work in this case. If the issue still occurs randomly, please try to add this css code.
.av-tab-section-image { display: block; filter: grayscale(0); opacity: 1; }Best regards,
IsmaelAugust 25, 2020 at 4:41 pm in reply to: enfold child theme layout broken on woocommerce customization #1240699Hi,
Sorry for the delay. You might have to create a temporary page, switch to the layout builder, include the builder elements that you need to add in the product page, check the page, then extract the rendered html directly in the browser inspector.
A color section with a single text block and its default content for example will look something like this.
// https://pastebin.com/i9UAvrqm
Unfortunately, this kind of modification is beyond the scope of support.
Best regards,
IsmaelHi,
You can move the cart icon further to the right with this css code.
.responsive #top .cart_dropdown { right: 240px; }Default right position is 20px. Please add the code inside the css media query above.
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,
IsmaelHey acscreativenew,
Thank you for the inquiry.
This is a limitation of the pagination option. The posts elements in the page depends on the same page query or parameter, so the pagination of both elements affect each other, which is why it’s not recommended to add multiple elements with pagination in the same page. You can still work around this limitation by replacing the other posts element with an element using AJAX pagination such as the Masonry element.
Best regards,
IsmaelHey anristudio!
Thank you for the inquiry.
Looks like the resource files including the fonts are served via CDN (secureservercdn). You may need to contact the host to configure the server properly and allow your domain to access the resources from the CDN server.
Regards,
IsmaelAugust 25, 2020 at 3:44 pm in reply to: Burger menu does not close the last selected menu item when clicking on new item #1240688Hey Jochen,
Thank you for the inquiry.
This is possible but it will require modifications that are beyond the scope of support, so I’m sad to say that we won’t be able to help you on this one. If you want to try it yourself, you have to modify the js > avia_hamburger_menu > toggle_submenu function.
Best regards,
IsmaelHey ChrisCoach,
Thank you for the inquiry.
Would you like to disable the link of the image in a masonry item? This is possible but we have to add an additional script. Please try this snippet in the functions.php file.
add_action('wp_footer', function() { ?> <script> (function($) { $('.av-masonry-entry').on('click', function(e) { if($(e.target).hasClass('av-masonry-image-container')) { e.preventDefault(); } }); })(jQuery) </script> <?php }, 999);Best regards,
IsmaelHi,
@black-shadow: Sorry for the delay. We didn’t see the cookie consent bar or container when we visited the site. Did you disable the plugin? Please post the login details in the private field so that we can check the site.
And yes, the way enfold tries to mask iframes without an option to simply disable it to get better page speed results
@Borlabs: Based on the screenshot from the previous thread, looks like you’ve set the Privacy Settings > Lazy Load videos settings for the Video element to the second option (Wait for user interaction). What happen when you set the video to always load by default?
Best regards,
IsmaelHey!
The mentioned lines aviaAsset are not in our wp_otpions table.
Did you disable the Performance > File Compression settings? The avia asset entries should be automatically added in the database when the option is enabled.
Best regards,
IsmaelAugust 25, 2020 at 2:39 pm in reply to: Cookie Consent Message Bar Does Not Process Consent or Reload Page Properly #1240669 -
AuthorPosts
