Forum Replies Created
-
AuthorPosts
-
Hi beclean,
Can you give us the password? the one you gave seems to be the login link.
Best regards,
NikkoHi Kevin,
The site you posted just have it’s ul’s font size set to 16.
So if you add this CSS code in Quick CSS:#top ul { font-size: 16px; }that should be similar to the site you gave.
The other method would be to use the :before selector.
– https://www.w3schools.com/cssref/sel_before.aspBest regards,
NikkoApril 3, 2020 at 10:05 pm in reply to: WordPress 5.4 and Enfold 4.7.4 – Error with Customizer #1200664Hi Oliver,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Franz,
Can you give us a screenshot or mockup of what you want to achieve?
Best regards,
NikkoHi Eduardo,
When you upload the logo in Enfold > Theme Options > Logo, make sure that you chose Full Size, I think on your end by default Thumbnail is used that’s why it’s cut off.
Best regards,
NikkoHi KlaasBSW,
Can you try this CSS code:
#top h3 { padding: 0; }Best regards,
NikkoHi Susanne,
Can we get more context on the issue?
The screenshot you posted seems like the usual WordPress login.Best regards,
NikkoApril 3, 2020 at 9:48 pm in reply to: Change color of separator between price range of product variations #1200649Hi stofson,
Can you try adding this CSS code as well:
#top.archive p.price { color: #719430 !important; }Best regards,
NikkoHi Nikola,
There are 2 approaches for this, first one is via plugin:
– https://wordpress.org/plugins/simple-image-sizes/
Then go to Settings > Media, change the size of the Masonry image size and regenerate images.Second one is via code (in a child theme).
If you don’t have a child theme yet, you’ll need to use one, you can download and find instructions in the link: https://kriesi.at/documentation/enfold/child-theme/
Then add this code at the bottom of functions.php (and change the width and height values):function enfold_customization_modify_thumb_size( $size ) { $size['masonry'] = array('width'=>705, 'height'=>705 , 'crop' => false); return $size; } add_filter( 'avf_modify_thumb_size', 'enfold_customization_modify_thumb_size', 10, 1 );This will only resize for masonry images that has been uploaded after the code is added.
For old images, you can use regenerate thumbnail plugins.Best regards,
NikkoHi Peder,
Here’s how you can do it with CSS:
– https://css-tricks.com/how-to-do-knockout-text/
However the solution in CSS uses only works on some browsers but not all major browsers, so photoshop is the best way.Best regards,
NikkoHi kevinkalk,
In Appearance > Menus you have some links that has spaces for example:
http://yoursite.com/products/#Diesel Fuel ProductsThis causes issues, it’s better to replace spaces with underscores or dashes.
Hope this helps.Best regards,
NikkoHey milano24ore,
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.
- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
( to be sure that we have enough time to debug ). - Click ” Submit “.
- You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.
When your issue is fixed, you can always remove the plugin!
If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.Best regards,
NikkoHey Elisabeth,
Thanks for contacting us!
The available fonts in Enfold theme are web safe fonts and google fonts.
Custom fonts can be used as well but you’ll need to upload it to your site, here’s our documentation showing how you can upload a custom font:
– https://kriesi.at/documentation/enfold/typography/#how-to-upload-custom-fonts
Hope this helps.Best regards,
NikkoHi paoluccimarketing,
We apologize for the delay, some shortcodes doesn’t work properly when it’s outside of the template builder.
I have modified the single-portfolio.php file but you will need to modify the dynamic values.
Here are some things that’s not working when using a shortcode:
– [av_postcontent]
– Equal height columns does not work well outside the template builder
Also you have 4 foreach loops and they are on top of each other that’s why it’s repeating multiple times, you’ll need to store those values and keep the shortcode outside of the loops unless you want them to be repeated.Best regards,
NikkoHi Eduardo,
We’ll be closing this thread and answer your question on your other thread.
Best regards,
NikkoHi Bernd,
Thanks for giving us access.
The problem seems to be coming from the child theme, if I use Enfold (parent theme) review shows properly on the backend and you can remove it.Best regards,
NikkoHi studiono,
We apologize for the delayed response.
I have checked the staging site and there was no error showing.
I tried to create a test page and used Twenty-twenty as the theme (link in private content) and the result is the same, which seems to be inconsistent.
Some time the iframe does not fetch anything, I’m just not sure if the issue is from the plugin or the fetching of data from docs.google.com.Best regards,
NikkoHi jannnnnneke,
Try adding this CSS code in Quick CSS, located in Enfold > General Styling:
.page-id-2 #av_section_1 .av_one_fourth { position: absolute; top: -140px; }Hope it helps.
Best regards,
NikkoHi newmesis,
You may need to update to PHP 7.3 as it is more faster than its previous versions but you will need to also increase memory limit.
I can also see you are using a lot of plugins so increasing memory limit should be able to help.
These links might also help on some issues:
– https://www.thesearchengineshop.com/how-to-fix-slow-wordpress-website/
– https://www.smartwpfix.com/speeding-up-slow-wordpress-admin-panelBest regards,
NikkoApril 3, 2020 at 2:04 pm in reply to: Logo on top, center, with icons on left and burger on left for mobile #1200521Hi djarrow01,
Can you try this code:
.responsive #top #header .inner-container > .social_bookmarks { display: none !important; }inside the media query:
@media only screen and (max-width:767px) {Best regards,
NikkoHi kmccreery,
Sure, please send a screenshot.
I have checked again in mobile device and I could see it without issue.Best regards,
NikkoHi techielab,
It’s not possible with CSS alone, you’ll need to do the following steps:
1. Go to wp-content > themes > enfold > config-woocommerce > config.php (line 1181):add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 );replace with:
// add_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 );(though it is not recommended to make a change in the core of the parent theme, however just using remove_action in the child theme’s functions.php doesn’t negate it, so you’ll need to remove or comment it out)
2. In your child theme’s functions.php add this code:
add_action( 'woocommerce_after_single_product', 'woocommerce_output_product_data_tabs_opening_div', 4 ); add_action( 'woocommerce_after_single_product', 'woocommerce_output_product_data_tabs', 5 ); add_action( 'woocommerce_after_single_product', 'woocommerce_output_product_data_tabs_closing_div', 6 ); function woocommerce_output_product_data_tabs_opening_div() { echo '<div class="product">'; } function woocommerce_output_product_data_tabs_closing_div() { echo '</div>'; }Best regards,
NikkoHi Dijkhuis,
I’m getting this when I try to check the link you gave:
This site can’t be reached eerselsmooistewebdesign.nl’s server IP address could not be found.Can you put all the code in your child theme’s functions.php (including the code I gave) to https://pastebin.com/ and post the link here.
Best regards,
NikkoHi heiwo2,
Please try adding this CSS code in Quick CSS (located in Enfold > General Styling):
@media only screen and (max-width: 989px) and (min-width: 767px) .responsive #top .av-masonry-entry .av-masonry-entry-title+.av-masonry-entry-content { display: block; } }Best regards,
NikkoHi kmccreery,
I have checked your site and the icons are loading properly on my end, even after checking several times.
Can you try to clear browser cache?Best regards,
NikkoHi Leonidas,
Can you give us a link to the page mentioned? so we can check further why it’s not working.
Best regards,
NikkoHi Hugo_R,
Just add this after your copyright text:
[nolink]You can check our documentation for more information on this: https://kriesi.at/documentation/enfold/footer/#copyrights-info
Hope it helps.Best regards,
NikkoHi Empatica,
Kindly check this in our documentation: https://kriesi.at/documentation/enfold/contact-form/#add-on-click-event-to-the-contact-form-submit-button-
Hope it helps.Best regards,
NikkoHey Dijkhuis,
Can you try adding this code at the bottom of your child theme’s functions.php:
function custom_script_name(){ ?> <script id="Cookiebot" src="https://consent.cookiebot.com/uc.js" data-cbid="c0b4bd7c-2476-4827-bd09-50f952e1a7be" data-blockingmode="auto" type="text/javascript"></script> <?php } add_action('wp_head', 'custom_script_name');Best regards,
NikkoHi Steffie,
Unfortunately, Color Section doesn’t have that feature, maybe you can try to use Fullwidth Easy Slider then check Use first slides caption as permanent caption.
Hope this helps.Best regards,
Nikko -
AuthorPosts
