Forum Replies Created
-
AuthorPosts
-
Hey aruizhuidobro,
Thank you for the link to your site but it seems that your login page is different than the standard /wp-admin/ so I couldn’t login to review closer,
I believe you are trying for this layout:

in this case make G-TRAUMA-970×1410-1-1.jpg 705×1460
I linked to my test example below.Best regards,
MikeHey aruizhuidobro,
Thank you for the link to your site but it seems that your login page is different than the standard /wp-admin/ so I couldn’t login to review closer,
but you should be able to select 1/2 columns in the form element style option, like this:

and achieve two columns like this:

If you change the message field to “text input” instead of “text area”:

you will have this:

Please give this a try.Best regards,
MikeHi,
It looks like your site has changed since Oct 9, at that time your page had 40 requests fully loaded:

now it has 256 requests:

I see that you are not using the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression

If you use this option you will reduce your requests some, but this will only take effect after you clear your Cloudflare cache because right now Cloudflare is serving 256 files. I would also recommend disabling your Hummingbird plugin and then review again.
You should see results like this from the default Enfold 2017 demo:

with 59 requests fully loaded in 6.7 seconds.Best regards,
MikeHi,
Thank you for your vote, this has been summited, but we have no ETA, as you can imagine there are numerous things on the Dev Team’s to-do list but it will be noted in the change log when it is added.Best regards,
MikeHi,
Sorry this shortcode doesn’t have options it only calls the WordPress search function get_search_form as seen in the shortcode function:
add_shortcode('avia_search', 'get_search_form');
You can try the many different plugins available or you can review this tutorial to Create a Custom WordPress Search Results Page.
The only easy way I found to limit the search results to the first 8 is to use this function which only shows this first 8 and hides the search results title, pagination and heading.
Try adding this code to the end of your functions.php file in Appearance ▸ Editor:function limit_search_results() { ?> <script> (function($){ $('#top.search-results .template-search article').hide(); $('#top.search-results .title_container').hide(); $('#top.search-results .template-search .pagination').hide(); $('#top.search-results .template-search .extra-mini-title').hide(); $('#top.search-results .template-search article').slice(0, 8).show(); })(jQuery); </script> <?php } add_action('wp_footer', 'limit_search_results');Best regards,
MikeNovember 27, 2021 at 2:11 pm in reply to: Widget Enfold Facebook Likebox don't working in footer #1330671Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Sorry for the late reply, I see that your favicon is giving a 404 error, please download the favicon.ico linked below and upload to your root directory via FTP or your webhost file manager, your root directory should look like this:

Then clear your browser cache and any cache plugin, and check.Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey Medaliaprod,
Thanks for your question but this seems to be a duplicate question, I replied to your other thread here lets continue there, thank you.Best regards,
MikeHey Medaliaprod,
Thank you for your question and the link to your site, the error I see isjQuery is not definedtypically this occurs when the theme option at: Enfold Theme Options ▸ Performance ▸ Load jQuery in your footer is enabled, please disable and clear your browser cache and check again.
If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Thank you for the login, since you said your plan is to omit the overlay for smaller screens my test found that the layout you have begins to show well for 1024px so I used that as the breakpoint, so this script checks for a minimum width of 1023px and a scroll of 20px from the top on the home page only. The css below hides the element on smaller screens.
I added this code to the end of your functions.php file in Appearance ▸ Editor:function custom_home_overlay() { ?> <script> (function ($) { $(window).scroll(function() { var width = $(window).width(), height = $(window).height(); var scroll = $(window).scrollTop(); if (scroll > 20 && width >= 1023) { $('#top.home #overlay').css({ 'display': 'none'}); } if (scroll < 20 && width >= 1023) { $('#top.home #overlay').css({ 'display': 'block'}); } }); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_home_overlay');and this to your Quick CSS
@media only screen and (max-width: 1023px) { #top.home #overlay { display: none; } }please clear your browser cache and check.
@Guenni007 thank you for your idea, I didn’t try it because we were already down this path 🙂Best regards,
MikeHi,
Sorry I don’t know of any customization plugins like this, it sounds like css would solve these issues, I would recommend searching the forum for these solutions. If you don’t find a solution you can open a new thread and we would be glad to help you.Best regards,
MikeHi,
If you are going to add a line of text to the short description, that will give you the same result as the [Return] key, so this will be good either way.
For the “Further Information” tab, this is a default additional tab in woocommerce you can remove it with the following function in your functions.php:add_filter( 'woocommerce_product_tabs', 'my_remove_product_tabs', 98 ); function my_remove_product_tabs( $tabs ) { unset( $tabs['additional_information'] ); // To remove the additional information tab return $tabs; }You can read more about this solution here.
Best regards,
MikeHi,
Glad to hear we were able to help, but this was not my code, I believe the original thanks goes to Guenni007 in this thread or it was a collaboration with Ismael in a later post from the same thread 🙂
If you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Very good then, glad we were able to clarify this for you, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Ok, looking back at you product that we were working on that you were happy with: Testo 310 I see the short description div is present because a [Return] key entered two paragraph tags were added:

So I tried entering the [Return] key once on a product where the short description was not present and thus the buttons were not lined up: Testo 830 and this solved the issue:

So please check and try this on your other products.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Well I tested on my localhost and found that if you don’t add a short description then the div is not added, thus changing the layout. So you make all of your products have the same layout thus alining the buttons the same you would want to add a short description to all of your products, were you planning on doing this and just have not had time?Best regards,
MikeHey Brian,
Thank you for the link to your site, please try this code in the General Styling ▸ Quick CSS field or in the WordPress ▸ Customize ▸ Additional CSS field:@media only screen and (min-width: 1200px) and (max-width: 1800px) { #header_main_alternate .main_menu .menu li#menu-item-4460 ul ul { left: -207px!important; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Please try this css:#top #wrap_all h3.slide-entry-title.entry-title { font-size: 17px !important; font-weight: normal; }After applying the css, please clear your browser cache and check.
Please note that not all fonts have a 100 font-weight available, thus the use of “normal” but you can try 100 if you want.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Sorry I don’t have an iPhone or iPad so I’m testing based on screen widths, my info has the iPad pro at 1024px-1366px, regular iPad 768px-1024px, & iPhone 414px-736px
so iPad portrait should be between 768px – 1024px & iPhone landscape should be 736px
in my test the iPhone landscape shows the 3 boxed items as a single column, please see the screenshot in the Private Content area.
The iPad pro & regular iPad also looked fine with the css above applied, it doesn’t look like you are using it right now, but see my screenshots below.
Please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.
So perhaps this is why the css above looked like it didn’t work, please try again.
If you still have trouble please include screenshots so I can try to match.
As a side note please ensure you are not “zooming” the browser and you are using 100% scale, some users use the “zoom” on their browser but there is no css that can recognize “zoom” so there would be no solution for that.Best regards,
MikeHey ndszamoca,
Thanks for the link to your site, I was not how much space you wanted or how big the button should be so please try this css:.header-scrolled .donuni,.header-scrolled .donuni > a { margin: 10px 0; max-height: 60px; line-height: 40px!important; } .donuni { margin-top: 50px; max-height: 60px; line-height: 40px!important; } .donuni > a { line-height: 60px!important; }After applying the css, please clear your browser cache and check.
The expected results;

Best regards,
MikeHi,
Thank you, I see that you tried to add this css to hide the added menu items:.responsive #top #wrap_all #header #av-burger-menu-ul > li.menu-item-1134.av-active-burger-items { display: none; }and they are hidden after a second but on initial opening of the burger menu they are shown, this is because the burger flyout menu is created on click and is not present on page load so there is a lag between the menu creation and the browser applying the css.
So let’s scrap that idea and try this instead, remove those menu items, and add this code to the end of your functions.php file in Appearance ▸ Editor:function custom_menulink_script() { ?> <script> (function($) { var custommenulink = $('<a class="custommenulink" href="/tr/">TR</a><a class="custommenulink" href="/en/">EN</a>'); $(custommenulink).insertBefore('.menu-item-avia-special'); })(jQuery); </script> <?php } add_action('wp_footer', 'custom_menulink_script');please adjust the link url in the above code.
and add this code in the General Styling ▸ Quick CSS field:a.custommenulink { line-height: 80px; color: #fff; padding: 0 13px; font-weight: 600; } a.custommenulink:hover { color: #fff; text-decoration: none; } .js_active.html_burger_menu #avia-menu .av-burger-menu-main { float: right; } @media only screen and (min-width: 768px) { #avia-menu a.custommenulink { line-height: 90px; } }After applying the css, please clear your browser cache and check.
Best regards,
MikeNovember 21, 2021 at 3:48 pm in reply to: Widget Enfold Facebook Likebox don't working in footer #1329844Hi,
Odd, I moved the FB widget to the inactive wigets area and now the custom code one is the only one showing for me, please clear your browser cache and check.
Are you using a ad-blocker? In this post it sounds like you are, if so which one are you using? If you turn off the ad-blocker are you able to see the Likebox?Best regards,
MikeHi,
Please add the items so I can examine and give you some css to hide from the mobile menu.Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
Mike -
AuthorPosts


