Forum Replies Created

Viewing 30 posts - 7,291 through 7,320 (of 25,536 total)
  • Author
    Posts
  • in reply to: Active menu item color in submenu #1263899

    Hi muvolab,

    I see, this was the code causing that behavior:

    /*colore voce menu attiva */
    .current-menu-item a .avia-menu-text {
    color: #e6a913 !important;
    }

    I corrected it with this code:

    /*colore voce menu attiva */
    .current-menu-item > a .avia-menu-text {
    color: #e6a913 !important;
    }

    Best regards,
    Nikko

    in reply to: Please help – Update 4.4.1 to current version #1263893

    Hi TEC-SAS,

    Thanks for giving us admin access.
    This is now fixed :)

    Best regards,
    Nikko

    in reply to: Very Newbie Question About Updates #1263537

    Hi MissLS,

    With regards to updates, if the update goes smoothly (without any interruptions) most likely you won’t have any issues however since there’s still a little chance that something might go wrong, so I suggest you do a Site Backup first and also Backup Theme Settings, so in case you’ll encounter problems you can revert to it.
    Updates won’t wipe your data since they are safely stored in the database.
    As for child themes, you can use it if you need to tweak some files, so it doesn’t get lost (refers to theme files) during the theme update but if you aren’t tweaking the theme files then there’s no need for it.

    Best regards,
    Nikko

    in reply to: Avia builder does not load #1263536

    Hi wanetie,

    I checked on your site and it’s already using the latest version and the pagebuilder works properly.
    The homepage and few other pages I’ve checked have no issues, is there a specific page where it does not work?
    I have posted a screenshot of the homepage on my end (link in private content).
    Your browser might still be fetching old js files, try to clear the browser cache or (if in chrome) open in incognito mode.
    Hope it helps.

    Best regards,
    Nikko

    Hey marlonvanwyhe,

    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: Fatal error appears when updating theme #1263533

    Hi Quimera123,

    Thanks for providing us both admin and FTP access.
    We have fixed the issue, please review your site.
    Let us know if you need further assistance. :)

    Best regards,
    Nikko

    Hi sensufaktur,

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

    Best regards,
    Nikko

    in reply to: Changing breadcrumb blog to own page #1263529

    Hi Erwin,

    I apologize for the delayed response.
    Thanks for the screenshot, that’s actually a post (category) meta.
    You can use this hook to redirect it to the page you want instead of the category page and put it in your child theme’s functions.php:

    function category_template_redirect() {
        if ( is_category( 'blog' ) ) {
            $url = site_url( '/blog' );
            wp_safe_redirect( $url, 301 );
            exit;
        } elseif ( is_category( 'cases' ) ) {
    	$url = site_url( '/cases' );
            wp_safe_redirect( $url, 301 );
            exit;
        }
    }
    
    add_action( 'template_redirect', 'category_template_redirect' );

    The other workaround is use a redirect plugin.

    Best regards,
    Nikko

    in reply to: How to put a field from a post in post content element? #1263519

    Hi jeiceta,

    I apologize I wasn’t able to respond before the link expired.
    I was able to see those fields reflect in the frontend and the location is correct (line 764 in postslider.php):

    $output .= $thumbnail ? "<a href='{$link}' data-rel='slide-" . avia_post_slider::$slide . "' class='slide-image' title='{$image_link_title}'>{$thumbnail}</a>" : '';

    If it’s on top of the image then place it before the code and concatenate it in the $output variable and if its below then put it after.

    Best regards,
    Nikko

    in reply to: css not registering on post page #1263515

    Hi bobfurgo,

    It seems you have already fixed it by adding fixed on the background.
    If it’s not fixed, can you give us a screenshot?
    Let us know if you need further assistance.

    Best regards,
    Nikko

    in reply to: Active menu item color in submenu #1263514

    Hi muvolab,

    Yes, it’s only for two states. Try adding this CSS code in Quick CSS, just change the color:

    #header #header_main .avia-menu .sub-menu .current-menu-item > a .avia-menu-text {
      color: blue;
    }

    Also I changed the links under Shop from custom links to category links (which will have get the current-menu-item class when the page is active).

    Best regards,
    Nikko

    in reply to: Add icon next to shopping cart icon #1263498

    Hi fcp,

    Yes, you should be able to use it and just add some code to add the wishlist icon.

    Best regards,
    Nikko

    in reply to: can not edit with avia layout builder #1263497

    Hi marlonvanwyhe,

    You can create a new thread here: https://kriesi.at/support/forum/enfold/#new-topic-0
    On that thread please give us admin access to your site, just post it in private content.

    Regards,
    Nikko

    in reply to: can not edit with avia layout builder #1263496

    Hi natashainbox2016,

    I don’t think you will need to rebuild your site again, but just to be safe, always have a backup first.

    Best regards,
    Nikko

    in reply to: Page numbering in "Magazine" sections not working properly #1263252

    Hey MichaelNickel,

    Can you try the solution posted on this thread: https://kriesi.at/support/topic/the-grid-with-products-does-not-work-pagination/#post-1254673 ?
    This seems to affect all paginations. Hope it helps.

    Best regards,
    Nikko

    in reply to: CHILD THEME does not support my General Styling #1263249

    Hi phoenixdivers-kohlanta,

    You can either create a new account which you can delete later or give us access to the existing account and just change password afterwards.

    Best regards,
    Nikko

    in reply to: headline higher #1263247

    Hi Talker77,

    Please try adding display:inline-block to this code:

    #top .flex_column .schongewussthalb .av-special-heading-tag {
        position: relative;
        top: 10px;
        background-color: white;
        padding: 0 30px 0 30px !important;
        margin: 0 auto 0 auto !important;
    }

    it should look like this:

    #top .flex_column .schongewussthalb .av-special-heading-tag {
        position: relative;
        top: 10px;
        background-color: white;
        padding: 0 30px 0 30px !important;
        margin: 0 auto 0 auto !important;
        display: inline-block;
    }

    Best regards,
    Nikko

    in reply to: can not edit with avia layout builder #1263188

    Hey natashainbox2016,

    Thanks for giving us admin access.
    You’re still using Enfold 3.8.4, please update it to the latest version.
    Please backup your site first, then try to do the following steps:
    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.

    Best regards,
    Nikko

    in reply to: Can't edit. "Warning: A non-numeric value encountered" #1263186

    Hi Greatersun,

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

    Best regards,
    Nikko

    in reply to: Question for blog layout with enfold theme #1263185

    Hi Timo,

    Yes, it’s possible but it would need some CSS tweaks in order to achieve that and we could help with it.
    And for the first picture, I would say yes, we’ll try to help you with it.
    We’ll need request for admin access and FTP access for.
    Just post the credentials in private content.

    Best regards,
    Nikko

    in reply to: Active menu item color in submenu #1263181

    Hi muvolab,

    Thanks for giving us admin access.
    There are two reasons it’s not working, one is this CSS code in Quick CSS:

    /*Colore submenu*/
    .sub-menu a .avia-menu-text {
    font-weight:700 !important;
     color:#5a473c !important;
    }

    I removed the color property and just retained the font-weight to fix this.
    The second reason is you need to add Submenu links twice in Advanced Styling, one is its default state and the other is for the hover state.
    I added one for hover state (since you already added the default state) then I just used the black color, just change it to any color you want.

    Best regards,
    Nikko

    in reply to: portfolio pagination not working – portfolio entries #1263176

    Hi Cedric Esser,

    You’re welcome and thank you as well :)

    Best regards,
    Nikko

    in reply to: Woocommerce Layout Problem – tax & shipping information #1263171

    Hi Alex,

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

    Best regards,
    Nikko

    in reply to: Critical error with update #1263165

    Hi Yohanna,

    Thanks for giving us FTP access.
    The error is now fixed.
    Please review your site.

    Best regards,
    Nikko

    in reply to: font icons not visible #1263152

    Hi Supreetha,

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

    Best regards,
    Nikko

    in reply to: headline higher #1262925

    Hi Talker77,

    It looks good on my end, the only issue I see is the distance between the heading and the textblock, it looks balanced if this CSS code is added:

    #top .flex_column .schongewussthalb + .av_textblock_section {
        padding-top: 20px;
    }
    
    #top .flex_column .schongewussthalb + .av_textblock_section .avia_textblock > p:last-child {
        margin-bottom: 0;
    }

    Can you give us a screenshot on how it looks on your end?

    Best regards,
    Nikko

    in reply to: portfolio pagination not working – portfolio entries #1262919

    Hi felixl,

    We have already reported this to our devs and it will be fixed in the next release :)

    Best regards,
    Nikko

    in reply to: Menu Styling is broken #1262917

    Hi Saru82,

    You’re welcome, we’re just happy that we could help :)
    I have posted a link in private content showing a screenshot for it.

    Best regards,
    Nikko

    in reply to: headline higher #1262733

    Hi Talker77,

    Please try to remove the top padding for those columns and add this CSS code:

    #top .flex_column .schongewussthalb .av-special-heading-tag {
        position: relative;
        top: -20px;
    }

    Best regards,
    Nikko

    Hi Haarkunst-Trier,

    Can you tell us the version of Enfold that you are using?
    If it’s not the latest version, please backup your site and update it to the latest version.

    Best regards,
    Nikko

Viewing 30 posts - 7,291 through 7,320 (of 25,536 total)