Viewing 30 results - 2,221 through 2,250 (of 11,206 total)
  • Author
    Search Results
  • #1240368
    This reply has been marked as private.
    #1240309
    ZeMAgGmbH
    Participant

    Hi,
    we run WP 5.4.2 with Enfold 4.7.6.3 and the latest php Version 7.4. We did the update last week. The webside is still running, but there are serveral problems in the backend:
    – Posts: It s not possible to update Poste, the button doesn’t work
    – Dashboard, Customizer Site in WP: Both sides are not layouted in the typical WP backend appearance – CSS not loaded, just plain unstyled text
    Do you have a idea how we can fix this problems? Which PHP Version do you recomment?
    Best regards :)

    • This topic was modified 5 years, 6 months ago by ZeMAgGmbH.
    #1240261

    Topic: Header help please

    in forum Enfold
    smarta-brett
    Participant

    Hi

    I am working on this site

    the client wants a burger menu on desktop as well as phone
    I have used an Enfold menu for the Mobile version
    I have used a plug-in to create the custom burger menu you see on the left of the header

    I have used a secondary menu to create the BOOK NOW link at top right
    but Ideally I would like the header to look like this
    https://diamondbeachcabarita.com.au/wp/wp-content/uploads/2020/08/Screen-Shot-2020-08-24-at-2.05.01-pm2.png

    ie – create a button that links to the booking page
    (if possible toggle the book now button off for mobile)
    and
    move the image up closer to the logo
    I have tried using css { display: none; } for several things that I thought would move it up but so far I have had no luck

    I hope you can help me out

    meliniymelini
    Participant

    Hi, I tried to update my theme from 4.5.2 to latest, using the following steps:
    1. Verified token info — all ok;
    2. proceed to WP updates, and update theme —
    3. and it showed some error: Enfold: Download failed. Forbidden.

    After that, I went back to Enfold Menu, and it shows no link buttons or menu items anymore…. So I can’t verify again my token info or any settings…

    Ater reading this forum, tried to manually upload theme to overwrite, no luck again.

    SOLUTION: —
    1. Downloaded “WP only files”
    2. Go to to Appereance — Themes – Upload
    3. Upload new theme
    4. WP will ask you want to overwrite (yes — but have a backup done before)
    5. Done.

    • This topic was modified 5 years, 6 months ago by meliniymelini. Reason: SOLVED
    #1240083
    dbideaz
    Participant

    Hi guys,

    I have created a website using the enfold theme which supposed to look like http://www.sekta.co.za. My site is on http://www.primenet.co.za and I have the following issue:

    My vertical menu social icons are note matching the sekta.co.za positioning. I want my social media icons to be at the bottom of the menu(screen) and to stay like this when site is seen on different screen resolutions. At the moment on larger monitors the social icons move up and they don’t stay at the bottom. I have used the following CSS in order to get the current possitioning:

    .html_header_sidebar #top #header {
    width: 84px;
    height: 100%;
    }
    .html_header_left #main {
    margin-left: 84px;
    height: 100%;
    }
    li#menu-item-11{
    padding: 126px 3px 141px 3px;
    }

    I have created the social icons like buttons in the menu. Let me know what CSS I can use and how to get the desired look. Its also possible to use standard social media options in Enfold but If i can have the icons on new row under each other.

    #1239999

    Hey koonpete,
    Thank you for your question, you can edit the language files at \wp-content\themes\enfold\lang\ with Poedit to achieve this.
    So after you install Poedit open your language “.po” file and search for the phrase you wish to edit, then when you save a new “.mo” file will also be created. You will then need to upload both files via ftp to the location above.
    Or you add them to your child theme so the translations are saved for future updates.
    If you use the English language on your site you will have to take an extra step because there is no “en_US.po” or “en_US.mo” file, you will have to create it.
    So open the file enfold.pot with Poedit and click the button “create new translation” and choose the language “English”
    2020-08-22_175215.jpg
    then you can edit the phrases as explained above.
    2020-08-22_175412.jpg
    when you save your files be sure to name them “en_US.po” & “en_US.mo”
    2020-08-22_181031.jpg

    Best regards,
    Mike

    #1239827
    jaimemerz
    Participant

    Hi there,

    We’re trying to get some events set up in Google Analytics to track clicks. The code involves adding the following onclick= within the <a href string:

    Download Our Brochure

    The clicks we would like to track are buttons within the main nav and also buttons on the homepage and elsewhere within the site. How can we add this onclick= code when we’re using Enfold buttons and main nav links?

    #1239588

    This works for me in the child theme functions.php to keep the previous-next butons only in one specific portfolio category.
    Maybe it works for you too.

    // make previous-next buttons stay within the relevant portfolio category (multiple portfolios)
    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_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    		$entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	}
        return $entries;
    }

    Rob

    #1239576
    gabreu
    Participant

    Hi everyone,
    I have a custom function for the next and previous buttons that allows me to browse only with the same category on a specific page. This function is added to pages with a code block.
    I would like to be able to use this function only for the portfolio, but it is not working.
    I know that this is not related to Enfold, but if there is anyone who can help me, I will appreciate it.

    // Função prev-next dos portfolios
    add_shortcode( ‘prev’, ‘prev_shortcode’ );
    add_shortcode( ‘next’, ‘next_shortcode’ );
    function prev_shortcode() {
    global $post;
    $result = get_previous_post_link( ‘<div class=”nav-previous”>%link</div>’, __(‘<span class=”av-icon-char” style=”” aria-hidden=”true” data-av_icon=”” data-av_iconfont=”entypo-fontello” data-avia-icon-tooltip=”Anterior”></span>’, ‘prev-next’ ), true );
    return $result;
    }
    function next_shortcode() {
    global $post;
    $result = get_next_post_link( ‘<div class=”nav-next”>%link</div>’, __(‘<span class=”av-icon-char” style=”” aria-hidden=”true” data-av_icon=”” data-av_iconfont=”entypo-fontello” data-avia-icon-tooltip=”Seguinte”></span>’, ‘prev-next’ ), true );
    return $result;
    }

    Best regards

    #1239513

    I had same problem today (20-aug-’20)
    After updating 6 plugins and WordPress 5,5, the left menu was gone.
    Updating Enfold with Update button -> didn’t work, no action at all
    Updated Enfold via FTP (version 4.7.6) -> still NO left menu
    Deactivated severall plugins -> no result (still the problem)
    Using Chrome as browser in which the problem occurs.
    Opened via Mozilla Firefox -> MENU works.
    Opened in Chrome Incognito -> MENU works
    Opening in Chrome (normal) -> problem occurs.

    Pressed CTRL-F5 (refeshing disrecarding cache) in Chrome – > MENU works again.
    Cache problem? Seems, but it solved the problem for now.
    Hope this helps for other people, else let us know.

    #1239194

    Hi Victoria,
    the whole construction is a work around to enable the skip-links WordPress normally generates but ENFOLD somehow ‘swollows’. The skip-links are built in to make a website accessible for users who cannot navigate with the mouse (because they are blind i.e.) but can tab through the website. These 2 Skip-Links skip 1. direct to the main content or 2. direct to the main navigation.

    See also this thread:

    https://kriesi.at/support/topic/skiplink-button-is-visible-but-not-working/

    Kind regards,
    Susanne

    #1239158

    Hi,
    The dev team has returned a fix for the full-width button in the Ajax Portfolio Preview text section: “The full-width element full-width button shortcode broke the layout because called outside shortcode tree and creating an extra section.” Full-width elements try to full-width for the screen not just the element, so typically placing a full-width element inside a page element will cause an issue. In this case, the dev team edited the full-width button and the portfolio element so this will work correctly.
    This will be included in the next release. In the zip file in the Private Content area, you will find two files:
    buttons_fullwidth.php & portfolio.php
    via ftp, please save a fallback copy of your current files and replace these at these locations:
    \wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\buttons_fullwidth\buttons_fullwidth.php
    \wp-content\themes\enfold\config-templatebuilder\avia-shortcodes\portfolio\portfolio.php
    Then clear your browser cache and any cache plugin, and check.

    Best regards,
    Mike

    #1239102
    oniljuez
    Participant

    Hello there,

    I am writing because since I manually updated from Enfold 4.3 to 4.7 I cannot enter spaces into text fields such as headings, and icon titles. For instance, when I enter “Hello this is my heading”, it shows something like “Hellowthisismyheading”. Also, the Enter button used to work when modifying something in the Advanced Editor and it just doesn’t anymore.

    This only happens with users whose role is set to Administrator. But it does not with editors.

    Thank you very much in advance for your kind attention.

    Best,

    #1238828

    Hi Victoria,

    I deleted the staging environment, created a brand new one from Live. Updated to 5.5, updated to latest Enfold version. The same problem occurs. All wordpress buttons are unresponsive and there are strange rectangles inside of the classic and ALB editors.

    I created s user for you before updating. Sending you the credentials.

    This is very strange. Hosted on Kinsta.

    Please, let me know if there is anything you want me to try.

    Best,

    Havi

    #1238637
    chrisheath28
    Participant

    I have created a new page in an established site but the Advanced Layout Editor button is not working on this page. Existing pages that have been created withe the editor still work, but if I switch to default editor it is not possible to go back to the advanced editor.
    I have updated WordPress and Enfold. I have tried deactivating all plug-ins but this makes no difference.

    mealcasa
    Participant

    Dear support team,

    I need to create a product bundle that allows the user to select exactly x meals out of y meal options. For that, I have decided to use the plugins:

    The plugins have worked as advertised until I activate the Enfold theme. This hints at a theme conflict. From the following thread, I was able to
    narrow down the problem to the following line of code inside the enfold\config-woocommerce\woocommerce-mod.js file:
    avia_apply_quant_btn();

    I commented out that line and was able to restore the functionality of the plugins. However, the custom +/- buttons disappeared and the woocommerce default ones have not reappeared. A member of your support team has mentioned that they could not recreate the problem on your own installations:
    https://kriesi.at/support/topic/enfold-woocommerce-bundle-plugin/

    Please let me know what you need from me to access and inspect the issue on my site.

    Thank you in advance!

    • This topic was modified 5 years, 6 months ago by mealcasa. Reason: formatting
    #1238541

    Hi NoraGTS,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .home .avia-caption-content .avia-button-wrap + p {
      display: none;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #1238343

    Hi,
    Thank you for the login, I see that the button “Edit Audio Player (Classic Editor)” is always pointing to the “post=1766” which is one of your Audio Players, it doesn’t seem to matter if it is a post or a page, and there are no errors in the browser console.
    If I disable your plugin “Disable Gutenberg” and change the default editor at Enfold Theme Options > Select Your Editor the button changes text but not the wrong link.
    So I don’t know why this plugin & Enfold are clashing, but unfortunately, there is not a lot we can for third-party plugins within the scope of our support.
    But since the link never changes, I think we can replace the link with the correct edit link for pages and posts with this script and hopefully improve your workflow.
    Try adding this code to the end of your functions.php file in Appearance > Editor:

    function custom_script(){
      ?>
      <script>
    (function($){
      $(window).load(function(){
      function get_current_page_id() {
        var page_body = $('body');
    
        var id = 0;
    
        if(page_body) {
            var classList = page_body.attr('class').split(/\s+/);
    
            $.each(classList, function(index, item) {
                if (item.indexOf('page-id') >= 0 || item.indexOf('postid-') >= 0) {
                    var item_arr = item.split('-');
                    id =  item_arr[item_arr.length -1];
                    return false;
                }
            });
        }
        return id;
    }
    var id = get_current_page_id();
    var theURL = '/wp-admin/post.php?post='+id+'&action=edit&classic-editor=1';
      $('#wp-admin-bar-edit a').mouseover(function() { 
                $(this).attr("href", theURL);
            });
      });
    })(jQuery);
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_script');

    this will not change the text of the button, but it does change the link.
    Please clear your browser cache and check.

    Best regards,
    Mike

    davidetoffa
    Participant

    Dear all,

    As i wrote in the title, the text and some images are not anymore visible:

    Just have a look http://www.fratisog.it and you Will not see the text, link or button.

    Only background images are visibile

    #1238206

    Hi dumdeldidum,

    This is one of the ways to do it. Depending on what kind of icon you want to add.

    Here are some other ways:

    https://kriesi.at/support/topic/add-icons-to-enfold-principal-menu/#:~:text=To%20add%20custom%20icons%20to,next%20to%20the%20download%20button.

    Best regards,
    Victoria

    #1238117

    Hi,

    Thanks for that. The button is breaking since you were using a special character in the text. I removed that and it’s working after that. If you want to keep on using that then please install this plugin: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#using-special-characters, and use the code for the special character which you can find in the same place. Or you could simply use some other character, or an icon.

    Best regards,
    Rikard

    #1238031

    Topic: Enfold won't update

    in forum Enfold
    bagha
    Participant

    Hello, Enfold will not update and just shows me this:

    screenshot1

    I have double and triple checked that all the right permissions are set:

    screenshot2

    Clicking the blue button doesn’t do anything. The page just remains static. I have tried it on 2 browsers.

    • This topic was modified 5 years, 6 months ago by bagha.
    Lin
    Participant

    Hallo,

    nach dem Updaten von Enfold und WP treten folgende Probleme bei mir auf:

    – Beim Child-Theme-Editor fehlt das Menü in der linken Spalte
    – Der Beitragseditor ist “kaputt”: – Das Icon mit den Shortcodes/Auswahlmenü für die Layoutelemente fehlt. Und ich kann nicht von visuell auf Text-Editor umstellen und auch nicht auf den erweiterten Editor switchen (Buttons reagieren nicht).
    – Beim Einfügen von Links öffnet sich das Kontextmenü nicht komplett, d.h. ist nicht einstellbar, wo Links geöffnet werden sollen

    – editor is broken, cannot switch between visual/text, cannot switch to advanced editor.
    – shortcode-icon (to choose layout elements) is completely missing
    – editing links does not open the complete context menu

    – child-theme-editor: menu is missing, the column is blank

    Please help, thanks in advance

    Lin

    #1237700

    In reply to: Share Button and dsgvo

    Hey Jak73,

    Thank you for the inquiry.

    The share buttons from the theme just redirect the users to certain social media or external sites, and it doesn’t store any cookies in the clients’ browser or collect any user-related data. Is that what you’re asking?

    To learn more about the privacy options from the theme, please check this documentation.

    //https://kriesi.at/documentation/enfold/privacy-cookies/

    Best regards,
    Ismael

    #1237538

    Hi,

    I am facing the same issue. After upgradeing to WP 5.5 all the ENFOLD Menu settings are gone – not shown any more.

    It shows me in debug log also this error:

    Uncaught TypeError: createElementButton.live is not a function
        at HTMLFormElement.<anonymous> (avia_dynamic_templates.js?ver=4.7:52)
        at Function.each (load-scripts.php?c=0&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:2)
        at n.fn.init.each (load-scripts.php?c=0&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:2)
        at n.fn.init.$.fn.avia_dynamic_templates (avia_dynamic_templates.js?ver=4.7:24)
        at HTMLDocument.<anonymous> (avia_dynamic_templates.js?ver=4.7:14)
        at i (load-scripts.php?c=0&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:2)
        at Object.fireWith [as resolveWith] (load-scripts.php?c=0&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:2)
        at Function.ready (load-scripts.php?c=0&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:2)
        at HTMLDocument.J (load-scripts.php?c=0&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:2)
    
    #1237481
    fbarfety
    Participant

    Hello. The Enfold theme is not working properly after I upgraded WP to 5.5. The options along the left side of the screen are missing.

    Below are the console errors:

    Uncaught TypeError: createElementButton.live is not a function
        at HTMLFormElement.<anonymous> (avia_dynamic_templates.js?ver=5.0:52)
        at Function.each (load-scripts.php?c=1&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:2)
        at n.fn.init.each (load-scripts.php?c=1&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:2)
        at n.fn.init.$.fn.avia_dynamic_templates (avia_dynamic_templates.js?ver=5.0:24)
        at HTMLDocument.<anonymous> (avia_dynamic_templates.js?ver=5.0:14)
        at i (load-scripts.php?c=1&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:2)
        at Object.fireWith [as resolveWith] (load-scripts.php?c=1&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:2)
        at Function.ready (load-scripts.php?c=1&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:2)
        at HTMLDocument.J (load-scripts.php?c=1&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:2)
    
    Uncaught TypeError: Cannot read property 'hasClass' of undefined
        at HTMLDocument.<anonymous> (wp-auth-check.min.js?ver=5.5:2)
        at HTMLDocument.dispatch (load-scripts.php?c=1&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:3)
        at HTMLDocument.r.handle (load-scripts.php?c=1&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:3)
        at Object.trigger (load-scripts.php?c=1&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:3)
        at HTMLDocument.<anonymous> (load-scripts.php?c=1&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:3)
        at Function.each (load-scripts.php?c=1&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:2)
        at n.fn.init.each (load-scripts.php?c=1&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:2)
        at n.fn.init.trigger (load-scripts.php?c=1&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:3)
        at Object.<anonymous> (heartbeat.min.js?ver=5.5:2)
        at i (load-scripts.php?c=1&load[chunk_0]=jquery,utils,moxiejs,plupload&ver=5.5:2)
    #1237332
    kesdeg
    Participant

    Hi Guys,

    I’ve just updated my site to WordPress 5.5 and have Woocommerce 4.3.2 with Enfold 4.7.6.2.

    On Microsoft Edge, Chrome, Firefox and Safari, my images on all pages don’t load until you hit the refresh button.

    I see that Lazy Image loading is now standard with WP 5.5 so suspect there is some issue with this?

    Any advice on getting this glitch sorted? My ecommerce website is pretty useless right now.

    Thanks

    kesdeg

    #1237094

    Hi all,

    Here are the changes in the release:

    
    checked: compatibility WP 5.5
    checked: compatibility jQuery 3.5.1 (jQuery Migrate not activated), jQuery-UI 1.12.1
    
    fixed: ALB TabSection shows new added tab - should be hidden because current tab remains active
    Fixed: ALB modal popup layout broken using magic wand button from open text block element
    fixed: ALB modal popup layout broken using magic wand button from open text block element
    fixed: ALB TabSection with no title broken behaviour when switching tabs
    fixed: js console "samesite" warnings for theme privacy cookies - "will be refused in future due to wrong value"
    fixed: filtered values not recognised in avf_slideshow_config and avf_partner_logo_config
    fixed: jQuery 3.x bug with transparent header
    fixed: custom id missing in ALB table element tabular data
    
    added: missing textdomain to recaptcha_v3 string to make translateable
    added: make logo a responsive image
    added: default value for missing 2nd parameter for filters jpeg_quality and wp_editor_set_quality (probably caused by 3rd party plugin)
    added: default lightbox mfp-image alt attribute is set, when masonry has a background image
    added: default lightbox mfp-title if title for image is empty, alt text is displayed (if exists - must be activated with filter avf_lightbox_show_alt_text)
    added: schema.org image markup for blog featured image
    
    added: filter avf_partner_logo_config: allows to filter config for ALB Partner/Logo Element
    added: filter avf_lightbox_show_alt_text: activate that lightbox shows alt attribute when title empty (deactivated by default - might change in future releases)
    
    feature: Add support for WP loading="lazy" attribute
    
    tweak: updated waypoints script to version 4.0.1 (supports jQuery 3.x)
    tweak: better support for "custom link" for images in ALB Gallery, Masonry Gallery, Horizontal Gallery
    tweak: integrate WP option "Search engine visibility" in theme header meta tag name=robots
    
    updated: Italien language files
    updated: German language files
    updated: Dutch language files
    
    updated: Layerslider v 6.11.2
    

    Here is the link:
    https://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990#item-description__changelog

    Best regards,
    Victoria

    • This reply was modified 5 years, 7 months ago by Victoria.
    p-force
    Participant

    Hello
    after Updating on to WP 5.5 and Enfold 4.7.6.2 I suddenly experienced the following problem
    My container displaying on the the Startpage a picture and a Maxbutton does not convert correctly on Smartphones no more.
    Soon as it is am smaller screen it is centered no more, since it is no longer full with, even the cropped size of the picture and the button are different, and no longer center either if you turn the phone to square mode, see pictures attached.
    Screenshot
    Screenshot 2
    Screenshot 3
    Screenshot 4
    Please help to fix this immediately, since the page is live, I didn’t change anything and it was displaying correctly until I updated

    • This topic was modified 5 years, 7 months ago by p-force.
    #1236767
    mhcknight
    Participant

    Hello,
    I am mostly new to this, so apologies for the list of questions. After trying to set up my own layout and struggling, I have based mine on Enfold Medical and followed the documentation. I have run into a few issues:

    1) I have added a header widget as per the instructions. I have not been able to style it fully using the CSS provided, or the Advanced Styling function. Where I have entered code, it has not taken effect. I would like to a) increase the font size to 1.2em, b) change the colour to black, and c) align it left and vertically centred, so it is next to the logo. How can I do this please?

    2) The header widget and flexbox code has reduced the size of our logo. How can I make it larger, please?

    3) My search box is blue, and the search button is not visible. I have tried to use code from these forums, but the code was from 2014 and seems ineffective. How can I change the background to white, with black text, and a search icon visible, please?

    4) When viewed on mobile, my partner logo strip seems staggered. How can I present them vertically centred, please?

    5) When viewed on mobile, the boxes on my page hide the slider, and the header widget appears off screen. This occurs on the Enfold Medical theme example as well. How can I fix this?

    I have included screenshots below. Thank you for your help.

Viewing 30 results - 2,221 through 2,250 (of 11,206 total)