Forum Replies Created
-
AuthorPosts
-
Hi Dizi2002,
The problem seems to be coming from the footer.php of your child theme, you’ll need to update it based on the latest version of Enfold (probably, header.php as well).
If you need us to assist with you then please create a staging site, since your live site might have some visitors during the time when footer.php is being fixed.Best regards,
NikkoHi J1L,
Thanks for giving us admin access as well as FTP access.
It seems all CSS files have been changed on your theme, for example admin.css is renamed to .admin.css.icloud (I’m not sure why this happens and it’s the first time I’ve seen this)
I have now fixed it on your site.
Also, I noticed that you have replaced the enfold folder’s name as well as the Theme Name and other details, you can just change it in the child theme and it should replace the labels, also I would suggest not removing the version so it’s easier to identify which version of Enfold you are currently using.Best regards,
NikkoHi frankeee,
Thanks for giving us a screenshot.
Can you give us the link to the page in the screenshot?Best regards,
NikkoHi marxsvjetlana64,
You can use this hook ava_after_main_title and put it in functions.php of your child theme:
function acf_after_main_title() { // do something } add_action('ava_after_main_title', 'acf_after_main_title', 99);
Then use WordPress conditional tags to control where it appears.
Hope this helps.Best regards,
NikkoHi Andrea,
We are happy to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi EL,
Thanks for providing us admin access.
It seems the backend has no issue however on the frontend the animation does not work so it seems like the value does not change.
To fix this, I disabled CSS and JS minification & merging then cleared the cache from Hummingbird.
Please review your site.Best regards,
NikkoHi lech07,
Thanks for posting the steps made to fix the issue.
Lazyloading is also enabled by default in Enfold > Performance, maybe disabling it would fix the issue if the issue shows up again.Best regards,
NikkoHi Daniel,
Yes, it’s been predefined in layout.css.
I have changed it on your site by adding this CSS code in Enfold > General Styling > Quick CSS:.template-page .entry-content-wrapper h1, .template-page .entry-content-wrapper h2 { text-transform: inherit; }
Please review your site.
Best regards,
NikkoHi Franz,
Can you try to replace the last code I gave:
@media only screen and (max-width:767px) { .responsive #top .flex_column, .responsive #top .av-flex-cells .no_margin { margin: 0; margin-bottom: 20px; width: 100%; } }
with this:
@media only screen and (max-width:767px) { .responsive #top .flex_column, .responsive #top .av-flex-cells .no_margin, .responsive #top #wrap_all .flex_column { margin: 0; margin-bottom: 8px; padding-bottom: 0; width: 100%; } }
Hope it helps.
Best regards,
NikkoHi energiesgraphiques,
You’re welcome :)
Unfortunately, we don’t have a roll-over image feature in the mouseover option of the image element.
At the moment, this is the work-around that we could offer.Best regards,
NikkoHi bonsaimedia,
You’re welcome :)
Just let us know how it goes.Best regards,
NikkoHi Greg,
It seems more of a caching issue, we’re glad that it’s all good now. :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Andy,
We are happy to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi,
It seems SG optimizer does not seem to work properly on your site, maybe try using another caching plugin and see if it helps.
Best regards,
NikkoHi burdeMedia,
We’ll be closing this thread then.
Thanks for using Enfold and have a great day!Best regards,
NikkoHi whdsolutions,
You’ll need to add the code in your child theme’s functions.php file.
If you don’t have a child theme, you can download and find instructions for it here: https://kriesi.at/documentation/enfold/child-theme/
Make sure to follow the 4 steps under Install a child theme from your WordPress dashboard.Best regards,
NikkoHi energiesgraphiques,
Add a Code Block (under Content Elements), then add this code:
<div style='display: flex; justify-content: center;'> <a href="#" class="noLightbox"> <img src="https://website.com/wp-content/uploads/2022/06/image.jpg" onmouseover="this.src='https://website.com/wp-content/uploads/2022/06/hover_image.jpg'" onmouseout="this.src='https://website.com/wp-content/uploads/2022/06/image.jpg'" /> </a> </div>
then replace http://website.com/wp-content/uploads/2022/06/image.jpg with the current image you want to use and replace http://website.com/wp-content/uploads/2022/06/hover_image.jpg with the hover image you want to use.
Hope this helps.Best regards,
NikkoHi condonpb,
Please follow @Guenni007’s solution.
@Guenni007 thanks for always helping out.Best regards,
NikkoHi xxtita,
It is as @Guenni007 mentioned, the subtext logo is used for transparency headers.
Best regards,
NikkoHi Franz,
I see, please add this CSS code as well:
@media only screen and (max-width:767px) { .responsive #top .flex_column, .responsive #top .av-flex-cells .no_margin { margin: 0; margin-bottom: 20px; width: 100%; } }
Best regards,
NikkoHi bonsaimedia,
Yes, it’s possible however, you’ll need to use a child theme first, if you have already have a child theme, skip this step:
You can download and find instructions for it here: https://kriesi.at/documentation/enfold/child-theme/
Make sure to follow the 4 steps under Install a child theme from your WordPress dashboard.Once you have installed and activated the child theme, do the following steps:
1. Add this code in your child theme’s functions.php file (if you already have a child theme, and already had this code do not add it):/** * Add filter to add or replace Enfold ALB shortcodes with new folder contents * * Note that the shortcodes must be in the same format as those in * enfold/config-templatebuilder/avia-shortcodes * * @link http://kriesi.at/documentation/enfold/add-new-or-replace-advanced-layout-builder-elements-from-child-theme/ * * @param array $paths * @return array */ function avia_include_shortcode_template( $paths ) { if( ! is_array( $paths ) ) { $paths = array(); } $template_url = get_stylesheet_directory(); array_unshift( $paths, $template_url . '/shortcodes/' ); return $paths; } add_filter( 'avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1 );
2. Go to wp-content/enfold/config-templatebuilder/avia-shortcodes/ and copy the table folder, then go to the child theme and create a new folder and name it shortcodes and paste the table folder inside it. Inside the table folder, edit table.php and go to line 486 (this is the code on that line):
'avia-data-table',
below it, add this code:
'sortable',
3. Download this file https://www.kryogenix.org/code/browser/sorttable/sorttable.js and in your child theme, create another folder called js, inside it upload the file you just downloaded.
4. Then in your child theme’s functions.php, add this code:
function add_sorttablejs() { wp_enqueue_script( 'kryogenix-sorttable', get_stylesheet_directory_uri().'/js/sorttable.js', array('jquery'), 2, true ); } add_action( 'wp_enqueue_scripts', 'add_sorttablejs', 100 );
Hope this helps.
If you need assistance, just let us know.Best regards,
NikkoJune 23, 2022 at 6:17 am in reply to: Db replace in post_content for empty img alt but stil need to update wp_postmeta #1356234Hi WPStyling2020,
Why do you want to empty the alt and title tag? it is useful for SEO stuff.
If you want to remove it, so the tooltip won’t show when you hover over it, I would suggest Guenni007’s solution on this thread: https://kriesi.at/support/topic/remove-tooltip-keep-caption-in-galleries-masonry/#post-1355891Best regards,
NikkoHi Psycomatis,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi schweg33,
You can use the same plugin, it can be fixed by adding this CSS code in Enfold > General Styling > Quick CSS:
#footer { padding: 0; } #footer .widget { margin: 0; } #top .footer_color .widgettitle, #top .socket_color .widgettitle { color: #000000; text-transform: none; font-size: 13px; letter-spacing: 0.09em; }
Best regards,
NikkoHi Mike,
Yes, you cannot use the same token, you’ll need to delete the token you used for Envato Market which does not have sufficient token to revoke its validity.
Then create a new token with sufficient permissions and use it for Enfold Theme Updates.Best regards,
NikkoHi Ronaldo,
You’re welcome :)
We’re glad that we could help.
Thanks for using Enfold and have a great day!Thanks to @Guenni007 as well for helping out :)
Best regards,
NikkoHi sdsitetechdotcom,
Please remove the last code I gave and replace it with this one:
#top .av-catalogue-item-inner .av-catalogue-title-container { line-height: 1.4; } #top .av-catalogue-item-inner .av-catalogue-title { padding: 10px 80px 25px 100px; } #top .av-catalogue-item-inner .av-catalogue-price { line-height: 0.8; top: 8px; }
Best regards,
NikkoJune 21, 2022 at 5:40 am in reply to: horizontal column gaps on mobile different than on web #1355936Hi webdesignphx,
Can you try adding this CSS code in Enfold > General Styling > Quick CSS:
@media only screen and (max-width:767px) { #top.home #av_section_4 .sc-av_one_half { margin-top: 0; } }
Best regards,
NikkoHi sdsitetechdotcom,
Can you try adding this CSS code as well:
#top .av-catalogue-item-inner .av-catalogue-title { padding-right: 80px; padding-left: 100px; padding-bottom: 25px; }
Best regards,
NikkoHi Dzimnikov,
You cannot center it because the box is basically the whole column, what you can do is to move the column to the right to make it visually centered.
Try adding this CSS code in Enfold > General Styling > Quick CSS:#comevisitcolumn { position: relative; left: 120px; }
just adjust the left value as you see fit.
Best regards,
Nikko -
AuthorPosts