Forum Replies Created

Viewing 30 posts - 9,661 through 9,690 (of 25,536 total)
  • Author
    Posts
  • in reply to: Tab section icon click #1212382

    Hi BNA1956,

    You can use buttons and just make sure that in Styling, Button Position is set to Align Left, at the backend the button shows on top of another but in the frontend it should show in one line. You can also use Partner Logo Element but you’ll need to use images since there’s no icon option for it.

    Best regards,
    Nikko

    Hi PressWizards.com,

    Thanks for giving us admin access.
    I used Health Check & Troubleshooting plugin so activating/deactivating plugins won’t affect other users.
    Here’s what I found out:
    – Enfold Theme + All plugins active = Customizer works fine
    – Child Theme + All plugins except Hummingbird = Customizer works fine
    – Child Theme + Hummingbird = Customizer not working
    I guess it’s safe to say that there’s a code in your child theme, please try to backup the child theme, then empty functions.php in of the child theme and remove the framework folder.
    Then try to add those functions in the child theme one by one, and finally add the framework folder, test if which one is causing the issue.

    Best regards,
    Nikko

    in reply to: Mobile Menu on the iPad #1212370

    Hi ginnywills,

    I tried to check on it but I don’t really see any difference in Chrome or Safari.
    Can you try to give us a screenshot of how it looks on chrome and safari on your end?

    Best regards,
    Nikko

    in reply to: WMPL gives fatal error #1212369

    Hi Erik,

    I tried the link and login credentials you gave but it shows this:

    Onbekende gebruikersnaam. Opnieuw controleren of probeer je e-mailadres.

    Best regards,
    Nikko

    in reply to: Missing Tags in Classic Editor's "Text" Tab #1212367

    Hi SyberKnight,

    I apologize for misunderstanding.

    With regards to wpautop, Enfold does use it, if you wish to remove that from the Text Block you can go to enfold > config-templatebuilder > avia-shortcodes > textblock.php and find this code (line 267, Enfold 4.7.4):

    $output .=		"<div class='avia_textblock {$custom_class} {$av_font_classes}' {$extra_styling} {$markup_text}>" . ShortcodeHelper::avia_apply_autop( ShortcodeHelper::avia_remove_autop( $content ) ) . '</div>';

    replace it with:

    <pre><code>$output .=		"<div class='avia_textblock {$custom_class} {$av_font_classes}' {$extra_styling} {$markup_text}>" . ShortcodeHelper::avia_remove_autop( $content ) . '</div>';

    to make it permanent, you can check out: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    This static function ShortcodeHelper::avia_apply_autop() is the one that’s used in multiple files/elements, though I would not suggest modifying it since it will just be replaced during theme update.

    ideally, i would love to see this Text tab be a full functioning html editor, complete with appropriate coloring & spacing & line numbers etc. and, yeah, to show ALL the used html from the Visual tab – and that we can go back’n’forth between the two tabs without any code or styling disappearing!!!
    The Text Block in Enfold does use Classic Editor so all those formats showing on top of the classic editor will also be similar when using Text Block.
    Basically Visual mode is like a Microsoft Word while Text mode is like a Code Editor, it won’t show any colors and some options/format won’t be available but switching from Visual to Text and the other way around shouldn’t cause any code or styles removed, most likely what happens is some code (Text) shows as a color in Visual mode.

    Best regards,
    Nikko

    in reply to: Theme options dissapear in admin #1212356

    Hi innovacionagil,

    Can you give us FTP access as well? so we can inspect further.

    Best regards,
    Nikko

    in reply to: Importing Problems #1212354

    Hi amepro,

    I apologize for the delay.
    If you switch back to the main theme Enfold, do you get the correct settings back?
    Also can you give us a link to your site? so we can inspect the things you mentioned.

    Best regards,
    Nikko

    in reply to: Change size of sidebar #1212217

    Hi Susanne,

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

    Best regards,
    Nikko

    in reply to: formatting tables #1212213

    Hi lordgara3,

    Please try adding this CSS code in Quick CSS, located in Enfold > General Styling:

    #top .tablepress .row-2 td {
        background-color: #f8f8f8;
        color: #666;
    }

    Best regards,
    Nikko

    in reply to: New Theme crashes site #1212212

    Hi daves1997,

    Can you try to check error_log file? (via FTP or Cpanel, located usually at public_html or the root folder of your site)
    If you can’t find anything please try to enable WordPress Debugging when updating the theme: https://wordpress.org/support/article/debugging-in-wordpress/#toc-heading
    That should produce debug.log file where it logs fatal errors, please post the errors here so we can at least try to give accurate solutions.

    Best regards,
    Nikko

    in reply to: Breadcrumbs #1212208

    Hi daves1997,

    I see, I’m glad to hear that.
    Please let us know if you still need further assistance.

    Best regards,
    Nikko

    Hi Colin,

    Please follow the instructions on this article: https://themeisle.com/blog/wordpress-staging-site/
    Hope it helps :)

    Best regards,
    Nikko

    in reply to: Gap between grid row cells #1212203

    Hi Roger,

    Please add this CSS code in Quick CSS, located in Enfold > General Styling:

    #top a.av-screen-reader-only {
        display: none;
    }
    

    Best regards,
    Nikko

    in reply to: Remove link on featured image #1212201

    Hi unicaweb,

    Did the code you mentioned work? I could not see your site as it shows this on my end:

    This site can’t be reached
    www.mylabrador.it took too long to respond.

    If that still does not work, most likely the issue is caching (it’s fetching old css).
    To fix this, disable CSS file merging and compression in Enfold > Performance.
    And clear cache if you have a caching plugin.

    Best regards,
    Nikko

    Hi Svenja,

    Increasing memory limit would require access to FTP or Cpanel.
    I would suggest you do it yourself so you know where to put it in your future projects but we can also add it as well, we’ll just need atleast an FTP access.

    Best regards,
    Nikko

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

    Hi jknetdesign,

    You’re welcome.
    I think the simplest way, without a plugin is to use a Text Block/Code Block and a text link.
    Using a Text Mode (not Visual) in the Text Block, paste this code and replace IMAGE_URL with the correct image url:

    <a href="IMAGE_URL" class="noLightbox" download>Download</a>

    That should be it, clicking it will automatically download the image.

    Best regards,
    Nikko

    in reply to: Tab section icon click #1211975

    Hey BNA1956,

    If you’re referring to the tab menu then it isn’t possible but if it’s inside the tab content then it’s possible.

    Best regards,
    Nikko

    in reply to: Mega menu with custom style and background color. #1211974

    Hi Vadivel,

    It can be modified in Enfold > Advanced Styling > select anything under Main Menu and click on Edit Element button.
    It should show up additional settings which you can change fonts, colors, etc.

    Best regards,
    Nikko

    in reply to: Tab section scroll down #1211973

    Hi BNA1956,

    Unfortunately, that’s not possible since it only affects tab sections, though if inside the content of a tab section you link a button or text to the ID of the Color Section below it, it should work.

    Best regards,
    Nikko

    in reply to: How to change the big-preview image #1211972

    Hi Vadivel,

    Big-preview image in Single Posts aren’t cropped and uses full image size.
    Please try to upload an image with the size you want to use.

    Best regards,
    Nikko

    in reply to: Hosting maxed out – dynamic_avia folder #1211971

    Hey ruffidea,

    Please delete the content of that folder and follow the recommendation of our dev in this thread: https://kriesi.at/support/topic/dynamic_avia-making-way-too-many-calls/#post-1182734
    Hope it helps.

    Best regards,
    Nikko

    in reply to: table boarder –  special only on the top #1211970

    Hi Stefan,

    Please try to add this CSS code in Quick CSS, located in Enfold > General Styling:

    .home #av_section_3 .av-equal-height-column-flextable .av_one_fourth {
        border-top: 8px solid saddlebrown;
    }

    Just change theh color and thickness :)

    Best regards,
    Nikko

    in reply to: Dashboard / Back end not working #1211969

    Hi ruffidea,

    Can you give us FTP access as well? so we can inspect further on why the styles isn’t loading.

    Best regards,
    Nikko

    in reply to: Breadcrumbs #1211968

    Hi daves1997,

    Go to Enfold > Header > Header Layout (tab) > Header Title and Breadcrumbs set to Display title and breadcrumbs or Display only breadcrumbs
    Hope this helps.

    Best regards,
    Nikko

    in reply to: New Theme crashes site #1211967

    Hi daves1997,

    What version of Enfold are you currently using?

    Best regards,
    Nikko

    Hi colinredbond,

    If you are doing a major update the best thing to do (after creating a backup) is to have a staging site where you try to make updates there first to see if there are no issues before doing it on your live site.
    However, since you’ll be updating PHP versions as well it might not be a good option.
    Please update it in this order (I’m pretty sure that HTTPS, Enfold 4.7.4 and PHP 7.3 works fine since I’m using that setup, please don’t forget to backup):
    1.) Update Enfold theme to the latest version (since latest version of Enfold works properly in both PHP 5.6 and 7.3) however automatic update isn’t possible since envato has already stopped using API and now uses tokens. So do the following instead:
    – Switch to Twentytwenty or any WordPress default theme
    – Download Enfold from themeforest and unzip the zip file
    – Open the unpacked folder produced by unzipping the file and you should find enfold.zip file
    – Use enfold.zip to upload in Appearance > Themes.
    – Activate enfold or enfold child theme
    2.) Update PHP from 5.6 to 7.3
    3.) Update to HTTPS
    If there are any issues, please provide us with both admin and FTP acccess.

    Best regards,
    Nikko

    in reply to: Editable page template #1211962

    Hi Guillaume,

    I’m glad that Rikard could help you out :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    in reply to: Warning Avia template builder #1211960

    Hey Marco,

    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: Remove link on featured image #1211959

    Hey Stefano,

    Please try to use this CSS code instead:

    .single .big-preview a {
        pointer-events: none;
    }

    Hope it helps.

    Best regards,
    Nikko

    in reply to: Hide Portfolio Grid Title/Content #1211957

    Hey Mario,

    Can you give us a link to the page mentioned? so we can inspect further.

    Best regards,
    Nikko

Viewing 30 posts - 9,661 through 9,690 (of 25,536 total)