Forum Replies Created

Viewing 30 posts - 9,211 through 9,240 (of 25,536 total)
  • Author
    Posts
  • Hi Albert,

    We’re glad that we could help :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Accordeon won't save #1229904

    Hey Bert,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. 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 ).
    5. Click ” Submit “.
    6. 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,
    Nikko

    in reply to: Site breaks after deactivating ubermenu #1229901

    Hi Marco,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Enfold – Responsive Multi-Purpose Theme #1229900

    Hi 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,
    Nikko

    in reply to: WordPress caught an error with your theme, Enfold Child #1229898

    Hi 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,
    Nikko

    in reply to: Arrows on tab section #1229888

    Hi 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,
    Nikko

    in reply to: Gravity Forms with Enfold #1229875

    Hi 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=2e01a1a40413a6b89c8c8ceda7f480a3

    Best regards,
    Nikko

    in reply to: How to display "last modified date" #1229872

    Hi 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,
    Nikko

    in reply to: Content won´t load in my editor #1229870

    Hi 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,
    Nikko

    in reply to: YouTube videos not playing #1229853

    Hi smakarate,

    We’re glad to hear that :)
    Thanks for using Ennfold and have a great day!

    Best regards,
    Nikko

    Hi 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,
    Nikko

    in reply to: There has been a critical error on your website. #1229851

    Hi Vadim,

    You’re welcome :)
    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Enfold Iconsets Available? #1229850

    Hi 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,
    Nikko

    in reply to: Enfold Iconsets Available? #1229849

    Hi dwainpipe,

    No worries. As far as I know, there’s none apart from those 2 sites mentioned.

    Best regards,
    Nikko

    in reply to: 503 Error caused by the Enfold theme #1229848

    Hi 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,
    Nikko

    in reply to: There has been a critical error on your website. #1229571

    Hi 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,
    Nikko

    Hi 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,
    Nikko

    in reply to: Content won´t load in my editor #1229553

    Hey idaandersenlang,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. 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 ).
    5. Click ” Submit “.
    6. 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,
    Nikko

    in reply to: Enfold Installation Error #1229551

    Hi 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,
    Nikko

    Hey acelam714,

    Can you give us the login link as well?

    Best regards,
    Nikko

    in reply to: Problem woocommerce structure #1229533

    Hi Playsystem,

    You should be able to create a new thread at the bottom of this page: https://kriesi.at/support/forum/enfold/

    Best regards,
    Nikko

    in reply to: Gravity Forms with Enfold #1229530

    Hi Simone,

    I have tried the login access but I’m getting:

    ERROR: Incorrect Username or Password

    Best regards,
    Nikko

    in reply to: How to display "last modified date" #1229528

    Hi 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,
    Nikko

    Hi 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,
    Nikko

    in reply to: 503 Error caused by the Enfold theme #1229519

    Hi 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,
    Nikko

    in reply to: Add Builder to custom field #1229273

    Hi loumirak11,

    Thanks for understanding and thanks for using Enfold. :)
    Have a great day!

    Best regards,
    Nikko

    Hi CharlieTh,

    We’re glad to hear that :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Creating aa download link in a sidebar #1229163

    Hi blaircomm1,

    We’re glad that you found the solution. :)
    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: YouTube videos not playing #1229162

    Hey smakarate,

    Please post us your login credentials (in the “private data” field), so we can take a look at your backend.

    1. Install and activate ” Temporary Login Without Password “.
    2. Go to ” Users > Temporary Logins ” on the left-side menu.
    3. Click ” Create New “.
    4. 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 ).
    5. Click ” Submit “.
    6. 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,
    Nikko

    in reply to: Create a widget area in the header #1229158

    Hey 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

Viewing 30 posts - 9,211 through 9,240 (of 25,536 total)