Viewing 30 results - 18,421 through 18,450 (of 244,621 total)
  • Author
    Search Results
  • CSenvato
    Participant

    Hi Kriesi,
    Thank you for the wonderfull Enfold theme. I seem to be running in a small problem and I hope you know how to solve it.
    When I duplicate a post or a page some seemingly random css is added to the duplicated post or page.
    For example: <style type=”text/css” data-created_by=”avia_inline_auto” id=”style-css-av-l4cjvby6-69b2950d17734fd42506394564f6b87c”>
    Is it possible to delete these css snippets, or maybe even better, to prevent these css snippets from being added to the posts and pages?
    Kind regards,
    Rob van Heijst
    Clever Strategy

    #1399985

    In reply to: Layout der Links

    Hi,
    Thanks for the link to your page, currently I see you have a plugin wpo-minify active so it is minifying your css so I can’t see exactly where this rule is coming from that is preventing your link from showing the text-decoration underline, but from the classes I believe it’s from the WordPress Block Editor:

    #top a:where(:not(.wp-element-button)) {
        text-decoration: none;
    }

    To override this css please try this css in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    #top #main .content a:where(:not(.wp-element-button)) {
        text-decoration: underline;
    }

    After applying the css, please clear your browser and minify plugin cache and check.
    The expected results:
    Enfold_Support_506.jpeg

    Best regards,
    Mike

    #1399983
    Denis Blum
    Guest

    Hallo,

    ich habe das Theme ENFOLD für einen Kunden im Einsatz und habe aktuell das Phänomen, dass nach Installation von WP-Optimize einige Seiten bei Öffnen eine großen leeren, weißen Bereich unter dem Slider anzeigen und diese Lücke erst beim Runterscrollen verschwindet.

    Hier zu sehen:
    https://www.xn--jtte-0ra.de/angebot/

    Leider war es mir nicht möglich einen neuen Eintrag im Support-Forum zu erstellen.

    #1399975

    In reply to: Demos

    Hi,
    Glad we were able to help, I followed these steps. 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

    #1399965

    Hi

    It’s the Enfold child theme. Has it been updated? Perhaps the one I use is old.

    The site is a dev, but is about to go live, I’ll create a new one for you and forward the details shortly.

    Thanks, Silvio

    #1399946

    In reply to: remove spacing between

    Hi,

    Thank you for the update.

    Looks like the style of the blog has changed since we last checked. For the current blog style or layout, you can use this css code.

    .template-blog .post_delimiter {
        margin: 0;
        padding: 0;
        clear: both;
    }
    

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    #1399940

    Hi,

    Thank you for the update.

    The color of the mobile menu overlay is now set to #303d4e. Is this the correct color? Please make sure to purge the cache, or temporarily disable the Enfold > Performance > File Compression settings, then hard refresh the page.

    Best regards,
    Ismael

    #1399936

    Hey obimedia2,

    Thank you for the inquiry.

    The mobile/burger menu should close automatically the active menu item is clicked, unless the submenu items are set set to be always visible. Did you set the submenu items to be always visible in the Enfold > Main Menu > Burger/Mobile Menu > Menu Icon Submenu Items settings?

    Best regards,
    Ismael

    Hi M-Graphics24,

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

    Best regards,
    Nikko

    Hi navindesigns,

    Thanks for providing us with the staging site and admin credentials.
    For some reason “jQuery is not defined” is showing in the web console when Gravity Forms is enabled on your end, I tried to compare it with my enfold install but could not replicate the same issue.
    It is working properly now after I have added this code in wp-config.php:

    define('CONCATENATE_SCRIPTS', false);

    Best regards,
    Nikko

    Hi Sean,

    You will need a child theme for this, if you don’t have one yet, please download it and find instructions here: https://kriesi.at/documentation/enfold/child-theme/ then do the following steps:
    1. Add this code in the functions.php of your child theme (if you already have a child theme, just add this if this function if it is not yet added to the child theme):

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
    
      return $paths;
    }

    2. Add this as well in the functions.php of the child theme:

    function get_the_term_list_mod( $post_id, $taxonomy, $before = '', $sep = '', $after = '' ) {
    	$terms = get_the_terms( $post_id, $taxonomy );
    
    	if ( is_wp_error( $terms ) ) {
    		return $terms;
    	}
    
    	if ( empty( $terms ) ) {
    		return false;
    	}
    
    	$links = array();
    
    	foreach ( $terms as $term ) {
    		$link = get_term_link( $term, $taxonomy );
    		if ( is_wp_error( $link ) ) {
    			return $link;
    		}
    		
    		$links[] = '<a href="' . esc_url( $link ) . '" class="' . $taxonomy . '" rel="tag">' . $term->name . '</a>';
    	}
    	
    	$term_links = apply_filters( "term_links-{$taxonomy}", $links );
    
    
    	return $before . implode( $sep, $term_links ) . $after;
    }

    3. Add a new folder to the child theme and call it shortcodes

    4. Copy postslider folder (from the parent theme) wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/ to the newly created shortcodes folder.

    5. Edit wp-content/enfold-child/shortcodes/postslider/postslider.php (line 969)

    $cats .= get_the_term_list( $the_id, $taxonomy, '', ', ', '' ) . ' ';

    replace it with:

    $cats .= get_the_term_list_mod( $the_id, $taxonomy, '', ', ', '' ) . ' ';

    Hope this helps.

    For further information on how to Add or Override Elements in Avia Layout Builder, please check our documentation: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    Best regards,
    Nikko

    #1399928

    Hi satucker,

    Can you try to modify enfold/framework/php/widgets/widget-classes/class-avia-newsbox.php (line 121):

    $additional_loop = new WP_Query( "cat={$cat}&posts_per_page={$count}" );

    replace it with:

    $additional_loop = new WP_Query( "cat={$cat}&posts_per_page={$count}&order=ASC" );

    Hope it helps.

    Best regards,
    Nikko

    #1399924

    Topic: Theme Update

    in forum Enfold
    Angeladlh
    Participant

    Hi,
    I recently added my Envato private token to the Theme Update section of my website. The following message is displayed “We checked the token on 2023/03/01 05:37 and we were able to connect to Envato…”. It also stated that it could access my purchase information”.

    The issue is that the following message is also displayed:
    “Theme Updates: No Updates available. You are running the latest version! (4.7.6.4). Your PHP version: 7.4.33”.

    According to the Enfold Changelog, the current version is 5.4.1 (Feb. 2023). So, why isn’t my website updating to the most recent version of Enfold?
    Thank you,
    Angela

    #1399919

    Hi Silvio,

    I apologize if the changes I made caused any issues, can you setup another staging site? I thought the link you gave was a staging site because of its subdomain name.
    The screencast I posted shows it works properly when I have disabled the caching plugin and have switched to the parent theme, which suggests that the problem is most likely on the child theme.
    I have also tested this on my enfold install however I could not reproduce the same issue, maybe your child theme has some js scripts/code that maybe interferring with the load more button function.

    Best regards,
    Nikko

    #1399917
    darrenwise
    Participant

    Hi Team,

    I hope you are well.

    Unfortunately, I have been unable to do an Enfold update for a while because it changes my headings’ font sizes and colours.

    I’ve tried twice now and needed to return to a backup version before the update.

    Any help would be greatly appreciated.

    Warmest regards,

    Darren

    #1399914

    In reply to: Change CSS for submenu

    Hi Illingco,

    You’re welcome :)
    Thanks for using Enfold and have a great day!

    Best regards,
    Nikko

    #1399913

    Hi Sandy Hughes,

    Thanks for contacting us!
    Since you are still using Enfold 4.4.1, you will most likely need to use this plugin to update the theme: https://www.envato.com/lp/market-plugin/
    Please generate a personal token and see further instructions here: https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token
    Make sure that you are logged in using your ThemeForest account that has already purchased Enfold theme when you generate a personal token.
    Also, make sure to have a backup first before doing any updates.

    Best regards,
    Nikko

    #1399912

    Hi troupdim,

    Yes, since your main domain and subdomain seems to serve the same purpose.
    Please refer to this thread for further information: https://kriesi.at/support/topic/enfold-multisite-2/

    Best regards,
    Nikko

    #1399911

    In reply to: No updates

    Hi Akif,

    Thanks for contacting us!
    Yes, you will need to purchase the theme in order to update it.
    And since it has been years since it was last updated you will most likely need to use this plugin to update the theme: https://www.envato.com/lp/market-plugin/
    To register the theme and be able to update it via Theme Options, please see the instructions here: https://kriesi.at/documentation/enfold/theme-registration/#how-to-generate-a-envato-personal-token
    Just make sure to have a backup first before doing any updates.

    Best regards,
    Nikko

    #1399908
    Sandy Hughes
    Guest

    We are currently using an Enfold theme version 4.4.1 It is no longer functioning well for our website and I have been advised that we need to upgrade to the most current version. I will need help updating our version as I’m not an IT expert. NPASsingers.org is hosted by GoDaddy.

    #1399906

    Hi beenee,

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

    Best regards,
    Nikko

    #1399905

    Hi So Evolve,

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

    Best regards,
    Nikko

    #1399903

    Hi netzfuchs,

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

    Best regards,
    Nikko

    #1399899
    troupdim
    Participant

    Hello, I have buy a regular license for my domain name, using enfold travel demo. I want to create an another website on subdomain name (ex. new.mydomain.gr) using other enfold demo. Can I use the same license for the subdomain and then replace this to main domain name?

    #1399897

    Topic: No updates

    Akif
    Guest

    Hello,

    I hired a designer through Upwork who made a design for our website, which i paid him generously for. I found out that the design is a customized Enfold theme. Years later i’m trying to update this theme, but it’s not updating after i entered the envato private token key. It means i now need to purchase the theme to update the design which was made by this designer?

    triton4
    Participant

    On theme import, the LayerSlider “Enfold – most beautiful theme ever” contains only 2 slides vs. the 3 slides shown on the Enfold Kries demo page at https://kriesi.at/themes/enfold/. In short, 1 slide is missing from the 3-slide Layerslider demo displayed on the Themeforest Enfold web page. How do I import the 3-slide version of the Layer Slider demo?

    #1399875

    Hi,
    Glad Yigit 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

    Hi,
    Glad Rikard 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

    Hi,
    Glad to hear that you have this sorted out, 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

    #1399865

    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

Viewing 30 results - 18,421 through 18,450 (of 244,621 total)