Forum Replies Created
-
AuthorPosts
-
Hi icphillips,
Yes, you’ll just need to copy and paste the code at the bottom of functions.php.
However, we don’t recommend it in the parent theme (enfold) since it will be overwritten during an update, we suggest putting it in a child theme’s functions.php file.
If you already have a child theme, just ignore this, otherwise, you can download and find further instructions here: https://kriesi.at/documentation/enfold/child-theme/Best regards,
NikkoHi cacvaquero,
Please update your site to the latest version of Enfold (4.8.1) which most likely would fix the issue.
Make sure to have a backup first before doing any updates.Best regards,
NikkoHi TT2495,
Please add this CSS code in Enfold > General Styling > Quick CSS:
.single-post .blog-meta { display: none; }Hope it helps.
Best regards,
NikkoHi peterolle,
It’s possible but the Entry Number should not be set to All and also should be equal to or below the number of posts.
Once those conditions are done then you can modify the postslider.
Find this function, line 967 in the code I gave you (line 996 in the parent theme):protected function slide_navigation_arrows()put this code:
$html .= $this->slide_navigation_dots();above:
return $html;After the slide_navigation_arrows function (code block), add this code:
/** * * @return string */ protected function slide_navigation_dots() { $html = ''; $html .= "<div class='avia-slideshow-dots avia-slideshow-controls'>"; $active = 'active'; $entry_count = $this->atts['items']; $slidenumber = $entry_count / (int) $this->atts['columns']; $slidenumber = $entry_count % (int) $this->atts['columns'] ? ( (int) $slidenumber + 1) : (int) $slidenumber; for( $i = 1; $i <= $slidenumber; $i++ ) { $html .= "<a href='#{$i}' class='goto-slide {$active}' >{$i}</a>"; $active = ''; } $html .= '</div>'; return $html; }Best regards,
NikkoMarch 25, 2021 at 5:15 pm in reply to: Excerpt length for post slider, blog posts and magazine #1290417Hi peterolle,
The Blog Posts that uses Grid is basically using Post Slider, so they use the same hook:
function enfold_postgrid_excerpt_length($length) { $length= 90; return $length; } add_filter('avf_postgrid_excerpt_length','enfold_postgrid_excerpt_length', 10, 1);For Magazines, you can use this code:
function enfold_magazine_excerpt_length($length) { $length = 60; return $length; } add_filter('avf_magazine_excerpt_length','enfold_magazine_excerpt_length', 10, 1);Hope this helps.
Best regards,
NikkoHi peterolle,
Based on the code I gave you in https://kriesi.at/support/topic/blog-grid-with-full-info-and-elements/#post-1290407 it should be in line 713 (originally in line 711):
$permalink = '<div class="read-more-link"><a href="' . get_permalink( $the_id ) . '" class="more-link">' . __( 'Read more', 'avia_framework' ) . '<span class="more-link-arrow"></span></a></div>';Just replace Read more text.
If you want to remove the > then remove this in the code as well:<span class="more-link-arrow"></span>Hope this helps.
Best regards,
NikkoHi peterolle,
We apologize for the delayed response, please do the following:
1. (skip this step if you have a child theme) Download and use a child theme. You can download and find instructions on how to use it here: https://kriesi.at/documentation/enfold/child-theme/
2. Follow the steps provided in: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
3. Copy wp-content > themes > enfold > config-templatebuilder > avia-shortcodes > postslider folder to wp-content > themes > enfold-child > shortcodes folder.
4. Edit postslider.php in the child theme and replace with this code: https://pastebin.com/sN4d76MbHope this helps.
Best regards,
Nikko-
This reply was modified 4 years, 11 months ago by
Nikko. Reason: fix link
Hi Mable,
The link you posted in private content seems to be broken, please check.
Best regards,
NikkoHi TLPLindseyMuchka,
We’re happy we could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Aidan,
You’re welcome :)
Just adjust the opacity value (highest value is 1 which is no transparency, 0 is the lowest value which is fully transparent).Best regards,
NikkoHi Carmen,
Are you referring on this heading “Últimas noticias relacionadas” ? if yes, then you can edit it in the backend and change the Heading Type
I was actually expecting it to be like the “You might also like” in https://kriesi.at/themes/enfold-2017/2014/08/24/a-nice-entry/
If I’m wrong please point me to the right text or you can give a screenshot.Best regards,
NikkoHi dittejoe ,
Can you try to disable Javascript file merging and compression in Enfold > Performance?
Best regards,
NikkoHi Tommy,
We’re glad that we could help :)
Just keep it disabled for about a week, the cache would likely expire and you can try to enable it after.Best regards,
NikkoHi paulgross,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Aidan,
Please edit the Button Row > Advanced (tab) > Developer Settings > Custom CSS Class put: my-buttonrow then save.
Go to Enfold > General Styling > Quick CSS, then add this CSS code:.my-buttonrow .avia-button { opacity: 0.7; }Best regards,
NikkoHi vanosome,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Mable,
We’re glad to hear that :)
I think there are two reasons for weird issues, I believe the issue you’re experiencing is the second one.
1. Caching (old files are still fetched mixed with new ones, after it expires new files are fetched and everything suddenly works)
2. Server downtime (technical issues like hardware failure or maintenance, if you’re in a good hosting this rarely happens)Best regards,
NikkoHi maryenvato,
Have you made the changes in Enfold > Advanced Styling?
Best regards,
NikkoMarch 25, 2021 at 5:42 am in reply to: Remove Author name and photo from a single post (not all of the posts) #1290297Hi Jake,
Can you give us the link to the page mentioned? also tell us the title of the post that you want to remove the author name and photo.
Best regards,
NikkoHi Kurt,
Can you give us a link to the page mentioned? so we can take a closer look and give you an accurate CSS code :)
Best regards,
NikkoHi Fyooz5Cromwell5,
We’re glad that you were able find the solution.
Please check our documentation for further information: https://kriesi.at/documentation/enfold/
Thanks for using Enfold and have a great day!Best regards,
NikkoHi TLPLindseyMuchka,
Here’s the whole shortcode for the knowledgebase demo’s homepage: https://pastebin.com/udvn2N2J
Hope it helps.Best regards,
NikkoHi corinnehaechler,
Yes, we have checked your site and it seems the error is not appearing anymore.
Is this already fixed?Best regards,
NikkoHi jensredmer,
We’re glad to hear that this is resolved :)
@Guenni007 Thanks for helping out.Best regards,
NikkoHey jensredmer,
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,
NikkoHi Ginodelg,
Please refer to our documentation: https://kriesi.at/documentation/enfold/typography/#how-to-upload-custom-fonts
Hope it helps.Best regards,
NikkoHi João,
Can you try to go to Enfold > Advanced Styling > (Select an element to customize) choose Small bar above Main Menu, click Edit Element button.
This should open up a box below it for styling Top Menu (just adjust it).
If that does not help, please give us a link to your site.Best regards,
NikkoHi aledelpu,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHey Ski_extreme,
Can you try to disable Javascript file merging and compression in Enfold > Performance?
Best regards,
NikkoHi Hanna,
Please follow the steps below:
Make a backup:
– Site Backup: https://kriesi.at/documentation/enfold/backup-wordpress-site/
– Theme Settings Backup: https://kriesi.at/documentation/enfold/backup-theme-settings/Option 1: Use Envato Market to update your site
– link: https://envato.com/market-plugin/Option 2: Update manually
1. Login to ThemeForest and download the Enfold theme, right-click over the downloaded zip file and extract/unzip it.
2. It should generate a new folder, open it and look for the enfold folder
3. Right-click the enfold folder then zip it, here’s a tutorial on how to create a zip file in windows: https://www.howtogeek.com/668409/how-to-zip-and-unzip-files-on-windows-10/ (this should create enfold.zip
4. Log in to WordPress as and Admin.
5. Install and activate a maintenance plugin and put your site in Maintenance mode.
6. Go to Appearance > Themes, switch to a default WordPress theme like TwentyTwenty then delete Enfold.
7. Click on the ADD NEW button.
8. Click on the UPLOAD THEME button.
9. Click BROWSE and choose enfold.zip file
10. Click the INSTALL NOW button and switch to Enfold or your child theme.
11. Remove the maintenance mode then deactivate and remove the maintenance plugin.Register the theme by following the instructions in https://kriesi.at/documentation/enfold/theme-registration/
Once this is done, the next time you update, you’ll only need to go to Enfold > Theme Updates and click on the Update button.Best regards,
Nikko -
This reply was modified 4 years, 11 months ago by
-
AuthorPosts
