Forum Replies Created
-
AuthorPosts
-
Hey webguy007,
Thank you for using Enfold.
Did you add the following css code?
.responsive #top #header #header_main .inner-container .main_menu { order: 3; flex-basis: auto; align-items: center; align-self: center; height: inherit !important; }That code alters the default position of the mobile menu and social icons. If you want to keep that code, try to add the following.
@media only screen and (max-width: 767px) { .responsive #top #header #header_main .inner-container .main_menu { position: absolute; top: 45px; } .responsive #top #header #header_main .inner-container .logo img, .responsive #top #header #header_main .inner-container .logo, .responsive #top #header #header_main .inner-container .logo a { min-width: 0 !important; height: 60px !important; } .responsive #top #header #header_main .inner-container .logo { top: 15px; } }It should look like this afterwards.
Screenshot: https://imgur.com/a/dExGfbR
Best regards,
IsmaelHey webguy007,
Thanks for the update.
Make sure that the text clear both sides or prevent other elements from floating beside it. Something like this should work.
p.nofloat { clear: both; }You have to insert that inside a css media query.
Best regards,
IsmaelHey webguy007,
Thank you for using Enfold.
Use this css code to adjust the color of the submenu indicator and increase its size.
#top #wrap_all #av-burger-menu-ul li a .av-submenu-indicator { color: #000000; font-size: 20px; }And add this one to change the symbol.
.html_av-submenu-hidden .av-submenu-indicator:before { content: "\E816"; font-family: 'entypo-fontello'; }Best regards,
IsmaelHey alex2545,
Thank you for using Enfold.
The Layout box is available in the page editor when we checked. Make sure that the metabox is enabled in the Screen Options.
Best regards,
IsmaelHi,
Thank you for using Enfold.
As @michaelH suggested, it’s possible to toggle the elements’ device visibility using the their Screen Options. This feature is available in the later versions of the theme, so you have to do the upgrade. The idea is to insert another element of the same type in addition to the existing one, toggle its Screen Options so it only displays on the specified devices and upload an image that is actually intended for mobile view.
@michaelH: Thanks for helping!
Best regards,
IsmaelHey Qeibu,
Thanks for the update.
We are not that familiar with the plugin, so additional help from the plugin authors will help. Do you see any errors in the backend when the plugin is activated? Please post the login details in the private field so that we can inspect the dashboard.
Best regards,
IsmaelHi,
Thanks for the update.
Are you referring to the grid row cells? Please edit the element, set the “Mobile Behaviour” to the first option and then go to the Screen Options. In that panel, set the “Fullwidth Break Point” to the second option (On tablets (at a screen width of 989px or lower), so the cells become full width on tablet view.
Best regards,
IsmaelHi,
Thanks for the update.
You can actually download the svg or eps format of the vero logo from this page.
// https://www.vero.co/press-kit
You can then convert it to an icon font using the fontello.com’s svg to icon generator.
// https://kriesi.at/documentation/enfold/icon/#adding-your-own-fontello-or-flaticon-icons-
And then use this filter to change the default font icon used by the existing social icons in the theme.
// https://kriesi.at/documentation/enfold/icon/#change-icon-used-for-standard-theme-elements-
Best regards,
IsmaelHey MedienhausKnoerzer,
Thanks for the update.
The product pages display properly when we check. Is this fixed? The version prior to the update is bit old, so you have to configure some of the options again, specially the Performance > File Compression settings. Please update the theme regularly in order to prevent this issue from happening again.
Best regards,
IsmaelApril 30, 2019 at 12:41 am in reply to: Receiving the following error when attempting to apply recaptcha #1095528Hey!
Thanks for the update.
Is this the same issue as posted in the following thread?
// https://kriesi.at/support/topic/receiving-the-following-error-when-attempting-to-apply-recaptcha/
Please refrain from creating duplicate threads as much as possible. Thank you.
Best regards,
IsmaelHi,
Thanks for the update.
This css code should pull the “rolling pin” image upwards.
.avia-image-container.av-styling-.avia-builder-el-9.avia-builder-el-no-sibling.avia-align-center { margin-top: -150px; }That css code contains a generic selector in it. You have to turn on the custom css class field so that you can apply a more specific class attribute or selector.
Best regards,
IsmaelHi,
Thanks for the update.
The character code of the clock icon is “ue666” and it belongs to a set called “fontello”. We edited the shortcode based on that.
[av_font_icon icon='ue666' font='fontello' style='' caption='' link='' linktarget='' size='17px' position='left' animation='deactivated' color='' av_uid='' admin_preview_bg=''][/av_font_icon] Mon - Thu: 10am-7pm[av_font_icon icon='ue666' font='fontello' style='' caption='' link='' linktarget='' size='17px' position='left' animation='deactivated' color='' av_uid='' admin_preview_bg=''][/av_font_icon] Fri: 10am-5pm[av_font_icon icon='ue666' font='fontello' style='' caption='' link='' linktarget='' size='17px' position='left' animation='deactivated' color='' av_uid='' admin_preview_bg=''][/av_font_icon] Sat: 11am-3pm[av_font_icon icon='ue666' font='fontello' style='' caption='' link='' linktarget='' size='17px' position='left' animation='deactivated' color='' av_uid='' admin_preview_bg=''][/av_font_icon] Sun: ClosedBest regards,
IsmaelHi,
Thank you for using Enfold.
You should be able to change the default editor in the Enfold > Theme Options, but it doesn’t work in your installation. Did you toggle that option before? It’s currently set to the classic editor. For some reason, we can’t change it back to the block editor.
Best regards,
IsmaelApril 30, 2019 at 12:18 am in reply to: How to add a custom field to a portfolio with ACF? " #1095522Hi,
Thanks for the update.
We can’t check the site directly due to personal reasons but we’ll try to help as much as we can.Are you using the blog grid element? If so, please try to edit the config-templatebuilder > aviashortcodes > postslider > postslider.php file. Look for the html function and the post loop around line 484. Inside that loop, you should be able to add the ACF fields. If you want to add it before the read more link for example, edit line 511:
$permalink = ' <div class="read-more-link"><a href="'.get_permalink($the_id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"></span></a></div> ';The code might look something like this:
$acf_field = get_field('field_name'); $permalink = $acf_field . ' <div class="read-more-link"><a href="'.get_permalink($the_id).'" class="more-link">'.__('Read more','avia_framework').'<span class="more-link-arrow"></span></a></div> ';Best regards,
IsmaelHi,
Thanks for the update. We’ll close this thread now.
Have a nice day.
Best regards,
IsmaelHi,
Thanks for the update.
It’s a floating or clearfix issue. Add this code in the Quick CSS field.
.avia-section .template-page .portfolio-preview-content .entry-content-wrapper * { float: none; }That should remove the default “float” property of the toggle container. You can also add a clearfix to the parent container if you’re planning to add columned elements.
// https://css-tricks.com/snippets/css/clear-fix/
Best regards,
IsmaelHi,
Thanks for the update.
That is possible. Try this script in the functions.php file.
dd_action('wp_footer', 'ava_custom_add_subtotal_text'); function ava_custom_add_subtotal_text(){ ?> <script type="text/javascript"> (function($) { $('<span class="label">Subtotal</span>').prependTo('.product-subtotal'); })(jQuery); </script> <?php }The code above is going to add a “Subtotal” text right before the subtotal value.
Best regards,
IsmaelHey aribann,
Thanks for the update.
We checked one of your post and found out that it was created using the Advance Layout Builder (ALB). All default elements of the post such as the featured image, author, social share etc will not display automatically when ALB is active. You have to add them manually using the available elements in the builder. Now, we’re not entirely sure what you meant by “sidebar elements”. Did you select a different sidebar or widget area?
Best regards,
IsmaelHi,
Thanks for the update.
This css code should help.
#header .widget { top: -50px; }Just add it in the child theme’s style.css file or the Quick CSS field.
Best regards,
IsmaelApril 29, 2019 at 1:11 pm in reply to: Warning: file_get_contents / on line 328 / ReCaptcha #1095255Hi,
Thanks for the update.
We can’t find the error though. Please provide the actual url of the page where we can see the issue.
Best regards,
IsmaelHi,
Thanks for the update.
You should replace the previous css modification with the following code.
.av-masonry-entry.post { width: 33.3%; height: 400px; }Best regards,
IsmaelHi,
Thanks for the update.
You should leave the cache and compression plugin disabled until you’re actually done with the site. We haven’t really tested the “fast velocity minify” plugin, but most minification plugins offer the same functionality, so they should work fine. Only way to know for sure is to test it.
Best regards,
IsmaelHi,
Thanks for the update.
It still looks broken. Please post the login details in the private field so that we can check the markup closely.
Best regards,
IsmaelHi,
Thanks for the update.
That modification should not have affected the sidebar. Could you post the actual code on pastebin.com? Or generate a new login token so that we can test it.
Best regards,
IsmaelHi,
I’m not sure what’s odd about that. We just told you that the excerpt or the full content will display automatically when ALB is disabled. It doesn’t matter if it’s the block or the classic one. And please note that the elements in the builder are actually shortcodes, so they will still display when you switch to a default editor.
Best regards,
IsmaelHi,
Thanks for the update.
We’re trying to edit the slider, but the changes aren’t taking effect. Is there a server cache? We actually removed the layer slider in the “test” page, but it’s still displaying in the frontend.
The current slider layout is not that complex, so you’re probably better off using the Full Screen Slider instead of the Layer Slider. That slider will automatically inherit the size of the browser window.
Best regards,
IsmaelHi,
@garyvot: We will need both so that we can access the dashboard, toggle the settings and edit the files when necessary. Please add it in the private field.
@technetkenya: Please create a new thread or ticket. Put the site url and the login credentials in the private field.Best regards,
IsmaelHi,
Thanks for the update.
This shortcode issue is already fixed on version 4.5.6. Please upgrade the theme to that version.
Best regards,
IsmaelHi,
Thanks for the update.
We just noticed that the site is using an older version of the theme, 4.5.3. Please upgrade to version 4.5.6, then update the asset-manager.php file as suggested on the previous thread.
// https://kriesi.at/support/topic/again-one-problem-with-merged-css/#post-1082689
Unfortunately, that patch was not merged on the latest version of the theme.
Best regards,
Ismael -
AuthorPosts
