Viewing 30 results - 11,311 through 11,340 (of 244,522 total)
  • Author
    Search Results
  • #1427986

    Hi,
    Glad Nikko was able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1427984

    In reply to: menu font too small

    Hi,
    Please add a color section to the page and set it’s min height to 100%:
    Enfold_Support_4088.jpeg
    then add the other page elements such as your contact form inside of it and try again.
    Please note that we ask that each thread stays on a specific topic, this helps other users find solutions based on the opening subject line quicker. For further questions please open a new thread
    Thank you for your patience and understanding and for using Enfold.

    Best regards,
    Mike

    Hi,
    We will not receive any emails at that address, Please note that using the contact form is not appropriate for support questions, please log in to the support forum and open a new thread if you need further assistance.
    If you are unable to login to the support forum because you don’t have a activate support contract, please try going to your Theme Forest account and renew your support and then log in to the support forum and open a new thread.

    Thank you for your patience and understanding and for using Enfold.

    Best regards,
    Mike

    #1427981

    Hi,
    Thanks for the login, when I add a new post and add a image:
    Enfold_Support_4079.jpeg
    and select an image the default size is large:
    Enfold_Support_4082.jpeg
    I tested this a few times, I also tested the image element in the ALB:
    Enfold_Support_4084.jpeg
    and it also worked, I know that you said that you are not using the ALB and only the Classic Editor, so I was just testing.
    Enfold_Support_4086.jpeg
    so try using the Add Media button on a new post:
    Enfold_Support_4079.jpeg

    Best regards,
    Mike

    #1427974

    Topic: Error message

    in forum Enfold
    Martin
    Participant

    Hello,
    I have error messages in the header on two pages that I don’t know where they come from:

    All updates have been made, WordPress is up to date, Enfold too. What can you do?
    Best regards,
    Martin

    In german:
    Hallo,
    auf zwei Seiten habe ich Fehlermeldungen im Header, bei denen ich nicht weiß, woher die kommen:

    Alle Updates sind gemacht, WordPress auf dem neuesten Stand, Enfold auch. Was kann man tuen?

    viele Grüße,
    Martin

    #1427969

    In reply to: Slider next to logo

    Thank you for the information.
    I have been trying to get the widget next to the logo but it looks like the example css doesn’t work. I have tried the css from https://kriesi.at/documentation/enfold/example-of-logo-left-menu-center-widget-right/
    When using the css the widget stays as top element instead of showing it next to the logo.
    We want to have the logo on the left, the menu below and the widget next to the logo.
    I hope you can help use to get the widget on the right place

    yes – that might help
    ps: if you like to have an animated svg waves – download: Waves
    because your divider is not standard enfold divider – i guess you know how to install custom svg dividers.

    see: https://weber.tips/

    • This reply was modified 2 years, 3 months ago by Guenni007.

    Hi Eleina,

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

    .page-id-65 #section-container-width .container {
        z-index: 120;
    }

    Hope it helps.

    Best regards,
    Nikko

    #1427941

    Hi Matt,

    You would need to use a child theme to achieve it.
    If you aren’t using a child theme yet, you can get it here: https://kriesi.at/documentation/enfold/child-theme/

    Once you have installed the child theme, create includes folder inside it, then copy loop-index.php from Enfold (parent theme) and paste it inside includes.
    Open loop-index.php and find this code (line 488-509):

    /**
     * Allow to change theme options setting for certain posts
     *
     * @since 4.8.8
     * @param boolean $show_author_meta
     * @param string $context
     * @return boolean
     */
    if( true === apply_filters( 'avf_show_author_meta', 'blog-meta-author' == avia_get_option( 'blog-meta-author' ), 'loop-index' ) )
    {
        $meta_author  = '<span class="blog-author minor-meta">' . __( 'by', 'avia_framework' ) . ' ';
        $meta_author .=		'<span class="entry-author-link" ' . avia_markup_helper( array( 'context' => 'author_name', 'echo' => false ) ) . '>';
        $meta_author .=			'<span class="author">';
        $meta_author .=				'<span class="fn">';
        $meta_author .=					get_the_author_posts_link();
        $meta_author .=				'</span>';
        $meta_author .=			'</span>';
        $meta_author .=		'</span>';
        $meta_author .= '</span>';
    
        $meta_info['author'] = $meta_author;
    }

    Cut the code and paste it on line 378 (put the code below this code):

    $close_header = '';

    Hope it helps.

    Best regards,
    Nikko

    #1427933

    Hi Ita,

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

    #top #landing__filmrol--parentcontainer .container {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    Hope it helps.

    Best regards,
    Nikko

    #1427932

    Hi nebuddlho,

    Yes, it’s possible but you would need to use a child theme.
    If you aren’t using a child theme yet, you can get it here: https://kriesi.at/documentation/enfold/child-theme/

    Once you have installed the child theme, create includes folder inside it, then copy loop-author.php from Enfold (parent theme) and paste it inside includes.
    Then find this code in line 72:

    $content_output  =  '<div class="entry-content" ' . avia_markup_helper( array( 'context' => 'entry_content', 'echo' => false ) ) . '>';

    above it, add this code:

    if ( has_post_thumbnail($the_id) ) {
    	echo '<div class="author-featured-image">';
    	echo get_the_post_thumbnail( $the_id, 'large' ); 
    	echo '</div>';
    }

    Hope it helps.

    Best regards,
    Nikko

    • This reply was modified 2 years, 3 months ago by Nikko.
    #1427931

    Hi northorie,

    Can you try adding this CSS code in Enfold > General Styling > Quick CSS:

    @media only screen and (min-width:768px) and (max-width:1180px) {
      #top #main .av-lpvadf1r-9094a82807ca6b00b3712e5ee699c058 > .flex_column {
        top: auto;
        bottom: -126px;
      }
    }

    Best regards,
    Nikko

    #1427930

    Hi mm-g,

    Please try to add this code in your functions.php:

    add_theme_support( 'show_advanced_custom_element_options' );

    For further information please check our documentation: https://kriesi.at/documentation/enfold/custom-element-templates/#custom-elements-advanced-options

    Best regards,
    Nikko

    #1427920

    In reply to: Team member content

    Hey sharynt3,
    Please see this tutorial for making the team member element a popup.
    In this thread Guenni007 offers another solution using a image, text & button to simulate a team member popup and has a working example that you can try.

    Best regards,
    Mike

    Yossi Yerushalmi
    Participant

    I have two different sites on the same hosting account with the same IP address, both with the ENFOLD template.

    One very old site – https://www.kav-acher.com/
    Recently I had some problems with it and had to restore it from a backup I found (not the perfect backup – but better than nothing) I used the All-in-One WP Migration plugin.

    The second website is completely new – https://www.alinacademy.co.il/
    I had a design on it that I started to build, because the actions were a little limited, every time I switched to the mode – the layout editor ‘advanced’ this error appeared.
    ————————————
    Error establishing a database connection
    This either means that the username and password information in your wp-config.php file is incorrect or that contact with the database server at localhost could not be established. This could mean your host’s database server is down.

    Are you sure you have the correct username and password?
    Are you sure you have typed the correct hostname?
    Are you sure the database server is running?
    If you are unsure what these terms mean you should probably contact your host. If you still need help you can always visit the WordPress support forums.
    ————————————
    So I deleted the site and the existing database and tried to install everything from scratch, but the error still appeared.

    After they connected the domain of the new site to me and I installed WordPress and the template, I saw more and more errors like this and now on both sites.

    I consulted with the storage company and we did not find a solution for this.
    Is it related to the template or rights registration?

    #1427911
    joandjaxx
    Participant

    HI, I would I stylize the Calendly “Book now” text pop up on my homepage to look like an enfold styled button? Right now the text is kinda plane….

    • This topic was modified 2 years, 3 months ago by joandjaxx.
    #1427902
    NicomIT
    Participant

    Is there a way to add breakpoints to the Enfold Gallery feature (https://kriesi.at/themes/enfold/shortcodes/gallery/). The Masonry Gallery does a nice job resizing itself as the screen/device gets smaller. But the regular Gallery doesn’t do that. I have a 5 column Gallery set-up and since all 5 columns do not change/reposition for smaller devices, the images displayed in them are very hard to see. Thanks.

    #1427896
    s_mann
    Participant

    Hello there,

    Unfortunately after the latest theme-update I get the following error message and a blank screen:

    Fatal error: Cannot redeclare wp_make_content_images_responsive() (previously declared in /home/.sites/423/site7353545/web/wp-includes/deprecated.php:3997) in /home/.sites/423/site7353545/web/wp-includes/media.php on line 1350 Fatal error: Uncaught Error: Call to a member function set() on null in /home/.sites/423/site7353545/web/wp-includes/l10n.php:806 Stack trace: #0 /home/.sites/423/site7353545/web/wp-includes/l10n.php(900): load_textdomain(‘default’, ‘/home/.sites/42…’, ‘de_DE’) #1 /home/.sites/423/site7353545/web/wp-includes/class-wp-fatal-error-handler.php(47): load_default_textdomain() #2 [internal function]: WP_Fatal_Error_Handler->handle() #3 {main} thrown in /home/.sites/423/site7353545/web/wp-includes/l10n.php on line 806

    Can you help me there?

    Best regards,
    R

    #1427890

    Hi,

    Great, I’m glad that you found a solution and thanks for the update. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1427888

    Prinzipiell geht es variable Schriftschnitte zu laden! Dabei solltest du um den Font-Manager von Enfold zu nutzen, jedoch beide getrennt hochladen.
    Wenn du dir allerdings den Browser Support ansiehst: https://caniuse.com/variable-fonts nur die IE’s und Opera mini nicht mitmachen.

    Ich würde mich also eventuell nur für den Upload des variablen fonts entscheiden. Im Zweifel werden dann bei älteren Browsern die Fall-Back Fonts geladen ( helvetica etc. ).

    Wenn Du mir sagst, um welche schrift es geht , dann könnte ich genauere Anweisungen geben.

    PS: aus Performance Gründen überlege dir – ob du wirklich alle Schriftschnitte benötigst. Wenn du also von vornherein weißt, das du für Headings nur die 700er benötigst, und bei dem body text nur 300, 400, 700 – dann würde ich nicht alle hochladen und eventuell dann doch die statischen Fonts hochladen.
    Zusammengenommen könnten die dann vom zu ladenden Dateivolumen geringer sein, als der variable font.

    #1427883
    lkerbyson1
    Participant

    I just purchased a new license for Enfold and the shortcode function that allows us to insert other shortcodes from other plugins is not working.

    In the case I have, the US Map Shortcode is not rendering.
    I also noticed that the shortcodes for the theme itself are not working.

    #1427880

    Hi lkerbyson1,

    This thread is 4 years old, so we’ll close it for now. Please open a new thread and include WordPress login details in private.

    Best regards,
    Rikard

    #1427877

    Hi Mike,

    Thank you for the response.

    I followed your suggestion and tried creating a completely new post instead of updating an existing one, and the problem persists.

    As you mentioned, when I added the code snippet to my Enfold ‘functions.php’ file, I do correctly see the changes reflected on the ‘options.php’ page. See private content attachment.

    I even tried using the same WP Code plugin you used to create a PHP snippet, and the problem persists. The attachment display settings remain stuck at ‘medium’ instead of ‘large’. See private content attachment.

    Happy to share access to the website if it helps troubleshoot.

    • This reply was modified 2 years, 3 months ago by kevinraposo7.
    • This reply was modified 2 years, 3 months ago by kevinraposo7.
    #1427868

    Hey charger70,

    Please try the following in Quick CSS under Enfold->General Styling:

    .home .avia-slideshow .avia-caption-title {
      color: #fff !important;
    }

    Best regards,
    Rikard

    #1427856

    Hi,
    Glad to hear, I see that you have a Classic Editor plugin and you have the Classic Editor set in the theme at Enfold Theme Options ▸ Select Your Editor ▸ Use WP Classic Editor, I recommend removing the plugin as it is not needed.
    Perhaps you could try disabling your caching plugin and enable the Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression options for a few a week and see if your error occurs again, if not then try switching them back for a week and see if the error occurs then. It may be a good way to see if there is a setting in your caching plugin is the cause of if it is something else. Do you have any server side caching enabled also?

    *update* I just noticed your Quick CSS custom css, you have added HTML comments to the css, it is probably the issue:
    Enfold_Support_4073.jpeg
    these are wrong and could cause errors, please change all of these to css comments like this:
    Enfold_Support_4075.jpeg

    Best regards,
    Mike

    #1427854
    mm-g
    Participant

    Hi
    I can’t seem to get button row working in Custom Elements. Tried to create from start, and also tried to make a Custom Element from existing button row, it’s wanna make one button? Can’t add any or nothing. Tried one several enfold installation with samme output.

    #1427851

    Hi,
    Thank you for the link to your site, please note the PHP error message in your dashboard, your PHP version is out of date, this should be updated on your server, if you don’t know how to do this plase ask your webhost to help. The WordPress PHP minimum is v7.4 but v8 is also a good choice.
    Enfold_Support_4071.jpeg

    Best regards,
    Mike

    #1427850

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

    #1427849

    In reply to: menu font too small

    Hey ausgesonnen,
    Please make the font size adjustment in the theme setting at Enfold Theme Options ▸ Advanced Styling and if you don’t see the Main Menu Links already with a font size, then use the drop down to choose it and add the size you wish.
    There is also a Main Menu sublevel Links option if you also want to change those sizes too.

    Best regards,
    Mike

    #1427848

    Hi Rikard,

    This moring the error occured again, but i had to make an update on a page on the site.
    And when I update a page, or just save the settings in the enfold menu, everything on the site is back as normal.
    As soon as the error is back, i’ll give you a sign!

    Thanks!
    greets,
    Paul

Viewing 30 results - 11,311 through 11,340 (of 244,522 total)