Viewing 30 results - 9,361 through 9,390 (of 244,466 total)
  • Author
    Search Results
  • #1436933

    In reply to: iframe full height

    Hi,
    Glad that you have sorted it out using width: 100vw; height: 100vh
    The javascript option above only works on same domain iframes
    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

    #1436927

    In reply to: Dropdown alignment

    Hi,

    Thank you for the update.

    You can use this css code to adjust the style of the button.

    #top .hr.hr-invisible.av-2d6n9il-41fb061c500273b2b0ba4e2d011be596 + .avia_codeblock_section .avia_codeblock .dropdown {
        display: flex;
        min-height: 48px;
        justify-content: center;
    }
    
    #top .hr.hr-invisible.av-2d6n9il-41fb061c500273b2b0ba4e2d011be596 + .avia_codeblock_section .avia_codeblock .dropdown .avia_button_icon {
        padding-left: 0;
        margin-right: 10px;
    }

    If you want to target the text block element directly, try to apply a unique css class name to it. Please check the link below for more info:

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    #1436924

    Hey igaade,

    Thank you for the inquiry.

    Have you tried purging the cache? You should also check if the Maintenance Mode option is disabled in the Enfold > Theme Options panel. Please provide the site URL in the private field so that we can check the site further.

    Best regards,
    Ismael

    #1436916

    Hi,

    I like to know: have file names always been changed after updating a plugin? Or is this something that’s happening since a recent Enfold update?

    The theme adds timestamps to the merged files and this changes when the files are updated. If you want to test it without the timestamps, go to the Enfold > Performance panel, toggle the Show Advanced Options, then adjust the Unique Timestamp Of Merged Files And WP Object Cache Bug accordingly. Please make sure to read the description before proceeding.

    Best regards,
    Ismael

    #1436914

    Hey joschro,

    Thank you for the inquiry.

    Have you tried adjusting the color values in the Enfold > General Styling > Main Content tab? To adjust the default font size of the body text, go to the General Styling > Typography tab, then adjust the values of the Default Content Font Size.

    Best regards,
    Ismael

    #1436911

    Hey Jason,

    Thank you for the inquiry.

    You can apply a custom css class name (e.g., av-custom-column-width) to the column element, and manually specify its maximum width with css.

    .av-custom-column-width {
       max-width: 400px;
    }

    Please check the link below for more info on how to apply custom css to the builder elements:

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    Best regards,
    Ismael

    #1436910

    Hi,

    Thank you for the inquiry.

    The color field is visible on our end. We manually specified the color as #fcf7f2 and updated the page accordingly. Please let us know if this is the correct color.

    If you can’t see the color field, try to toggle the element preview in the Enfold > Layout Builder > Disable Advanced Layout Builder Preview In Backend option.

    Best regards,
    Ismael

    #1436900

    Hi,
    Ok, since you have it installed you are certainly correct, I have not looked at WPFC for quiet a while, nonetheless I think you get my general points about issues when you have multiple things minifing, compressing, & merging the same files, it’s just something to keep in mind.
    Anyways glad that this is 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

    #1436898

    In reply to: Count up function

    Wow – thank you on that!

    By the way – it only looks like the countdown if the css in question is loaded. If you have selected “Load only used elements (recommended)” in enfold options – and you have never used it in your installation – then the corresponding css is not loaded. Simply create a draft page somewhere on which the countdown is used.

    #1436897

    In reply to: Layout Architect

    Hi,
    Thanks for the login, I see that your Advanced Layout Builder post has a three image easy slider element and I believe this is an example of what you want to add to plain WordPress posts, so I cloned one of your plain posts as an example, linked below.
    Then I used the shortcode wand to add a slider:
    Enfold_Support_5015.jpeg
    when it opens it looks just like the ALB element, just add your images like normal:
    Enfold_Support_5017.jpeg
    when you save the element you will see the shortcode:
    Enfold_Support_5019.jpeg
    then save your page, on the frontend you will see the slider:
    Enfold_Support_5021.jpeg
    Please give this a try.

    Best regards,
    Mike

    #1436894

    In reply to: Count up function

    Hey calebcuster,
    Unfortunately the Animated Countdown element datepicker will not allow you to choose a past date so this will not work, the post that you linked to was from 2015.
    Instead try this shortcode count up clone, add this code to the end of your child theme functions.php file in Appearance ▸ Editor or if you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
    Enfold_Support_2680.jpeg
    then add this code and save.

    function wp_custom_countup_shortcode($atts) {
        // Extract shortcode attributes
        $a = shortcode_atts(array(
            'date' => '2020-01-01', // Default date
            'color' => 'black', // Default font color
            'background' => 'white', // Default background color
            'offset' => '0', // Default timezone offset in hours
        ), $atts);
    
        $uid = uniqid('countup_');
    
        // Enqueue jQuery if it's not already included
        wp_enqueue_script('jquery');
    
        // Output HTML
        $html = "<div id='{$uid}'  class='av-countdown-timer-inner'>
                    <span class='av-countdown-cell av-align-center'><span class='av-countdown-cell-inner' style='color: {$a['color']}; background-color: {$a['background']};'><span class='av-countdown-time weeks'></span><span class='av-countdown-time-label'>Weeks</span></span></span>
    <span class='av-countdown-cell av-align-center'><span class='av-countdown-cell-inner' style='color: {$a['color']}; background-color: {$a['background']};'><span class='av-countdown-time days'></span><span class='av-countdown-time-label'>Days</span></span></span>
    <span class='av-countdown-cell av-align-center'><span class='av-countdown-cell-inner' style='color: {$a['color']}; background-color: {$a['background']};'><span class='av-countdown-time hours'></span><span class='av-countdown-time-label'>Hours</span></span></span>
    <span class='av-countdown-cell av-align-center'><span class='av-countdown-cell-inner' style='color: {$a['color']}; background-color: {$a['background']};'><span class='av-countdown-time minutes'></span><span class='av-countdown-time-label'>Minutes</span></span></span>
    <span class='av-countdown-cell av-align-center'><span class='av-countdown-cell-inner' style='color: {$a['color']}; background-color: {$a['background']};'><span class='av-countdown-time seconds'></span><span class='av-countdown-time-label'>Seconds</span></span></span>
                 </div>";
    
        // Adjust the current time for the timezone offset
        $offsetMilliseconds = $a['offset'] * 3600 * 1000; // Convert hours to milliseconds
    
        // JavaScript to update the countdown
        $html .= "<script>
                    jQuery(function($) {
                        var countUpDate = new Date('{$a['date']}').getTime();
                        var x = setInterval(function() {
                            var now = new Date().getTime() + {$offsetMilliseconds}; // Adjust for timezone offset
                            var distance = now - countUpDate;
                            var weeks = Math.floor(distance / (1000 * 60 * 60 * 24 * 7));
                            var days = Math.floor((distance % (1000 * 60 * 60 * 24 * 7)) / (1000 * 60 * 60 * 24));
                            var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
                            var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
                            var seconds = Math.floor((distance % (1000 * 60)) / 1000);
                            
                            $('#{$uid} .weeks').text(weeks);
                            $('#{$uid} .days').text(days);
                            $('#{$uid} .hours').text(hours);
                            $('#{$uid} .minutes').text(minutes);
                            $('#{$uid} .seconds').text(seconds);
                        }, 1000);
                    });
                  </script>";
    
        return $html;
    }
    add_shortcode('custom_countup', 'wp_custom_countup_shortcode');
    

    Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
    Then use this shortcode on the page to display:
    [custom_countup date="2024-03-10" color="#fff" background="#000" offset="-4"]
    the first attribute is the date in the past, then the font color, then the cell background color, and then the time offset, this is the difference between your server time and the time you want to use, since our servers are not always in the same timezones as we are. The default is zero if you don’t add this attribute.
    This is the result:
    Enfold_Support_5011.jpeg
    This uses the same classes as the countdown element so the style is pretty close, here is what the two together look like:
    Enfold_Support_5013.jpeg

    Best regards,
    Mike

    #1436888

    Hi,
    Your screenshot of the accordion color options do not look correct, your element seem to be missing the manual color input, this is how it should look:
    Enfold_Support_5009.jpeg
    Try disabling any plugins, and if that doesn’t help include a admin login in the Private Content area so we can examine.

    Best regards,
    Mike

    #1436884

    Hi,
    The the problem with your overlay was that it is under the background image:
    Enfold_Support_5005.jpeg
    I moved it on top of your background image so you can see it on the frontend:
    Enfold_Support_5007.jpeg
    Please clear your browser cache and check.

    Best regards,
    Mike

    #1436883

    Hi,
    Thanks for the login, I found that you had the font size set to 13px:
    Enfold_Support_5003.jpeg
    since the demo uses 16px, I changed it for you, please clear your browser cache and check and if you want it larger please adjust.

    Best regards,
    Mike

    #1436880

    In reply to: Half the website gone

    Hi,
    Windows in Chrome, Firefox, Brave & Edge: it looks good to me:
    Enfold_Support_5001.jpeg

    Best regards,
    Mike

    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

    #1436871

    In reply to: Half the website gone

    Hi,
    I don’t spot any missing images on your page, you write that the top left image is missing but I see it:
    Enfold_Support_4995.jpeg
    this matches the frontend:
    Enfold_Support_4997.jpeg
    The text is an image so I assume that is what you are talking about it, but let’s assume that you also want a background image in the cell, behind the text image, then we see there is not one in the cell settings, so feel free to add one:
    Enfold_Support_4999.jpeg
    When I look at the rest of the page I don’t see any empty placeholders or and image 404’s so perhaps if you still see the missing images you could take a screenshot and point to it.
    Thank you for your patience with us.

    Best regards,
    Mike

    #1436868

    Hi,
    I installed the Freelancer demo for you, please check.
    Unfortunately it won’t do any good to ask OVH, other users have been asking for over four years.
    Nonetheless, we try to help where we can, but if you want to install more demos I recommend 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.
    Please note that you should not install multiple demos over each other because each demo overwrites the theme settings, if you want to add a page from another demo try installing it on a localhost and Enable the Avia Layout Builder Debugger then you will see a special field in the editor where you can copy the shortcode for the whole page and paste into a new page on your site.

    Best regards,
    Mike

    #1436850

    Oh, we switched to Enfold compression/merging due to WPFC’s versions of this was screwing things up. Am I to disable, clear everything then re-enable it? Or are you thinking that I’ll need to leave teh Enfold compression/merging off?

    #1436845

    Hey gatehealing,
    I see that you are getting a javascript error, try disabling 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 device cache a few times and check again.
    Please note that testing with iPads & iPhones can be hard to clear the cache, often you need to also clear the history to fully purge the cache, following these steps for Safari and note Step 4 where you will Clear the History.

    Best regards,
    Mike

    #1436844

    In reply to: functions.php

    Hey webmaintain,
    A theme update will override the enfold/functions.php
    We recommend using a child theme or you could use the WP Code plugin when you add a new PHP snippet, look in the top right corner to use the PHP snippet as the code type:
    Enfold_Support_2680.jpeg

    Best regards,
    Mike

    #1436843

    Hi,
    Ok, I’ve not heard of this before but it was causing the issue, nonetheless 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

    #1436839

    Hi,
    Thanks for the link to your site, you are using a very old version of the theme v4.4.1 so you must update to v5.6.10
    Before doing so I recommend that you create a full backup with your webhost backup tools, not a backup plugin, then 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

    Best regards,
    Mike

    #1436838

    In reply to: main blog page

    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

    #1436836

    Hey micheladalcastagne,
    Thanks for your patience and the link to your site, I don’t have a lot experience with the polylang plugin, first I noted that your homepage in both languages are named the same so I added the language code to them to sort them out in the theme options because your site domain is showing as a EN language and thus your menu is EN when you want it to be IT:
    Enfold_Support_4989.jpeg
    so now we can sort it out a little better:
    Enfold_Support_4991.jpeg
    Then going to the Languages ▸ Settings I found that you seem to need to choose the language from above before setting the options:
    Enfold_Support_4993.jpeg
    So now I have the menu language to match the page language along with the correct flag.

    Now for your second issue where when you are on the /privacy-policy/ page you can use the menu items to get back to your homepage because all of your menu items are only hash links.
    Since you are not using a child theme I installed the WP Code plugin then added a new snippet, in the top right corner use the PHP snippet as the code type:
    Enfold_Support_2680.jpeg
    then added this code, I also created two new menus for you, one for each /privacy-policy/ page with the full urls to the homepage.

    add_filter( 'wp_nav_menu_args', 'ppen_nav_menu_args' );
    function ppen_nav_menu_args( $args = '' ) {
    if($args['theme_location'] === 'avia') {
    if( is_page( 627 ) ) {
    $args['menu'] = '25';
    }
    return $args;
    }
    }
    
    add_filter( 'wp_nav_menu_args', 'ppit_nav_menu_args' );
    function ppit_nav_menu_args( $args = '' ) {
    if($args['theme_location'] === 'avia') {
    if( is_page( 3 ) ) {
    $args['menu'] = '24';
    }
    return $args;
    }
    }

    Now each /privacy-policy/ page has a working menu to the correct homepage.
    Best regards,
    Mike

    #1436829

    Hey keep12,
    Thanks for the screenshots, you have one were the css has not been merged with the theme option Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression
    grupooneair.com
    Enfold_Support_4983.jpeg
    and one were the js has not been merged with the theme option Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression
    oneair.es
    Enfold_Support_4985.jpeg
    but nonetheless they both get a A+ score.
    Then you have one were the both css & js has not been merged with the theme option Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression so it gets a C rating
    grupooneair.com
    Enfold_Support_4987.jpeg
    WP Rocket can cause issues if you use bothe the theme compression & WP Rocket minifying and compression, some users opt to use only the WP Rocket settings, I don’t use WP Rocket so I can’t advise, you should experiment with what gives you the best results, from your screenshots the first two seem the best, so use those.

    Best regards,
    Mike

    #1436828

    Hi,
    Sorry for any inconvenience this may have caused, in 2020 the Dev team had tried to include info about the limitation of websafe fonts not necessarily installed on every device by adding this to the theme:

    use websave fonts (faster rendering, but not mandatory installed on all devices)

    Enfold_Support_4979.jpeg
    I have notified the Dev Team about your thread for them to review and make an adjustment, thank you for pointing out that it is not as clear as we had intended.
    In my research these seem to be the fonts that seem to be available by default on IOS & Windows:

    Arial (sans serif)
    Times New Roman (serif)
    Verdana (sans serif)
    Courier New (monospace)
    Georgia (serif)
    Impact (sans serif)
    Trebuchet MS (sans serif)

    Thanks for your patience and understanding.

    Best regards,
    Mike

    #1436825

    In reply to: 2 Up Columns on Mobile

    Hi,
    For the “sides” section, you have four 1/4 columns, the outer two are empty and the inner two have content:
    Enfold_Support_4969.jpeg
    so on mobile you see:
    Enfold_Support_4971.jpeg
    so you will want to set the two empty columns to not show on mobile at Column ▸ Advanced ▸ Responsive ▸ Mobile display:
    Enfold_Support_4973.jpeg
    I did this for you and now it shows like this:
    Enfold_Support_4975.jpeg

    Best regards,
    Mike

    #1436813
    This reply has been marked as private.
    #1436812

    In reply to: Beiträge

    Hi,
    To change the number of grid columns on a archive page, such as categories, edit your \wp-content\themes\enfold\archive.php on line 69 look for ‘columns’ => 3; and change to the number you wish:
    Enfold_Support_4967.jpeg
    You can copy the modified file to your child theme if you wish.

    Best regards,
    Mike

Viewing 30 results - 9,361 through 9,390 (of 244,466 total)