Viewing 30 results - 2,191 through 2,220 (of 244,437 total)
  • Author
    Search Results
  • #1485888

    In reply to: MySql version

    Hi,

    Great, I’m glad to hear that you got things working. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1485887
    ellkam
    Participant

    Hi Kreisi team,

    I’ve tried everything: perplexity, forums, trial and error: I’m not getting anywhere. I have been embedding annual reports as posts on the homepage of the http://www.kms-kleve.de website for a few years now. This year, the post image of the 2024 annual report is suddenly cut off at the top and bottom.
    I have tried the following so far:

    – Duplicating the 2022 annual report in the backend and simply replacing the images (in the same format and size)
    – Tried various settings in the Enfold blog settings
    – In WordPress, set the image sizes for import in height to ‘0’
    – Deleted image and reloaded
    – Deleted and reloaded the entire post
    – Deleted, deleted, deleted caches
    – Post recreated with Avia
    – Post recreated with the standard editor

    The image of the annual report 2024 is not displayed in the desired size – as with the other annual reports. The image should be displayed in full size like the others. What is the error? Thank you for your help!

    Best regards, Lutz

    tomfon87
    Participant

    Hi everyone,
    I’m an amateur WordPress user and currently working with the Enfold theme.
    I’m having trouble with the automatic import, so I would really appreciate a step-by-step guide to manually import the “Construction” demo.

    Could you please help me with the following:

    Which files I need to download and where to find them

    How and where to upload them (via FTP or WordPress backend)

    Any settings I should adjust to make the demo work properly

    Thank you very much in advance for your support! 🙏
    Tommaso

    #1485870

    Hey Darren Dittrich,

    Thank you for the inquiry.

    And one more: is this v4.0 Enfold compatible with the latest WP 6.8.1 and PHP7.4?

    The latest version of the theme is 7.1.1, so the version currently installed is a bit outdated. You may need to download the latest version from your ThemeForest account and update the theme manually via FTP.

    https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    It would also be good if we could register a support account, and possibly have this purchase tranferred to (Email address hidden if logged out) since the person who bought this plugin is no longer associated with this site.

    Unfortunately, we don’t handle any sales-related inquiries in the forum. You will need to forward this issue to the ThemeForest team.

    Let us know if you need more info.

    Best regards,
    Ismael

    #1485861

    Hi,
    Glad Ismael could 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

    #1485860
    Darren Dittrich
    Guest

    Hi, thanks for your help many years ago (see my email support from (Email address hidden if logged out) )!
    We’ve updated this old client to v4.0 of Enfold, which has helped with PHP errors. But we’re still getting this error on every Save or Save Settings button:

    [Back Popup] : Saving didnt work!
    Please reload the page and try again

    It would also be good if we could register a support account, and possibly have this purchase tranferred to (Email address hidden if logged out) since the person who bought this plugin is no longer associated with this site.

    And one more: is this v4.0 Enfold compatible with the latest WP 6.8.1 and PHP7.4? We’d like to move this to a more modern hosting platform. Thanks!

    #1485850
    tonyiatridis
    Participant

    I find the side arrows for the navigation are working in reverse order here:

    https://anthonyi34.sg-host.com/portfolio-item/boulder-garden/

    I don;t need them to loop but te order is reveresd.

    I see this in my chid themes functions php now, how can i get the order to be correct? thanks:

    <?php

    /*
    * Add your own functions here. You can also copy some of the theme functions into this file.
    * WordPress will use those functions instead of the original functions then.
    */

    add_filter( ‘avia_post_nav_entries’, ‘enfold_customization_postnav’, 10, 2);
    function enfold_customization_postnav($entries, $settings)
    {
    if($settings[‘type’] == ‘portfolio’)
    {
    $settings[‘same_category’] = true;

    $entries[‘prev’] = get_previous_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]);
    $entries[‘next’] = get_next_post($settings[‘same_category’], $settings[‘excluded_terms’], $settings[‘taxonomy’]);
    }

    return $entries;
    }

    function remove_title_attr(){
    ?>
    <script>
    jQuery(window).load(function(){
    jQuery(‘#wrap_all a’).removeAttr(‘title’);
    jQuery(‘#wrap_all img’).removeAttr(‘title’);
    });
    </script>
    <?php
    }
    add_action(‘wp_footer’, ‘remove_title_attr’);

    #1485836

    In reply to: Burger Menu

    see here an example page ( only with a color-section on that page that represents the footer-page )

    https://webers-web.info/navigation/

    for that menu item in the main nav i gave a custom-class to that menu-item: pseudoburger and used the label :
    <span class="av-hamburger custom-burger av-hamburger--spin"><span class="av-hamburger-box"><span class="av-hamburger-inner"></span></span></span> – this is exactly the usage of the enfold burger icon – plus a custom-class (custom-burger).

    the color-section got the ID: pseudoburger. (#pseudoburger)
    ( or if you use the footer-page for that – then you had to adjust all to that ID : #footer-page )

    i placed now a snipptet to my child-theme functions.php:

    function a_pseudo_burger_menu(){
    ?>
    <script type="text/javascript">
    	(function($) {
    		$('body').on('click', '.pseudoburger > a',  function() {
    			$('#pseudoburger').toggleClass('visible-page');
    			$('.custom-burger').toggleClass('is-active');
    		});
    	})(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'a_pseudo_burger_menu');

    and on quick css:

    #top #pseudoburger {
      position: fixed;
      top: var(--enfold-header-height);
      left: 0;
      z-index: 50;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1s ease;
    }
    
    #top #pseudoburger.visible-page {
      opacity: 1;
      visibility: visible;
      transition: opacity 1s ease;
    }
    
    #top .header_color .custom-burger.is-active .av-hamburger-inner, 
    #top .header_color .custom-burger.is-active .av-hamburger-inner::before, 
    #top .header_color .custom-burger.is-active .av-hamburger-inner::after {
      background-color: darkblue !important;
    }
    #1485835

    In reply to: Burger Menu

    to get a “footer-page” with dynamically feed menues – you can use the menu shortcode :

    
    function custom_named_menu_shortcode( $atts ) {
        extract( shortcode_atts( array(
            'name'  => '', // Default to an empty menu name
            'class' => 'custom-menu', // Default CSS class
            'depth' => 0, // Default depth (0 for unlimited)
            'title' => '', // New: Default to an empty title
            'title_tag' => 'h2', // New: Default title HTML tag
            'title_class' => 'menu-title', // New: Default title CSS class
        ), $atts ) );
    
        $output = ''; // Initialize output variable
    
        // If a title is provided, add it to the output
        if ( ! empty( $title ) ) {
            $output .= '<' . esc_attr( $title_tag ) . ' class="' . esc_attr( $title_class ) . '">' . esc_html( $title ) . '</' . esc_attr( $title_tag ) . '>';
        }
    
        if ( ! empty( $name ) ) {
            $output .= wp_nav_menu( array(
                'menu'            => $name,
                'menu_class'      => $class,
                'container'       => 'nav', // You can change this to 'div', false, etc.
                'container_class' => $class . '-container',
                'echo'            => false, // Important: returns the menu HTML instead of printing it
                'depth'           => $depth,
            ) );
        }
        return $output; // Return the accumulated output
    }
    add_shortcode( 'named_menu', 'custom_named_menu_shortcode' );

    it is used like this:
    [named_menu name="your-menu-name" class="my-custom-menu" depth="2" title="Our Main Menu"]

    then you can setup your layout with codeblock elements – each of them represents a menu ( or different shortcode – f.e. social-media )

    but for that i wouldn’t use the enfold burger icon – instead i would place a custom Button – perhaps a fixed button to toggle a class to hide/show this page.

    #1485828

    In reply to: Burger Menu

    Look to your example page of thedive.com – its footer is exactly the burger content ;)
    so maybe styling a footer-page and redeclare the hamburger icon with a different event that brings that footer to fullscreen and to fixed position ( left: 0 ; top: var(–enfold-header-height) ) is a possible solution. ( no automatic menü – but that way you like to have it)

    #1485814

    Hi,

    Thanks for the update. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1485807

    Hey Soulshakin,

    Please refer to thisw: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1485802

    In reply to: New license required?

    Hey Alex,

    You can still use the same license. If you want to receive updates on the backend, then please refer to this: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1485801

    In reply to: New license reqired?

    Hey Alex,

    You can still use the same license. If you want to receive updates on the backend, then please refer to this: https://kriesi.at/documentation/enfold/theme-registration/

    Best regards,
    Rikard

    #1485797
    Alex
    Guest

    Hi, I moved my webpage to a new webhosting and decided to rebuild the page from scratch for a cleaner setup. It is the identical project though, the other installation has been deleted. Unfortunately, my enfold-license doesn’t work anymore. Is there a chance I can still use the license?

    Thanks in advance!

    #1485796
    Alex
    Participant

    Hi, I moved my webpage to a new webhosting and decided to rebuild the page from scratch for a cleaner setup. It is the identical project though, the other installation has been deleted. Unfortunately, my enfold-license doesn’t work anymore. Is there a chance I can still use the license?

    Thanks in advance!

    #1485792

    Topic: MySql version

    in forum Enfold
    gustococco
    Participant

    Hi! I m not be able to install the Enfold theme. Are any special server parameters required? What mysql version is required?

    #1485789

    Hey agus,

    Thank you for the inquiry.

    There is no element that exactly matches the layout of the page in the private field, but you might be able to recreate it with some modifications using the Magazine or Blog Posts element set to Grid Layout. Please check the links below for reference.

    https://kriesi.at/themes/enfold-2017/elements/magazine/
    https://kriesi.at/themes/enfold-2017/elements/blog-posts/

    Best regards,
    Ismael

    #1485787
    agus
    Guest

    Hi,

    just check your enfold demos, and when i check the blog sections i dont find layout that i want to use.

    is it possible to have blog layout like the link below or i need to hire a freelance to customize the enfold theme?

    many thanks

    #1485786

    Hey jkos,

    Thank you for the inquiry.

    You can configure the Main Menu > Main Menu Links in the Enfold > Advanced Styling panel. Please check the screenshot below.

    View post on imgur.com

    Best regards,
    Ismael

    #1485777

    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

    #1485772

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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

    #1485769

    In reply to: Content width

    have you refreshed all cachings (maybe you got a caching/optimization plugin) – did you “Delete Old CSS And JS Files?” on Enfold – Performance?

    Next Hint:
    These settings are nearly the last that are loaded – even after quick css – so if you got a mistake on quick css ( missing closing brackets , komma instead of semicolon etc. they will be not loaded. So check your quick css.

    If you got a link to that page – we can check what happens.

    #1485760

    Hi,
    Glad Guenni007 could help, thank you Guenni007, 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

    #1485755

    Hi,

    Thanks for the update, we’ll close this thread for now then. Please open a new thread if you should have any further questions or problems.

    Best regards,
    Rikard

    #1485753

    Hey John,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .page-id-4128 #after_section_1 {
    	 padding-top: 50px;
    }

    adjust to suit.

    Best regards,
    Mike

    #1485751

    Hey Ernst Grubbauer,
    Thank you for the login, please note that your version 4.1.2 is not compatible with PHP 8+, and it can not be updated in the theme, due to how Envato (Theme Forest) changed from a API key to a Token. Unfortunately this occurs when a old “developer” buys the theme in their Envato account and doesn’t create an account for the customer. Envato will not transfer the license nor issue a new license.
    Due to our exclusive contract with Envato we can not issue licenses.
    Your customer should create an account with Envato and purchase a new license The upside to this is that by purchasing a new license you will also get 6 months of support on our forum to help with any issues. I recommend upgrading to a full year of support for just a little more, as the cost of the theme and a full year of support costs the same as a single hour of support from many developers. 2022-12-04_001.jpeg.
    To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New
    WordPress_Appearance_Themes_Add-Themes_Add-New.jpg
    after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue
    Installing_theme_from_uploaded_file_This_theme_is_already_installed.jpg
    then you will see the Theme updated successfully message.
    Theme_updated_successfully.jpg
    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.
    After you purchase a new license you can register for the support forum and post your questions.

    Best regards,
    Mike

    #1485747

    Hi,
    Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #main .avia-gallery.av-mb6m8z6a-b9f99ac9fd31fe48d94c453aabd891f1 .avia-gallery-thumb a {
        width: 50%;
    }

    Then disable Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression
    and enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files
    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    Ernst Grubbauer
    Guest

    Ich habe vor einigen Jahren die Betreuung der Website su-hartpurgstall.at übernommen. Zum Käufer und ursprünglichen Administrator von Enfold zur Website, Sonja Winkelbauer, gibt es keinen Kontakt mehr. Die Website ist bei Easyname registriert. Nun soll ein Upgrade der PHP-Version auf 8.x erfolgen. Dazu wird die aktuelle Version des Themes benötigt, laut Beschreibung https://kriesi.at/support/topic/fatal-error-unparenthesized-a-b-c-d-e/ !
    Wo und wie erhalte ich die neue Version?
    Müssen wir eine neue Lizenz erwerben?
    Für das Kriesi-Supportteam wurde ein temporärer WordPress-User angelegt.
    MfG Ernst Grubbauer
    Rückmeldungen an (Email address hidden if logged out) – +43 664 4051545

    bemodesign
    Participant

    I own a web design company and do Enfold theme sites. Do you guys have freelancer connections I could hire to create and update Enfold themed sites?

    thanks

Viewing 30 results - 2,191 through 2,220 (of 244,437 total)