Forum Replies Created
-
AuthorPosts
-
July 13, 2020 at 11:20 am in reply to: Portfolio Grid Shortcode Inside "Tabs Section" Not Working as Expected #1229905
Hi Albert,
We’re glad that we could help :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHey Bert,
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 Marco,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Colleen,
Thanks for contacting us!
We don’t do hosting, so you can freely choose where you want to host your WordPress site.
The only requirement we need can be found in our documentation: https://kriesi.at/documentation/enfold/hosting-requirement/Best regards,
NikkoJuly 13, 2020 at 11:18 am in reply to: WordPress caught an error with your theme, Enfold Child #1229898Hi Barra,
The issue is caused by product_price.php file located in enfold-child/shortcodes.
If I check the code it states that it’s coded by Spiderfly Studios, I think it would be better to ask for their help on this one.Best regards,
NikkoHi Oscar,
Please add this code at the bottom of your child theme’s functions.php:
(If you don’t have a child theme) you can download and find the instructions in our documentation: https://kriesi.at/documentation/enfold/child-theme/function tab_section_arrows(){ ?> <script> (function( $ ) { var $ts = $('.av-tab-section-outer-container'); var $tab = $ts.find('.av-section-tab-title'); getActiveTab(); $tab.on('mouseup', function() { setTimeout(getActiveTab, 100); }); function getActiveTab() { if( $tab.first().hasClass('av-active-tab-title') ) { $ts.addClass('av-start'); $ts.removeClass('av-end'); } else if ( $tab.last().hasClass('av-active-tab-title') ) { $ts.addClass('av-end'); $ts.removeClass('av-start'); } else { $ts.removeClass('av-start'); $ts.removeClass('av-end'); } } }(jQuery)); </script> <?php } add_action('wp_footer', 'tab_section_arrows');and on your Quick CSS, please use this instead (slight modification from the original):
@media only screen and (max-width:767px) { .av-tab-section-outer-container:after, .av-tab-section-outer-container:before { font-family: 'entypo-fontello'; font-size: 50px; position: absolute; top: 100px; z-index: 1000; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; transition: all 0.4s ease-out; } .av-tab-section-outer-container:after { content: '\e879'; right: 20px; } .av-tab-section-outer-container:before { content: '\e878'; left: 20px; } .av-tab-section-outer-container.av-start:before, .av-tab-section-outer-container.av-end:after { opacity: 0; visibility: hidden; } }Best regards,
NikkoHi Simone,
The plugin we recommend should generate a link which should let us have access.
After creating a user, it should generate a link that looks like this:https://mysite.com/wp-admin/?wtlwp_token=2e01a1a40413a6b89c8c8ceda7f480a3Best regards,
NikkoHi Simone,
I have tried 3 attempts and it didn’t work.
It seems like the username is correct since I tried the lost password and it accepted the username.
The password seems to be wrong. (I tried removing thanks or -thanks, also didn’t work)Best regards,
NikkoHi Ida,
Thanks for giving us admin access.
I believe you have changed from .dk to .com and the reason why it’s not showing properly in the backend is that the source is pointing https://www.idaandersenlang.dk/ instead of https://www.idaandersenlang.com/ which results to some error.
You modify this manually as what I have done in your resources page or you can try to use some search and replace plugins for it.Best regards,
NikkoHi smakarate,
We’re glad to hear that :)
Thanks for using Ennfold and have a great day!Best regards,
NikkoJuly 13, 2020 at 6:55 am in reply to: Unable to Edit Page on Website (Permanent Loading Screen) #1229852Hi acelam714,
Can you try this code instead:
// Enable WP_DEBUG mode define( 'WP_DEBUG', true ); // Enable Debug logging to the /wp-content/debug.log file define( 'WP_DEBUG_LOG', true ); // Disable display of errors and warnings define( 'WP_DEBUG_DISPLAY', false );You can look in your root folder and check if there’s an error_log file, if you have check it and find the recent errors and you can post here.
If there’s none, go to the wp-content folder and find debug.log file and check for recent errors.
For more information, please refer to WP documentation: https://wordpress.org/support/article/debugging-in-wordpress/
The issue with preview might be in those errors, sometimes you need to trigger it by opening that specific page/post.Best regards,
NikkoHi Vadim,
You’re welcome :)
Let us know if you need further assistance.Best regards,
NikkoHi Delta3,
The issue you’re having is different from dwainpipe, I see this error in the web console:
Access to font from origin has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is present on the requested resource.Please refer to the solution in this thread: https://kriesi.at/documentation/enfold/icon/#icons-are-showing-as-rectangular-boxes-
Best regards,
NikkoHi dwainpipe,
No worries. As far as I know, there’s none apart from those 2 sites mentioned.
Best regards,
NikkoHi cbradley,
Can you try adding this code at the bottom of your child theme’s functions.php:
function my_custom_merged_files_unique_id( $uniqid, $file_type, $data, $enqueued, $file_group_name, $conditions ) { return ''; } add_filter( 'avf_merged_files_unique_id', 'my_custom_merged_files_unique_id', 10, 6 );Best regards,
NikkoHi Vadim,
We’re glad to hear that :)
I have included a link for 3.7.1 in case you need some comparison for the tweaks you made.Best regards,
NikkoJuly 11, 2020 at 8:17 am in reply to: Unable to Edit Page on Website (Permanent Loading Screen) #1229570Hi acelam714,
I have added this code in your child theme’s functions.php:
function builder_set_debug() { return 'debug'; } add_action( 'avia_builder_mode', 'builder_set_debug' );This results to showing the shortcodes being and can be used to retrieve content.
I tried to same code on a new post I saved as draft (link in private content) and it works properly.
However, when trying to modify Vancouver Adventure Guide even if it’s just emptying the content it results to a critical error:There has been a critical error on your website. Please check your site admin email inbox for instructions.I’m not sure what’s causing this but you can enable wordpress debugging and look for error logs and maybe find the real cause of the issue since it’s hard to debug at this point.
Best regards,
NikkoHey idaandersenlang,
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 Matt,
We’re glad to hear that :)
It may be due to caching or host/server had slight issues at that moment.
Thanks for using Enfold and have a great day!Best regards,
NikkoJuly 11, 2020 at 5:38 am in reply to: Unable to Edit Page on Website (Permanent Loading Screen) #1229549Hey acelam714,
Can you give us the login link as well?
Best regards,
NikkoHi Playsystem,
You should be able to create a new thread at the bottom of this page: https://kriesi.at/support/forum/enfold/
Best regards,
NikkoHi Simone,
I have tried the login access but I’m getting:
ERROR: Incorrect Username or PasswordBest regards,
NikkoHi SimonePols,
It’s still the same, see screenshot in private content.
I have tried copying and pasting and typing it manually but it didn’t work.Best regards,
NikkoJuly 11, 2020 at 4:52 am in reply to: Portfolio Grid Shortcode Inside "Tabs Section" Not Working as Expected #1229525Hi Albert,
I see, thanks for the video.
I have set it back to Same height for all tabs and in your Quick CSS, I have added this CSS code:#top .av-layout-tab { vertical-align: top !important; }Best regards,
NikkoHi Chris,
Can you give us a link to your site? so we can try to inspect it.
You can post it in Private Content.Best regards,
NikkoHi loumirak11,
Thanks for understanding and thanks for using Enfold. :)
Have a great day!Best regards,
NikkoJuly 9, 2020 at 1:56 pm in reply to: Text logo with added image beside text – image ends up UNDER logo text #1229165Hi CharlieTh,
We’re glad to hear that :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi blaircomm1,
We’re glad that you found the solution. :)
Let us know if you need further assistance.Best regards,
NikkoHey smakarate,
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 Karin,
This seems to be a duplicate post from your other post.
I’ll be closing this thread and answer you on the other thread. :)Best regards,
Nikko -
AuthorPosts
