Forum Replies Created
-
AuthorPosts
-
Hi plvsultra,
You can use the following hooks:
avia_before_footer_columns or avia_after_footer_columns
Hope this helps :)Best regards,
NikkoJanuary 12, 2023 at 7:43 am in reply to: Search results — possible to display product image? #1378343Hi Stephen,
Yes, it’s possible.
Please follow the instructions on this thread: https://kriesi.at/support/topic/display-images-in-search/
Further improvement can be found on this thread: https://kriesi.at/support/topic/change-layout-search-results/#post-1359284
Hope this helps.Best regards,
NikkoHi pnamroud,
Please try to follow the following articles and see if it helps:
– https://kriesi.at/archives/scoring-100-100-in-google-pagespeed-insights-gtmetrix-pagespeed-and-yslow
– https://gtmetrix.com/wordpress-optimization-guide.htmlBest regards,
NikkoHi finchkelsey,
Please try to add this CSS code in Enfold > General Styling > Quick CSS:
@media only screen and (max-width:767px) { #top .footer.av-layout-grid-container { display: flex; flex-direction: column; } #top .footer.av-layout-grid-container .flex_cell { width: 100%; padding: 10px 10px 40px !important; } }
Best regards,
NikkoHi Dave,
A staging site is just a duplicate of your live website, you can see further explanation here.
Some hosting providers provide a way to do that via cPanel, if it’s not available on your hosting provider, you can use a wordpress plugin, you can check these options as well as instructions on this article: https://wpengine.com/resources/what-is-a-staging-site-why-have-one/#How_to_Create_a_Staging_Site_for_WordPress
Hope this helps.Best regards,
NikkoHi Brianna Vaile,
Thanks for contacting us!
I believe what you are looking for is a functionality of a membership plugin.
You can check the list of recommended membership plugins in this thread: https://kriesi.at/support/topic/recommended-plugins/
Hope this helps.Best regards,
NikkoJanuary 12, 2023 at 6:40 am in reply to: Google Fonts werden nach Import und Umstellung trotzdem gefunden #1378337Hi Highlander-2013,
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 Aldopo1973,
Please try to do the following things:
1. Switch to a default WordPress Theme such as Twenty Twenty.
2. Delete the Enfold theme.
3. Re-install the theme again and activate it.
Hope this helps.Best regards,
NikkoHi greenbeen,
The One Page Restaurant Demo is imported on your site.
Please review your site and let us know if you need further assistance.Regards,
NikkoHi greenbeen,
Error code 28 usually indicates that the connection to the server has timed out. This can be caused by a variety of factors, such as a slow internet connection, a problem with the server, or a problem with the connection between your device and the server. In your case, I think it is a connection issue between the server on your site and our server. Also, when I tried the usual methods in importing the demo, it does not work as well so I tried importing via All-in-One Migration plugin which works.
As for the demo imported, you only mentioned Restaurant on this thread, anyway, since it is One Page restaurant demo that you would like to use then we will import that demo on your site.
Best regards,
NikkoJanuary 6, 2023 at 12:33 am in reply to: Bottons get outside the lower bar of footer and become blue with links #1377774Hi Natacha,
I’m glad that it’s fixed.
Thanks for using Enfold and have a great day :)Best regards,
NikkoHi greenbeen,
I apologize for the delay, I have imported the restaurant demo to your site however the login credentials were replaced.
The new login credentials is in private content, you can change the email and password in wp-admin however for the username, you can change it via phpmyadmin in Cpanel: https://help.one.com/hc/en-us/articles/360002094117-Change-a-WordPress-username-in-PhpMyAdminBest regards,
NikkoHey deepbluec,
Can you give us a link to your site? so we can try to see the issue.
Best regards,
NikkoHi greenbeen,
The site is back now however the limit is still 128MB.
You can verify this if you go to All-in-One WP Migration > Import.
You can change the limit via Cpanel however it differs in every host.Best regards,
NikkoHi tammiviestinta,
It seems you are still using Enfold version 4.9.2.1, please update it to the latest version (5.3.1.1) and you will have option to change it.
Please make sure to have a backup first before you update.Once it is updated, please edit the accordion then go to Advanced > Toggle Titles > Toggle Title Tag and change it to H2 or H3.
Hope this helps :)Best regards,
NikkoHi greenbeen,
The site is still showing Internal Server Error, can you try to remove the .htaccess file?
Wordpress will regenerate it or you can force it to regenerate when you go to Settings > Permalinks and then save.Best regards,
NikkoHi Dominic,
For blogposts that uses grid layout you can use:
function custom_postgrid_excerpt_length($excerpt_length) { $excerpt_length = 250; return $excerpt_length; } add_filter( 'avf_postgrid_excerpt_length', 'custom_postgrid_excerpt_length');
For blogposts that does not use grid layout, you can use the WordPress excerpt length filter:
function av_custom_excerpt_length( $length ) { return 250; } add_filter( 'excerpt_length', 'av_custom_excerpt_length', 999 );
Just change the length, hope it helps.
Best regards,
NikkoHi Dominic,
Please try to increase the excerpt length by adding this code in functions.php:
function custom_postgrid_excerpt_length($excerpt_length) { $excerpt_length = 250; return $excerpt_length; } add_filter( 'avf_postgrid_excerpt_length', 'custom_postgrid_excerpt_length');
Then replace these codes:
// Use custom excerpt for Blogposts for grid layout add_filter("avf_post_slider_entry_excerpt", function($excerpt, $prepare_excerpt, $permalink, $entry, $class) { $custom_excerpt = get_field( 'the_project', $entry->ID ); if ( $custom_excerpt ) { $excerpt = modify_excerpt($custom_excerpt); } return $excerpt; }, 10, 5); // Use custom excerpt for Blogposts in all layout except grid add_filter('get_the_excerpt', function($excerpt, $entry) { $custom_excerpt = get_field( 'the_project', $entry->ID ); if ( $custom_excerpt ) { $excerpt = modify_excerpt($custom_excerpt); } return $excerpt; }, 10, 2);
to:
// Use custom excerpt for Blogposts for grid layout add_filter("avf_post_slider_entry_excerpt", function($excerpt, $prepare_excerpt, $permalink, $entry, $class) { $custom_excerpt = get_field( 'the_project', $entry->ID ); if ( $custom_excerpt ) { $excerpt = $custom_excerpt; } return modify_excerpt($excerpt); }, 10, 5); // Use custom excerpt for Blogposts in all layout except grid add_filter('get_the_excerpt', function($excerpt, $entry) { $custom_excerpt = get_field( 'the_project', $entry->ID ); if ( $custom_excerpt ) { $excerpt = $custom_excerpt; } return modify_excerpt($excerpt); }, 10, 2);
Hope this helps.
Best regards,
NikkoHi greenbeen,
Thanks for giving us admin access, however, I apologize I caused an error on your site as I tried to increase the maximum upload size in order to import the demo via All-in-One migration plugin since the usual methods are not working and the size of the restaurant demo when imported is 172mb and the limit on your site is 128MB.
I followed the step 3 in https://help.servmask.com/2018/10/27/how-to-increase-maximum-upload-file-size-in-wordpress/ but it caused the error instead:php_value upload_max_filesize 256M php_value post_max_size 256M
The error can be fixed by removing the code in .htaccess however I would need FTP access to remove it.
Also, please try to do step 2 in the link.Best regards,
NikkoHi tammiviestinta,
Please try to add this CSS code in Enfold > General Styling > Quick CSS:
.responsive #top.home #wrap_all #av_section_2 .flex_column { margin-left: -10%; padding: 30px !important; }
You may need to adjust your text size.
Hope this helps.Best regards,
NikkoHi GWS,
I tried to check your site however it shows this error:
Access denied
Error code 1020
You do not have access to http://www.website.com.
The site owner may have set restrictions that prevent you from accessing the site.Can you try Yigit’s answer on this thread: https://kriesi.at/support/topic/undefined-index-5/#post-1357315 and see if it helps.
Best regards,
NikkoHi navindesigns,
We’re happy to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi erictuvel,
Please try to add this CSS code as well:
#top .avia-layerslider .ls-nav-prev:before, #top .avia-layerslider .ls-nav-prev:after, #top .avia-layerslider .ls-nav-next:before, #top .avia-layerslider .ls-nav-next:after { display: none; } #top .avia-layerslider .ls-nav-prev:hover, #top .avia-layerslider .ls-nav-next:hover { transform: scale(1); }
Hope it helps.
Best regards,
NikkoDecember 22, 2022 at 8:38 am in reply to: Hintergrundfarbe in einem Feld weiss trotz Farbsektion | Zeilen Einstellungen #1377070Hi Nic_007,
We’ll close this thread then and answer your question on the other thread.
Best regards,
NikkoHi acscreativenew,
I apologize for the delayed response.
It seems the code I gave was not needed, I have commented out the php code I gave however I have modified your Reviews cpt and in includes/custom-post-types.php line 348, I changed:'hierarchical' => true,
to:
'hierarchical' => false,
and in Quick CSS, I have added this CSS code:
.avia-content-slider-inner .slide-meta { display: none; }
Please review your site.
Best regards,
NikkoHi Matthew Brown,
You’re welcome :)
If you have any questions just let us know!Best regards,
NikkoDecember 16, 2022 at 6:18 pm in reply to: Hintergrundfarbe in einem Feld weiss trotz Farbsektion | Zeilen Einstellungen #1376435Hi Nic_007,
I can’t seem to find the background photo (sushi) that you mentioned anywhere on the page.
Can you provide a screenshot on your end? maybe it’s a caching issue or the background photo you mentioned is not appearing on my end.Best regards,
NikkoHi Nic_007,
We’re glad that we could help you :)
Thanks for using Enfold and have a great weekend!Best regards,
NikkoHi beachmarc,
I didn’t touch anything in the functions.php file, I basically just activated the child theme, so the one you have there already is a working one.
If I compare all those codes, all should work, they are basically using the same filter.Best regards,
NikkoHi Patrick,
We’re glad that we could help :)
Thanks for using Enfold and have a great weekend!Best regards,
Nikko -
AuthorPosts