Viewing 30 results - 7,621 through 7,650 (of 244,425 total)
  • Author
    Search Results
  • #1448720

    In reply to: Override demo import

    Hi,
    You can also export the theme setting file and give it to your customer, so them the customer has only two files to import, the .xml for the demo content and images, and the theme settings file at Enfold Theme Options ▸ Import/Export ▸ Import Theme Settings

    Best regards,
    Mike

    #1448719

    Hey northorie,
    Thank you for the link to your site, it looks like you are using the masonry element and I believe that your shortcode is for the Reading Time WP plugin. I tested this on my demo site and found that adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function add_reading_time_to_masonry_entry($content, $entry, $config) {
        $reading_time_html = "<div class='reading-time'>" . do_shortcode('[rt_reading_time post_id="' . $entry['ID'] . '" label="Reading Time:" postfix="minutes" postfix_singular="minute"]') . "</div>";
        $content .= $reading_time_html;
        return $content;
    }
    add_filter('avf_masonry_entry_content', 'add_reading_time_to_masonry_entry', 10, 3);
    

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    and adding this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .av-inner-masonry .reading-time {
    	opacity: 0;
    	bottom: 0;
      position: absolute;
      right: 0;
    }
    .av-inner-masonry:hover .reading-time {
    	opacity: 1;
    }

    will add the reading time at the bottom right corner on hover only, like this:
    Enfold Support 6055

    Best regards,
    Mike

    #1448711

    In reply to: Override demo import

    Hey nivotechwd,
    Thank you for your patience, from your other posts I understand that you plan on creating custom demos to sell. I recommend creating your demo and then exporting it in: WordPress ▸ Tools ▸ Export ▸ All content this will give you a .xml file, and this is the file that you can give to your customers for them to import at WordPress ▸ Tools ▸ Import this will be the easiest for your customers.
    The Enfold demo uses this function to import the buit-in demos. You can not override the register-demo-import.php in a child theme.
    After you create the .xml file you should note that when your customer imports the demo with this file it will call the images from your original demo url, so unless you plan on leaving this online for your customers to review, I recommend copying the images in the same structure to a online storage and then open the .xml file with VScode and change the urls to your new location, either your server or github or whatever.
    I hope this makes sense.

    Best regards,
    Mike

    #1448709

    In reply to: Can´t download a demo

    Hey nicolealbaek,
    Sometimes this is caused by the PHP ZipArchive Extension not enabled on the server, other times it is due to the WebHost has blocked our IP so the install can’t get the files (OVH) unfortunately OVH has told users they will not whitelist our IP.
    If you are using OVH try installing the demo on a localhost and then use the Duplicator plugin to move to your webhost.
    If the is not your case try following our documentation to manually install the demo, but please note that this still gets the files via the WordPress import xml file from our IP, so if your webhost has blocked our IP this won’t help.

    Best regards,
    Mike

    Hey amyncuih,

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

    #top #wrap_all .av_header_transparency #header_meta a {
      color: #fff;
    }

    Best regards,
    Rikard

    #1448690

    In reply to: logo mobile too wide

    Hi,
    To make the logo link smaller for mobile try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    @media only screen and (max-width: 480px) { 
    #top.page-id-11754 #header_main .logo {
    	width: 60px;
    	max-width: 60px;
    }
    }

    but it also looks like you will need to make the button in the slider come to the fore ground with z-index, try around 99
    I have not used the revolution sliderI’m not sure where this setting is, perhaps you do, or try checking the revolution slider documentation.

    Best regards,
    Mike

    Hey Jey,
    Thanks for reaching out and glad to hear that you are using Enfold for one of your other sites and have some experience with it, this will make converting your new site over easier, but unfortunately you will need to recreate your pages with Enfold since Enfold can not automatically convert your pages.
    I recommend creating a staging site of your new site so while you work on this your site will still be live.
    Most cPanel webhosts have a staging site option, some in the dashboard:
    staging-1.jpeg
    Others add the option in the Softaculous WordPress Management
    2022-12-11_001.jpeg
    There may be other staging site options in different cPanel servers, these are the two that I have seen.
    Then all of your posts will be available for Enfold, and you should only need to recreate your pages using Enfold elements, it looks like most of your pages are using the same layout with different images and text, so you could create one template and save as a template in the Advanced Layout Builder (ALB)
    Enfold Support 6048
    to reuse on each page, then change the images & text.

    Best regards,
    Mike

    #1448685

    Hi,
    Thank you for the link to your site and pointing this out, I will let the Dev Team know, but for now try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:

    .avia-pricing-table-container.avia_show_empty_cells .pricing-table li.empty-table-cell {
        display: block;
    }

    While this will show the empty cells, your table columns will still not be the same height because the cells in the last column has more content than the first two.
    Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    function equal_height_pricing_table() { ?>
      <script>
    (function($) {
      $(function() {
          $('#preisliste .avia-pricing-table-container .pricing-table-wrap:nth-child(3) li').each(function(index){
              $('#preisliste .avia-pricing-table-container .pricing-table-wrap:nth-child(2)').find('li').eq(index).css('height', $(this).css('height'));
              $('#preisliste .avia-pricing-table-container .pricing-table-wrap:nth-child(1)').find('li').eq(index).css('height', $(this).css('height'));
          });
      });
      })(jQuery);
      </script>
      <?php
    }
    add_action( 'wp_footer', 'equal_height_pricing_table', 99 );

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Please note that this will only work on your table in the preisliste section so it will not interfere with any others on your site.

    Best regards,
    Mike

    Jey
    Guest

    Hi,

    Im hoping to switch our site over to the enfold theme and editor. Can you let me know if this is possible please?

    Will it break the current live site?

    Any guidance would be great.

    Hi,
    Thank you for the link to your site, in your Custom CSS & JS plugin you have the footer background color set to black with a !important;, so for the theme settings to work you will need to remove this css:
    Enfold Support 6046
    I don’t see two scroll bars when I check your site, when page do you see this on?

    Best regards,
    Mike

    #1448675

    Hi,
    In that case do not use the Overwrite Portfolio Link setting option above, but use the Portfolio Gallery element instead and set the Link Handling option to Display the big image in a lightbox
    Enfold Support 6044

    Best regards,
    Mike

    #1448650
    PCLSIT
    Participant

    We’re having a lot of screen reader accessibility issues with the accordion/toggle element. We are testing our site with NVDA, a free screen reader (https://www.nvaccess.org/download/).

    The biggest issue is, though each accordion section can be expanded using the enter key, the screen reader can’t read the text contained in the expanded panel. If there is a focusable element within the panel, the user can tab to that, and then the screen reader can access any content within the panel that comes after that focusable element; but if there is no focusable element, there doesn’t seem to be any way for the screen reader to access the content of the expanded panel.

    There are also issues with the header of each accordion section. When the header has focus, the screen reader reads the header text, but does not state if the section is open or closed, and does not clearly indicate what type of control the user is interacting with. For example, for a section titled “question one”, the screen reader reads “tab control question one filled right pointing small triangle tab selected 1 of 1”. Ideally, it would say something more like “question one button collapsed” – this concisely tells the user the title of the section, conveys that it’s an interactable expand/collapse element, and indicates the current expanded/collapsed state.

    I was able to replicate the screen reader issues on the accordion demo page, https://kriesi.at/themes/enfold-2017/elements/accordion/, so I don’t think the issue is with our child theme.

    Here are some resources that describe how to implement an accessible accordion element, and that lay out the accessibility requirements: https://www.w3.org/WAI/ARIA/apg/patterns/accordion/ and https://www.aditus.io/patterns/accordion/.

    https://www.w3.org/WAI/ARIA/apg/patterns/accordion/examples/accordion/ has an example of an accessible accordion.

    Is this something that can be addressed in a future Enfold update, and in the short term, would there be a way to apply a fix via our child theme?

    Thank you for your help with this!

    #1448643

    Hi,
    The /masonry-portfolio-example-4-column-masonry-grid/ demo page that we posted for you uses a masonry element to show portfolio items, so the screenshot above is for one of those portfolio items, below the content, here is a full page screenshot of a portfolio item:
    Enfold Support 6042

    Best regards,
    Mike

    #1448640

    In reply to: home page config

    Hi,
    Thank you for the link to your site, but your specific links for specific settings are not working, but I believe that I understand.
    If you are using WP Rocket to lazyload it, I recommend disabling WP Rocket lazyload as this is causing the stal in showing the slider.
    When you try to exclude it you also need to exclude the javascript for the slider, you don’t need to to the WP Rocket lazyload option because it is already set at Enfold Theme Options ▸ Performance ▸ Responsive Images And Lazy Loading ▸ Lazy Loading
    Also note that the File Compression is also handled by the theme, typically double compression this this can cause errors.
    Note that using the WP Rocket exclude settings can be tricky try checking their documentation here.
    Try disabling WP Rocket and see if you still have the issue.

    Best regards,
    Mike

    #1448638

    In reply to: Blog raster horizontal

    hmmm…something will not work like you wrote :)

    I add 2 header areas and gave each a differen page ID .. so far so fine but i could not save it and get always this error
    Cannot redeclare ava_after_main_title_mod() (previously declared in wp-content/themes/enfold-child/functions.php:63)

    /* area img on archive Events

    
    add_action('ava_after_main_title', 'ava_after_main_title_mod');
    function ava_after_main_title_mod() {
    	$post_id = get_the_ID();
        if(get_post_type( $post_id ) == "post" || is_archive('3658'))  {
    		echo 'xxxxcontentxxxxx';
    	}
    }
    

    /* area img on archive Bücher

    
    add_action('ava_after_main_title', 'ava_after_main_title_mod');
    function ava_after_main_title_mod() {
    	$post_id = get_the_ID();
       if(get_post_type( $post_id ) == "post" || is_archive('3443'))  {
    		echo 'xxxxcontent-2xxxxx';
    	}
    }
    

    Whats wrong here?

    #1448620

    Hi,
    To open the image directly, go to your portfolio item ad use the Overwrite Portfolio Link setting option and add the image link
    Enfold Support 6039

    Best regards,
    Mike

    #1448616
    Lawrence
    Guest

    Hi,
    I bought enfold license on themeforest few years ago.
    Nowadays, I have to login kriesi enfold team to ask some issue, but I can’t log in and use forget password that my email can’t receive the reset email.
    My purchase code as below, can you help me to renew my email in enfold official site?

    5a63ddfc-e6c3-4eba-bd3f-384b98e8576f

    #1448600
    philipbrook
    Participant

    Hello,

    With recent updates to plugins in the last days, I’ve experienced issues with the website, namely not being able to access several backstore pages: Order List, Product List, single product update pages. I also could not run PayPal Payment and Woocommerce Shipment Tracking plugins at the same time. They would affect the overall site. I’ve checked all possible plugin conflicts and have narrowed it down to Jetpack which creates these problems when running Enfold theme. If I switch to a WP theme like Twenty Twenty-Four, the problems disappear and everything runs smoothly.

    Can someone advise if there is an issue with the theme right now that would cause this, or any other clues on what is the issue?

    Looking forward to your usual great service.

    Thank you

    #1448589

    Hey amyncuih,

    Thank you for the inquiry.

    You can define a different font for the Button element in the Enfold > Advanced Styling panel. The Button element can be found under the Misc section. Please note that this will affect all buttons across the site. Unfortunately, you cannot assign a different font to a specific block in the builder.

    Best regards,
    Ismael

    cheffe
    Participant

    Hi guys,
    I would like to open a self-hosted video via a link in the lightbox… so far so good… I put the ending “?iframe=true” at the end of the link and it works…. BUT… the video is created in portrait (9 to 16) format, but is played in landscape format (16 to 9) with a completely black background on the left and right of the video… not what I want…

    With your enfold video element you can choose the style yourself… i.e. a user-defined aspect ratio…. in my case I chose 9 to 16… and it works great!

    This is exactly how I would like to have the video in the lightbox… as fullscreen or 90 % and preferably also as a loop.
    Can you please help me with this… I couldn’t find anything here that could help me…

    Many thanks in advance… see ya

    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

    #1448570

    In reply to: Blog raster horizontal

    Hi,
    Ok thank you, I understand better now 🙂, but your site has changed since that video, Lesestoff entdecken is not a menu option now.
    Enfold Support 6033
    So I try to adjust this with the menu item Buchtipps I hope that I understand correctly.
    So the items under Buchtipps so header of Veranstaltungen, so basically your Veranstaltungen is built-in:
    Enfold Support 6035
    you can create a difficult code based on the category:
    Enfold Support 6037
    So please try adjusting this

    Best regards,
    Mike

    #1448569

    Hi,
    I would recommend adding the categories as a class to the single posts, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:

    add_filter('body_class','add_category_to_single');
      function add_category_to_single($classes) {
        if (is_single() ) {
          global $post;
          foreach((get_the_category($post->ID)) as $category) {
            $classes[] = $category->category_nicename;
          }
        }
        return $classes;
      }

    This will add the categories as a body class, so for example if your post belongs to the categories News, Personal, Uncategorized
    Enfold Support 6029
    the body will have these classes:
    Enfold Support 6031
    So if you wanted to use CSS to target this it would look like:

    #top.news.personal.uncategorized {
    /* your color here */
    }

    You can make this would for only one category if you wish, my example just happened to have three.

    Best regards,
    Mike

    farrdesign79
    Participant

    Updating PHP to 8.1 from 7.3 breaks WP with this Enfold on InMotion WHM. There are no plugins, Layerslider is deactivated. I tried support from InMotion, with no luck.

    #1448567

    Hi,
    Thanks for your question, but you have posted to a thread from 2019 as this is not your thread posting your admin login here will not be private and you will not see our comments in the Private Content area, so please open a new thread so we can assist.
    Also let us know what host you are using as OVH is a known host to block our IP address.
    If the manual import method fails, try creating a localhost WordPress install and import the demo and then use the plugin Duplicator and migrate your localhost version to your webhost, see the video on the plugin page if you have not used this plugin before, it is quite easy.

    Best regards,
    Mike

    #1448559
    This reply has been marked as private.
    #1448550

    In reply to: Masonry caption size

    Hi,

    Thanks for that. Please try the following in Quick CSS under Enfold->General Styling:

    .av-masonry-entry .av-inner-masonry-content {
      height: 150px;
      min-height: 150px;
    }

    Best regards,
    Rikard

    #1448543
    annevoelkel
    Participant

    Dear Krisies,
    I’m using the plugin Open User Map and there seems to be a conflict between Enfold and the plugin. The page with the OUM-map starts very slowly after changings and it is not a matter of the number of locations/posts or server performance. To solve this issue we have installed W3 Total Cache. It helps but this is not the final solution.
    For comparison:
    https://www.netzwerk-berufswahlsiegel.de/berufswahlsiegel/standortkarte/
    On this website running with theme Total the OUM-plugin is installed without a cache and the page loads much faster than ours.
    Our page:

    All other custom post types work fine in our system.
    Are there any settings in Enfold Options we can make or do you have any idea what may be the reason for the this issue?

    Best regards
    Anne

    #1448527

    Hi Rikard,
    I followed your suggestion and uploaded a new Enfold copy via ftp.
    Unfortunately still no changes …

    Best regards,
    Thomas

    #1448523

    hi!
    copied from my wordpress:

    Theme Updates
    Once you have entered and verified your Envato Personal Token Key WordPress will check for updates every 12 Hours and notify you here, if one is available

    Your current Parent Theme (Enfold) Version Number is 5.7.1
    Your PHP version: 8.2.19

    my WordPress is 6.5.4

Viewing 30 results - 7,621 through 7,650 (of 244,425 total)