Viewing 30 results - 2,371 through 2,400 (of 244,161 total)
  • Author
    Search Results
  • #1483919

    In reply to: adding a background

    Hey melanie308,

    Did you try setting it as the background under Enfold->General Styling->Main Content?

    Best regards,
    Rikard

    #1483916

    Hi

    We wanted to use the Enfold Child Instagram widget on some websites.

    Unfortunately on all websites there is the same error:

    Errors found:
    Instagram hat Fehler zurückgegeben: 429 (= Too Many Requests).

    What could be the problem?

    Thanks very much.

    Best regards
    Mike

    #1483913

    In reply to: Enfold Demo Theme

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

    Thank you very much for your reply!
    Unfortunately, this doesn’t solve the issue I’m facing.

    I have already seen the documentation at https://kriesi.at/documentation/enfold/custom-layout-and-dynamic-content/, but it requires selecting the custom layout manually in the Advanced Layout Builder (ALB) for each post.

    What I’m looking for is a way to apply a saved custom layout automatically to newly created posts in a custom post type – in my case, “anzeige”.
    These posts are not created in the backend but via a frontend form that fills ACF fields. So I would like the layout to be applied automatically without manual selection in the backend.

    Is there a way to assign a specific ALB layout automatically to posts, either via code or some internal Enfold function?

    Thank you again for your help!

    rechner1
    Participant

    Hello,
    I installed the demo-page “Enfold One-Page Restaurant Demo” and started to edit it.

    Is it a known issue that after clicking the button to jump to the anchor and then manually scrolling back up, the button still shows the loading animation?

    Also the Demo-Pages are showing these problem.
    You can find my page here.

    I already had various other themes installed on my development environment. Is this related?
    At the moment all other plugins are deleted.

    Thank you
    Tobi

    • This topic was modified 9 months, 2 weeks ago by rechner1.
    34oldcat29
    Participant

    Pretty sure there’s a newer version. I already purchased a new license (7.1). I activated the license in the theme options. So why would it tell me this is the newest version?

    Additional info;
    Currently on PHP: 7.4
    Currently on WordPress: 6.7.2
    Currently on Enfold: 4.2.6

    Can’t update php as Enfold 4.2.6 won’t run 8.2 php
    Tried to update wordpress but Installation failed
    Received the following error message…
    Could not copy file.: wordpress/xmlrpc.php
    Installation failed.

    Not sure what else to try. Thoughts?

    Hi,

    Thank you for the update.

    You can add this code in the Enfold > General Styling > Quick CSS field to adjust the position of the onsale or promo badge.

    #top .onsale {
        top: -29px;
        right: 8px;
        left: auto;
    }

    View post on imgur.com

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    Do you have a staging or development site where we can test it with version 6.8.0? The notices above should not affect loading speed, and wp.editPost is not directly included in the theme, so this is likely related to a plugin or a custom script.

    Regarding the unclosed select tag, please edit the enfold/config-templatebuilder/avia-template-builder/php/base-classes/class-modal-elements.php file, look for this code around line 901:

    			$filter .=		'</select>';
    

    Replace it with:

    			$filter .=		'</select>';
    

    Best regards,
    Ismael

    Raj
    Guest

    Hi, we have purchased Enfold theme from long time ago.

    We need access to a clean copy of an old version of the theme please, as we need to do a code diff check.

    The version we need is 4.8.7.1

    I have supplied our license key from Envato in private content

    #1483887
    Faatje79
    Participant

    I can’t edit the special header. When I try I get a blank field. And I can’t type anything anywhere. In addition, I have the latest version of enfold.

    #1483886

    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

    i think there is now a filter
    try:

    add_filter('avf_show_tags_meta', 'show_tags_on_blog_posts');
    function show_tags_on_blog_posts(){
    	return true;
    }
    
    function new_avf_postslider_posts_meta_data_show(){
    	return true;
    }
    add_filter('avf_postslider_posts_meta_data_show', 'new_avf_postslider_posts_meta_data_show');

    last one is for grid style.
    See: https://kriesi.at/documentation/enfold/blog-post/#display-post-tags-on-blog-posts-element

    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

    #1483871

    Hey tebitron,

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

    @media only screen and (max-width: 767px) {
    #socket .sub_menu_socket li {
      float: none;
      line-height: 20px;
    }
    }

    Best regards,
    Rikard

    #1483868

    Hey rixi,

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

    @media only screen and (max-width: 1400px) {
      nav.main_menu {
        display: block !important;
      }
      #avia-menu .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }
    

    Best regards,
    Rikard

    #1483853

    See first if this is a nearby solution: https://enfold.webers-webdesign.de/

    ok – here is a quick solution (with AI support).
    Enfold has the hook where you can insert something directly after the body opening tag. So put this to your child-theme functions.php:

    
    function ava_custom_jalousie_loader() {
    ?>
    <script type="text/javascript">
    	window.addEventListener('load', function() {
    		document.body.classList.add('loaded');
    	});
    </script>
    <?php
    }
    add_action( 'wp_footer', 'ava_custom_jalousie_loader' );
    
    add_action('ava_after_body_opening_tag', function() {
      echo '<div id="preloader-wrapper">';
        echo '<div id="jalousie-preloader">';
    		echo '<div class="jalousie-slat"></div>';
    		echo '<div class="jalousie-slat"></div>';
    		echo '<div class="jalousie-slat"></div>';
    		echo '<div class="jalousie-slat"></div>';
    		echo '<div class="jalousie-slat"></div>';
    		echo '<div class="jalousie-slat"></div>';
    		echo '<div class="jalousie-slat"></div>';
    		echo '<div class="jalousie-slat"></div>';
        echo '</div>';
      echo '</div>';
    });

    if you want less amount of jalousie-slat – remove some divs

    now the css:

    #preloader-wrapper {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 99999;
        perspective: 1000px;
        overflow: hidden;
    }
    
    #jalousie-preloader {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        background-color: transparent;
        transform-style: preserve-3d;
    }
    
    .jalousie-slat {
        width: 140%;
        position: relative;
        left: -20%;
        flex-grow: 1;
        background-color: #222222;  /* === change to your color you like === */
        transform-origin: 50% 50%;
        transition: transform 0.8s linear, opacity 0.4s linear 0.4s; 
        backface-visibility: hidden;
        transform: rotateX(0deg);
        opacity: 1;
        box-sizing: border-box;
    }
    
    body.loaded #preloader-wrapper {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s 0.8s, visibility 0.3s 0.8s;
    }
    
    body.loaded #jalousie-preloader .jalousie-slat {
        transform: rotateX(90deg) scaleY(0.01);
        opacity: 0;
    }

    Hi,

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

    Best regards,
    Rikard

    #1483851

    In reply to: Audio player problems?

    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

    Mat
    Participant

    Hi,

    when we activate the YITH WooCommerce Product Add-Ons & Extra Options plugin on our Shop, there is a problem on the rest of our pages. For example the Home-Page:

    – Missing Portfolio Items under “ENTDECKEN SIE UNSER UMFASSENDES PORTFOLIO”
    – Missing counting up numbers
    – Inside the Shop – no little arrows on the amount of products

    Is this a problem of ENFOLD?

    Regards
    Mat

    Launebaer1981
    Participant

    Hallo,

    ich arbeite aktuell an einer WordPress-Seite, bei der über ein eigenes Frontend-Formular (nicht das WP-Backend) neue Beiträge eines Custom Post Types (“anzeige”) erstellt werden. Dabei werden verschiedene ACF-Felder ausgefüllt (Titel, Text, Ort etc.).

    Ich habe auf eurer Doku-Seite

    gelesen, wie man gespeicherte Custom Layouts (Templates) im ALB verwendet. Dort beschreibt ihr, dass man im Backend manuell ein gespeichertes Layout (z. B. „Anzeigen-Ansicht“) über das Dropdown auswählt – das funktioniert bei mir auch.

    Mein Ziel ist jedoch, dass dieses gespeicherte Layout automatisch beim Erstellen des Beitrags gesetzt wird, damit ich nicht jedes Mal manuell im Backend eingreifen muss. Denn die Nutzer selbst haben keinen Backend-Zugang – alles läuft im Frontend.

    Ich habe bereits beim Speichern folgende Felder gesetzt:

    update_post_meta($post_id, '_avia_custom_template', 305); // ID des gespeicherten Templates
    update_post_meta($post_id, '_aviaLayoutBuilder_active', 'active');
    wp_update_post([ 'ID' => $post_id, 'post_content' => '' ]);

    Aber leider wird das gespeicherte ALB-Template im Frontend nicht angewendet. Es sieht so aus, als ob Enfold das Template ignoriert, solange man es nicht einmal manuell im Backend aufruft und speichert.

    Gibt es eine Möglichkeit, dies automatisiert zu lösen? Also:

    Ein gespeichertes ALB-Template automatisch einem Beitrag zuweisen

    Und dass dieses Template dann auch im Frontend korrekt angezeigt wird, ohne manuellen Zwischenschritt im Backend

    Ich wäre sehr dankbar über einen Hinweis oder Workaround!

    Viele Grüße,
    Sven

    Hi Ismael,

    The search element inclusion in the header worked out great. The full width menu shadow however didn’t turned out right, please see the shared link once more. The CSS snippet basically made the page full with (which indeed push the shadow from edge to edge. However I do would like to keep the container 1340px width and not force the website full screen.

    If you zoom out on the page you can see that the full width effect is kept. Is there a way to keep the website within the 1340px container but do keep the menu bar background effect (top shadow) full width? I will drop another Enfold project where this is the case (no custom header however)

    Kind Regards,
    S

    I did some further testing. Things I learned:

  • WordPress 6.81, our settings & Enfold = slow loading backend
  • WordPress 6.80, our settings & Enfold = normal loading backend
  • Complete fresh install of WordPress (6.80 & 6.81) and Enfold, no modifications = normal loading backend
  • BUT…

    Every combination threw the same:

    1) Warning: a select tag was parsed within another select tag and was converted into
    2) That the live version has wp.editPost…. deprecated warnings /select see pictures below:

    fresh install without modifications
    live environment

    Does this have something to do with the issue?

    • This reply was modified 9 months, 2 weeks ago by ekf_wp.
#1483830

thanks but the problem is still here.
I don’t use any plugin for the slider! it’s content slider Enfold…

so i made my galleries with enfold galery without foogallery plugin and it seems to be ok.

Now i just want to ajust two things :
– How can i adjust size and position of the arrows of content slider?
-how can i desactivate the effect that the light box do on hover?

i

  • This reply was modified 9 months, 2 weeks ago by spray.
#1483816

you did not really specify what effect is meant. The effect of the letters on top and how they appear?
those heading letter animations will all work with splitting the words to single chars – and then animate each char.
This little snippet tries to show you how you can split an enfold heading ( give a trigger class to the heading element f.e.: single-letters) and put this to your child-theme functions.php:

function words_to_single_chars(){
?>
<script>
  var textWrapper = document.querySelectorAll('.single-letters .av-special-heading-tag'), i;
  for (i = 0; i < textWrapper.length; ++i) {
    textWrapper[i].innerHTML = textWrapper[i].textContent.replace(/\S/g, "<span class='char'>$&</span>");   
  } 
</script>
<?php
}
add_action('wp_footer', 'words_to_single_chars');

see a working example on : https://webers-testseite.de/impressum/
if you look to the DOM you will see each letter inside a span tag like: <span class="char">I</span>

___________
;)
by the way: This is a very interesting site, which certainly comes without layout modules and requires a high level of programming knowledge. The web design studio responsible for it: https://dgrees.studio can certainly offer you a similar design for your site, but probably not quite at the cost of a selfmade framework solution.

#1483812

Hey mickhb,

Thank you for the inquiry.

You can use either the Masonry or Masonry Gallery element. Make sure to upload tall portrait images. If you choose the Masonry element, you can control the item sizes by adding the tags “portrait” or “landscape” to your portfolio items. Make sure to set the Styling > Masonry Settings > Size Settings to Perfect Manual Masonry.

Please check the links below for more info:

https://kriesi.at/themes/enfold/shortcodes/masonry-gallery/
https://kriesi.at/documentation/enfold/masonry/

Best regards,
Ismael

KatConnolly
Participant

Have a site where the hamburger menu on iPhone does not drop down, and the header image does not appear on mobile. Note that the Google Chroms emulator works OK, but the real phone doesn’t.

I’m not sure if the issue still happens on Android, as I don’t have anything to test it on.

Site is on Enfold 7.1, WordPress 6.8.1

Site and Login credentials provided for moderators

Lissasan
Participant

I’ve tried the solutions for this from previous questions, but so far I’ve had no luck. I’m trying to use a different font from what is set for default headings (Open Sans) in Enfold for just one easy slider caption. When I change the default font in the theme settings, I can see the font I want (Tangerine). When set the default back to Open Sans and use the CSS override in Quick CSS, I see the font switch to serif, but it will not resolve Tangerine. What am I doing wrong?

I inspected the caption in Chrome and copied the selector, so the CSS is
#faithtop > div > ul > li > div > div > div > div > div > div > h2.avia-caption-title {
font-family: “Tangerine”, serif !important; font-size: 4em !important; color: #2d5c88 !important;
}

#1483787
webdesignphx
Participant

Hi Enfold Team,
I have only a few authors in my clients website, but sometimes one of the 300 medical professionals writes an article.
So it looks kind of strange if it says by twice. please see the link blelow.

April 10, 2018/by District Medical Group
by Hollie Costello & Toni Eberhardt

https://www.dmgaz.org/make-a-wish-arizona-and-district-medical-group-wishes/

I think it would be fine if it just said:

April 10, 2018/ District Medical Group
by Hollie Costello & Toni Eberhardt
so basically get rid if the first “by” how do I do this?

Hi Rikard,

Thanks for the suggestion. However, this issue cannot be caused by an outdated theme or an unregistered licence.

The Enfold theme on this site is already running the latest version (7.1), and the theme licence is definitely registered and active. I double-checked both of these points before reaching out.

Could there be another potential cause we should investigate?

Best regards,
Kasia Forest

#1483781

Hey KatjaL,

The update to 7.1 has to be done manually from the version you are running, please refer to my replies in this thread: https://kriesi.at/support/topic/enfold-4-5-theme-update-update-failed-download-failed-a-valid-url-was-not-pro/#post-1021541
You can either update manually via FTP: https://kriesi.at/documentation/enfold/how-to-install-enfold-theme/#theme-update, or upload the theme as if it was new under Appearance->Themes->Add New Theme.
If that doesn’t work then please try to delete the whole theme folder, then replace it with the new version. Make sure that you have backups of the site before starting updating.
Also please read this after you have updated: https://kriesi.at/documentation/enfold/theme-registration/

Best regards,
Rikard

Viewing 30 results - 2,371 through 2,400 (of 244,161 total)