Forum Replies Created
-
AuthorPosts
-
Hey ranawmehmood,
Thanks for giving us admin access.
After checking on your plugins, I found out it is caused by WP Rocket.
To fix it, I have unchecked Lazy Load for Images under Media.Best regards,
NikkoHey inlinguamadrid,
This issue has been resolved in the latest version of Enfold (4.7.2).
Please update your theme to the latest version.
If for some reason, you don’t want to update yet, here is the solution you can use: https://kriesi.at/support/topic/missing-icons-after-updating-to-wordpress-5-3-1-and-maintenance-releases/
Hope it helps.Best regards,
NikkoJanuary 23, 2020 at 9:20 am in reply to: Woocommerce shopping cart empty Safari with Cookie Consens #1177463Hey Tobias,
Thanks for providing the admin access.
We will report this issue to our devs.Best regards,
NikkoHi goldsvk,
Thanks for providing the admin access and reporting the issue.
We will report this to our devs.Best regards,
NikkoJanuary 23, 2020 at 8:56 am in reply to: Modern Business Blog Cover Image Directs to Author page #1177449Hi Justin,
Thanks for pointing it out.
The problem actually isn’t the Modern Business blog but if the Blog Layout is set to Multi-author and the individual post is a Standard post format.
The problem is occuring if Blog Styling is set to either Modern Business or Elegant and Blog Layout is set to Multi-author and the individual post is a Standard post format.
We will be reporting it to our devs.For the meantime, please modify loop-index.php and find this code (line 315):
if ($slider) $slider = '<a href="' . $link . '" ' . $featured_img_title . '>' . $slider . '</a>';above it, put this code:
$link = !empty($url) ? $url : get_permalink();Best regards,
Nikko-
This reply was modified 6 years ago by
Nikko.
Hi blancocapell,
Thanks for providing the admin access.
Can you unblock the country in private content?Best regards,
NikkoHi BrendaSarg,
Thanks for sharing the solution.
This issue was caused by changes in the folder structure of Enfold and this only happens when you update from versions 4.2.4 and below and you update (via Theme Update) to Enfold 4.2.5 and above.
But this won’t happen again when you update from Enfold 4.2.5 to later versions. :)Best regards,
NikkoHey andyp1969,
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 navindesigns,
Try adding this CSS code in Quick CSS, located in Enfold > General Styling:
#footer .footerInfo .av_font_icon { display: inline-block; float: none; }Best regards,
NikkoHey navindesigns,
Can you try to add this CSS code in
functions.phpQuick CSS (located in Enfold > General Styling):#top { -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */ -moz-animation: fadein 2s; /* Firefox < 16 */ -ms-animation: fadein 2s; /* Internet Explorer */ -o-animation: fadein 2s; /* Opera < 12.1 */ animation: fadein 2s; } @keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /* Firefox < 16 */ @-moz-keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /* Safari, Chrome and Opera > 12.1 */ @-webkit-keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /* Internet Explorer */ @-ms-keyframes fadein { from { opacity: 0; } to { opacity: 1; } } /* Opera < 12.1 */ @-o-keyframes fadein { from { opacity: 0; } to { opacity: 1; } }Hope it helps.
Best regards,
Nikko-
This reply was modified 6 years ago by
Nikko.
Hi Asterios,
Can you include the login link as well?
Best regards,
NikkoJanuary 23, 2020 at 5:26 am in reply to: Child theme. "Enfold theme is missing" (needs to change to caps) #1177387Hi AlbertoChueca,
The enfold folder has always been in lowercase.
Can you give us temporary admin access and FTP access? so we can check it further.
We suggest creating a staging site, so we don’t touch your live site, here’s an article on how to build a stage site: https://themeisle.com/blog/wordpress-staging-site/Best regards,
NikkoHey mmsdev,
Try adding this CSS code in Quick CSS, located in Enfold > General Styling:
(This removes the image overlay)#top .grid-image:hover .image-overlay { display: none !important; }(This removes the title)
#top .grid-sort-container article:hover .grid-content { display: none !important; }Hope it helps.
Best regards,
NikkoHey griswoldcleveland,
Try adding this CSS code in Quick CSS, located in Enfold > General Styling:
#top #header .av-main-nav .av-menu-button-bordered a:hover .avia-menu-text { color: blue; }Just change the color.
I hope it helps.Best regards,
NikkoHey griswoldcleveland,
Try adding this CSS code in Quick CSS, located in Enfold > General Styling:
#top .av-light-form select option { color: black; }Hope it helps.
Best regards,
NikkoJanuary 23, 2020 at 5:09 am in reply to: Output alt or title below featured image in magzin- and blogelement #1177382Hi Mike61,
Thanks for providing the screenshot, it’s pretty clear to me now.
Can we use data-title instead? so the code you should using for CSS is:content: attr(data-title);Edit postslider.php and find this code (line 699 in Enfold 4.7.2):
$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : '';replace with:
$image_alt = get_post_meta(get_post_thumbnail_id($the_id), '_wp_attachment_image_alt', TRUE); $output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title='' data-title='{$image_alt}'>{$thumbnail}</a>" : '';Edit magazine.php and find this code (line 1057 in Enfold 4.7.2):
$title = "<a href='{$link}' {$titleAttr}>". apply_filters( 'avf_magazine_title', get_the_title( $entry->ID ), $entry ) . '</a>';replace with:
$image_alt = get_post_meta(get_post_thumbnail_id($entry->ID), '_wp_attachment_image_alt', TRUE); $title = "<a href='{$link}' {$titleAttr} data-title='{$image_alt}'>". apply_filters( 'avf_magazine_title', get_the_title( $entry->ID ), $entry ) . '</a>';Hope this helps :)
Best regards,
NikkoHi SarahKunterbunt,
I checked the Widget Title and the font-weight is set to Light and to All Headings, font-weight is set to Light and Text Transformation is set to Capital Letter.
If I try to change the value it does work, maybe you can give us a screenshot on how it looks on your screen and maybe a screenshot of what you’re trying to achieve.Best regards,
NikkoHi AstridBerkhout,
I tried the login credentials that you gave, however, it doesn’t work, please check.
Best regards,
NikkoHi eliseneonrhino,
Thanks for giving us admin access.
I’m not sure where this glitch is coming from but the height of the first icongrid is just a bit higher than the other ones causing the issue.
To fix it, in Enfold > Layout Builder, I’ve set Custom CSS classes input field to Show all to edit classes.
Then in Enfold > General Styling > Quick CSS, I added this CSS code:.nrm-icon-grid .avia-icongrid li { height: 189px; }In the homepage, I edited the Icon Grid, go to Developer (tab) > Custom CSS Class set to nrm-icon-grid.
Let us know if you need further assistance related to the issue.Best regards,
NikkoJanuary 23, 2020 at 4:17 am in reply to: Iconfont Manager Error "Couldn’t add the font because the server didn’t respond" #1177375Hi Lawrence8,
Thanks for the admin access.
I tried to check it but the SVG file you’re trying to use does not work, I tried some online font converters which converts SVG to TTF and SVG to WOFF but it does not work either.
I think you’ll need an SVG file which can be converted to a font, I’m not sure though how to do that in Adobe Illustrator.Best regards,
NikkoHi ksparq,
Are you using godaddy? it seems you have similar issue with: https://kriesi.at/support/topic/logo-and-headers-stuffed-up-since-updating-to-latest-version/#post-1165399
Please turn off the CDN that is enabled by GoDaddy.Here’s another thread which mentioned that it works: https://kriesi.at/support/topic/icons-are-showing-as-rectangular-boxes-still-2/
Hope it does work on your end as well.
@ESWEENEY113, the issue you’re having on your site must be the bug from the previous version of the theme since this was not an issue before on your site. This issue is fixed on the latest version of Enfold (4.7.2).Best regards,
NikkoHi nolka,
We’re glad that we could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi PositiveChanges,
We’re glad to hear that your mission has been accomplished :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi EWBailey354,
I apologize I was looking at the Stillpointtherapy’s link when I replied.
And the link that was given by cherrmann was meant to fix the icons showing as square boxes in some sites.
We don’t have Social Follow/Profile in the widget area, it’s fixed to show in the Header or Footer (in the copyright area).
You can use a plugin for the widget area.Best regards,
NikkoHi enzowillemstad,
If you want the X to use a different color, add this CSS code and just change the background color.
.page-id-92 .av-hamburger.is-active .av-hamburger-box span.av-hamburger-inner, .page-id-92 .av-hamburger.is-active .av-hamburger-box span.av-hamburger-inner:before, .page-id-92 .av-hamburger.is-active .av-hamburger-box span.av-hamburger-inner:after { background-color: green !important; }Best regards,
NikkoJanuary 22, 2020 at 1:01 pm in reply to: Output alt or title below featured image in magzin- and blogelement #1177168Hi Mike,
I’m not sure I understand it well.
The codes I gave at the beginning apply to a.slide-image for Blog element and a.av-magazine-thumbnail-link for Magazine element.
After reviewing our discussion you mentioned mediathek but I think I misunderstood that, can you give a screenshot for that?Best regards,
NikkoHi Henk,
We’re glad that we could help :)
You can move the old enfold to the wp-content folder so in Appearance > Themes there is only 1 Enfold theme.
Thanks for using Enfold and have a great day!Best regards,
NikkoHi PositiveChanges,
The only way to fix it is to tweak the post’s excerpt.
You can see Excerpt on the right sidebar (in the backend) just below Featured Image.
I have put an excerpt on https://www.positivechanges.com.au/adrians-good-things/facts-on-food-management/ and you can see it fixes the issue.
Hope this helps.Best regards,
NikkoHi Michael,
Looks great!
Thanks for sharing it with us :)Best regards,
NikkoJanuary 22, 2020 at 12:03 pm in reply to: Iconfont Manager Error "Couldn’t add the font because the server didn’t respond" #1177139Hi Lawrence8,
Please try to create a new thread and post the temporary admin details so we can check it further and try to fix it. Just post it in private content so it is visible only to the thread creator and the moderators. Also, you can put the link to this thread on the newly created thread so we can use it as a reference.
Best regards,
Nikko -
This reply was modified 6 years ago by
-
AuthorPosts
