Forum Replies Created
-
AuthorPosts
-
Hi,
I checked the screenshot you gave, I think the spaces on left and right is just right, though I’m not really sure if that’s what you wanted to point out, but if it is, try adding this code in Quick CSS:
.js_active .top_tab .tab { padding-left: 24px; padding-right: 24px; }
Just adjust the values as you see fit. Hope this helps :)
Best regards,
NikkoHi,
I checked it on chrome and it seems to be working fine, can you tell us what browser you are using and OS (example windows 10 or mac Sierra), and provide a screenshot on how it looks on your desktop/laptop, just upload it in http://imgur.com/ or dropbox and post the link here.
Best regards,
NikkoHey winnieandbuzz,
Thanks for reporting this to us. We will be looking on this issue, I’m still downloading iOS 10.2 which is 1gb.
Best regards,
NikkoHey Ripoll,
Those 2 answers given have worked in most cases, do you have a caching plugin enabled? can you try to deactivate it and see if the issue still persists? if it does, can you give us temporary ftp access, so we can take a look at the theme files and enable wordpress debug. Also, please post us your login credentials (in the “private data” field), so we can take a look at your backend.
Login credentials include:
- The URL to the login screen.
- A valid username (with full administration capabilities).
- As well as a password for that username.
- permission to deactivate plugins if necessary.
Best regards,
NikkoHi John,
That is an expected behavior of Advanced Layout Builder, once it is enabled on posts or other post types it will allow the user to have full control over the elements and whatever you add using ALB that will be exactly what you will have on the page (post or other post types), which also means that the default layout for posts won’t work (the one with featured image, dates, comments, etc). If you want to make it look like this: http://kriesi.at/themes/enfold/2014/04/28/new-electric-cars-are-getting-really-fast/ we would recommend not using ALB for posts, you can still use shortcodes on posts.
Best regards,
NikkoHi Katja,
Thanks for posting in the new thread as Yigit suggested. I’m still updating my ipad to the 10.2, I’ll check it once my ipad is updated.
Regards,
NikkoHey Katja,
Thanks for reporting this to us, I’m currently updating my ipad to iOS 10.2, I’ll be checking it as soon as it’s updated (I’m still downloading it at the moment).
Best regards,
NikkoHi,
You’re very much welcome. Thanks for using Enfold and Happy New Year :)
Best regards,
NikkoHi,
I have modified the code in Form Test 2 page to this one:
<form name="webshopform" method="post" action="http://URL/login.php" class="custom-login-form av-form-labels-hidden avia-builder-el-7 el_after_av_heading avia-builder-el-last"> <fieldset> <p class=" first_form form_element form_element_third" id="gebruikersnaam"><input name="gebruikersnaam" class="text_input is_empty" type="text" id="gebruikersnaam" value="" placeholder="Gebruikersnaam*"></p> <p class=" form_element form_element_third av-last-visible-form-element" id="wachtwoord"> <input name="wachtwoord" class="text_input is_empty" type="password" id="wachtwoord" value="" placeholder="Wachtwoord*"></p> <p class="form_element form_element_third modified_width"><input type="submit" value="Login" class="button" data-sending-label="Login"></p> </fieldset> </form>
And added this css code in Quick CSS (located in Enfold > General Styling):
.custom-login-form .form_element_third { width: 32.6%; float: left; margin-left: 1%; clear: none; } .custom-login-form .first_form { clear: both; margin-left: 0; } .custom-login-form.av-form-labels-hidden p { margin-top: 8px; margin-bottom: 8px; } #top .custom-login-form .text_input, #top .custom-login-form .select, #top .custom-login-form .text_area { width: 100%; margin-bottom: 0; display: inline; min-width: 50px; padding: 13px; border-radius: 2px; } .custom-login-form .button { margin: 0; border-radius: 2px; border-bottom-width: 1px; border-bottom-style: solid; font-weight: normal; font-size: 0.92em; min-width: 142px; outline: none; } .custom-login-form p input, .custom-login-form p textarea, .custom-login-form p select, .custom-login-form p .input_checkbox_label { -webkit-transition: all 0.3s ease-in-out; transition: all 0.3s ease-in-out; } @media only screen and (max-width:479px) { .responsive .custom-login-form .form_element { width: 100%; clear: both; margin-right: 0; margin-left: 0; float: none; } }
It should get the right design and works properly. Let us know if it’s also good on your end :)
Best regards,
NikkoHi,
Glad we could help. Happy New Year :)
Best regards,
NikkoHi lech07,
I have added some class to the menu links and have added this css code on top of Quick CSS:
#avia2-menu { position: relative; top: -3px; } #top .flag-dansk { background: url('https://zorbas.synology.me/wordpress/wp-content/uploads/2016/12/dansk-flag.png') center center no-repeat !important; height: 18px; width: 50px; text-indent: -9999em; } #top .flag-svensk { background: url('https://zorbas.synology.me/wordpress/wp-content/uploads/2016/12/svensk-flag.png') center center no-repeat !important; height: 18px; width: 50px; text-indent: -9999em; } #top .flag-dansk a, #top .flag-svensk a { display: block; }
I’m not sure if the links are correct but you can change it in Appearance > Menus. :)
Best regards,
NikkoJanuary 2, 2017 at 1:32 pm in reply to: One WooComerce product are displaying in Mansory Galery post #728518Hey Krzysztof,
The issue is a bit weird, I also noticed that the posts are not in the order which it is set to (by date and in descending order), can you try to disable all plugins except woocommerce and check if the issue still persists.
Best regards,
NikkoHi,
Happy New Year and Thanks for contacting us :)
To include another page to the style, you just need to copy the selector put a comma at the end of the old selector, press enter and paste the copied selector and change the 174 with 705, so the current selector looks like this:
#top.page-id-174 #wrap_all .ls-wp-fullwidth-container .ls-slide {
it would be changed to this:
#top.page-id-174 #wrap_all .ls-wp-fullwidth-container .ls-slide, #top.page-id-705 #wrap_all .ls-wp-fullwidth-container .ls-slide {
Let us know if this helps :)
Best regards,
NikkoHi,
The padding-left is being overridden with some style, instead of writing the code like this:
padding-left: 330px;
Try adding !important, so it wouldn’t be overriden by some style and it should look like this:
padding-left: 330px !important;
You might need to adjust the left padding to make it look better, hope this helps :)
Best regards,
NikkoJanuary 2, 2017 at 12:06 pm in reply to: disable "related posts" Plugin: The Events Calendar (pro) #728469Hey Dirk,
Thanks for contacting us. :) I can’t see any related posts but I do see related events, if you are referring to this, try to add this css code in Quick CSS (located in Enfold > General Styling):
h3.tribe-events-related-events-title, ul.tribe-related-events.tribe-clearfix { display: none !important; }
Hope this helps :)
Best regards,
NikkoHey mbefoto,
I am not sure I understand properly since I just used google translate for this topic, is it if the Remittance Plugin is disabled then Advance Layout Builder works properly? Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
Login credentials include:
- The URL to the login screen.
- A valid username (with full administration capabilities).
- As well as a password for that username.
- permission to deactivate plugins if necessary.
Best regards,
NikkoHey pimroll,
I have added this css code in Quick CSS:
@media only screen and (max-width:767px) { #top #main .home-accordion .aviaccordion { min-height: 180px; } #top #main .home-accordion .aviaccordion h3 { font-size: 14px !important; word-break: break-word !important; } }
Let us know if this helps :)
Best regards,
NikkoHi,
You’re very much welcome :) I created a new page with the form I have modified, can you test it and check if it works? if it doesn’t work can you give us a test account that we can test with the form so we can make changes on the form code then verify if it works or not.
Best regards,
NikkoHey eoltrainer,
That’s a very weird issue. We would like to help you with it but we would need a temporary ftp access. Also, please post us your login credentials (in the “private data” field), so we can take a look at your backend.
Login credentials include:
- The URL to the login screen.
- A valid username (with full administration capabilities).
- As well as a password for that username.
- permission to deactivate plugins if necessary.
Best regards,
NikkoHey antonio blasa,
Thanks for contacting us. :) It’s a bit hard to say it’s fully compatible with the theme as we haven’t tested it out with the plugins you have listed and since the plugins aren’t free we couldn’t test it out for you. I tried looking in the forum for any topics related to your question but couldn’t find any. Most plugins works properly on Enfold but try to contact yith woocommerce support.
Best regards,
NikkoHi,
Glad you found a workaround. If there is a Partner/Logo element in the Avia Layout of the version you have, you might want to try it out as it works better :)
Best regards,
NikkoHi,
I have changed this code in Quick CSS:
#header .textwidget .flex_column { width: 83.3%; padding-left: 330px; }
to:
#header .textwidget .flex_column { width: 100%; padding-left: 30px; }
It should look better now. Let us know if you need anything else related to this topic. :)
Best regards,
NikkoDecember 29, 2016 at 1:40 am in reply to: Cart Drop Down Icon Number Not Updating On Update Cart Button #728393Hi,
Thank you for patiently waiting. :) I have updated the code I put in functions.php and it’s now working fine, this is the code:
add_action('wp_footer', 'ava_new_custom_script'); function ava_new_custom_script(){ ?> <script type="text/javascript"> jQuery(window).load(function(){ jQuery('#top').on( 'click', '.quantity .minus, .quantity .plus', function() { jQuery("header").find("span.av-cart-counter").text(customTotalPrice()); }); function customTotalPrice() { var sum = 0; jQuery(".input-text").each(function(){ sum += +jQuery(this).val(); }); return sum; } }); </script> <?php }
Let us know if there are still issues you are experiencing. Have a great holiday :)
Best regards,
NikkoHi,
I can verify the white gap on my end but I could also see some mixed content errors caused by the envelope and phone images not using https, can you try to fix the url of the images to use https and also try to deactivate all plugins which might affect the masonry js script.
Best regards,
NikkoHey nwcm0819,
1.) Seems like a weird issue, it gets the right link but the wrong title. Can we request for ftp access for this? also can you try to deactivate all plugins and see if this fixes the issue.
2.) It’s working properly, you can go to Posts > Categories and you will see they display the same. Since the category list you want to display needs to be customized or filtered, you can use Custom Menu widget for this instead.
3.) I have added this code in functions.php:
add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 ); function avia_breadcrumbs_trail_mod( $trail, $args ) { if ( is_single() ) { unset($trail[1]); } return $trail; }
Best regards,
NikkoHi,
Try adding this code at the bottom of Quick CSS (located in Enfold > Styling):
#header_main .container { max-width: 100%; } #header_main .container .inner-container { max-width: 1310px; margin-left: auto; margin-right: auto; } @media only screen and (max-width:767px) { #header_main .container.av-logo-container { padding: 0 !important; margin: 0 !important; max-width: 100% !important; width: 100% !important; } #header_main .container.av-logo-container .inner-container { padding: 0 10px; } .content { padding-left: 0; padding-right: 0; } }
Let us know if this helps on the issues.
Best regards,
NikkoHi,
I tried the login details but it doesn’t seem to work on the when trying to access the wp dashboard.
Best regards,
NikkoHi,
I checked your site and it can’t be reached. Try using this code for the form:
<form name="webshopform" method="post" action="http://URL/login.php" class="avia_ajax_form av-form-labels-hidden avia-builder-el-7 el_after_av_heading avia-builder-el-last"> <fieldset> <p class=" first_form form_element form_element_third" id="gebruikersnaam"><input name="gebruikersnaam" class="text_input is_empty" type="text" id="gebruikersnaam" value="" placeholder="Gebruikersnaam*"></p> <p class=" form_element form_element_third av-last-visible-form-element" id="wachtwoord"> <input name="wachtwoord" class="text_input is_empty" type="password" id="wachtwoord" value="" placeholder="Wachtwoord*"></p> <p class="form_element form_element_third modified_width"><input type="submit" value="Login" class="button" data-sending-label="Login"></p> </fieldset> </form>
Let us know if this helps. :)
Best regards,
NikkoHi lech07,
Yes, can you try to add the right url instead of the link. Then add a class on the menu link then use the class to style the link to replace the text with an image of the flag. We will need temporary admin login.
Best regards,
NikkoHi!
You shouldn’t lose any data during the Enfold theme update, if you are using a child theme and any modifications you made in the child theme wouldn’t be lost and anything in Quick CSS would be retained but we would still suggest that you make a backup before updating the theme or wordpress itself :)
Best regards,
Nikko -
AuthorPosts