Forum Replies Created

Viewing 30 posts - 3,151 through 3,180 (of 66,206 total)
  • Author
    Posts
  • in reply to: Custom font not loading on safari #1464872

    Hi,

    Thank you for the update.

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings and purge the cache. Let us know the result.

    Best regards,
    Ismael

    Hi,

    The css code doesn’t seem to be applied when we checked. Where did you add it? Please toggle or temporarily disable the Enfold > Performance > File Compression settings, then purge the cache. Or post the login details in the private field so we can check it.

    Best regards,
    Ismael

    in reply to: social icons in mobile menu #1464870

    Hey Munford,

    Thank you for the inquiry.

    The social icons and language switchers are intentionally hidden on mobile view due to the lack of space in the header. If you want to display them again, you can try this css code:

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all #header .social_bookmarks,
      .responsive #top #wrap_all #main .av-logo-container .social_bookmarks {
        display: block;
      }
    
      #top .av-burger-menu-main.menu-item-avia-special {
        left: auto;
      }
    }

    Best regards,
    Ismael

    in reply to: LAtest Enfold doesnt repect CSS chagnes? #1464869

    Hey washem,

    Thank you for the inquiry.

    Please toggle or temporarily disable the Enfold > Performance > File Compression settings to make sure that the changes take effect. If there is a cache plugin installed, make sure to purge the cache afterwards. Let us know if this helps.

    Best regards,
    Ismael

    in reply to: Tooltip with copy #1464750

    Hi,

    How can I change the music icon to a clipboard one or any other?

    You can create a button with your preferred icon, then copy the value of the data-av_icon attribute. It may appear as a tilted rectangle, but it actually contains the character code for the icon.

    <span class="avia_button_icon avia_button_icon_left" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span>
    

    Best regards,
    Ismael

    in reply to: Hide portfolio preview settings #1464749

    Hey tom,

    Thank you for the inquiry.

    You can add this filter in the functions.php file to hide the “Additional Portfolio Settings” panel:

    
    function avf_builder_boxes_mod( $boxes ) {
        foreach ( $boxes as $key => $box ) {
            // remove portfolio additional settings
            if ( isset( $box['id'] ) && $box['id'] === 'preview' ) {
                unset( $boxes[$key] );
                break; 
            }
        }
    
        return $boxes;
    }
    
    add_filter( 'avf_builder_boxes', 'avf_builder_boxes_mod' );
    

    Best regards,
    Ismael

    in reply to: Code Korrekturen #1464748

    Hi,

    Thank you for the update.

    We are unable to reproduce the issue on our end. The inline styles remain the same when we edit the Text Block or update the page. Please check the screenshot in the private field. It’s possible that a plugin is causing the issue on your end. Have you tried using a Code Block element instead?

    Instead of using inline styles, you can add custom class names to the html and adjust the styles for these elements in the Enfold > General Styling > Quick CSS field.

    Best regards,
    Ismael

    in reply to: Custom font not loading on safari #1464747

    Hey spokerstradingco,

    Thank you for the inquiry.

    We adjusted the filters a bit. Please try it again:

    /* Adobe Typekit font */
    add_action('init', 'enfold_customization_switch_fonts');
    function enfold_customization_switch_fonts() {
        global $avia;
        $avia->style->print_extra_output = false;
    }
    
    add_filter('avf_google_heading_font', 'avia_add_heading_font');
    function avia_add_heading_font($fonts) {
        $fonts['Espiritu Regular'] = 'espiritu';
        return $fonts;
    }
    
    add_filter('avf_google_content_font', 'avia_add_content_font');
    function avia_add_content_font($fonts) {
        $fonts['Espiritu Regular'] = 'espiritu';
        return $fonts;
    }
    
    add_action('wp_head', 'enfold_customization_add_scripts');
    function enfold_customization_add_scripts() {
        ?>
        <link rel="stylesheet" href="https://use.typekit.net/rww4dia.css">
        <?php
    }
    
    

    Best regards,
    Ismael

    in reply to: Paketumfang ENFOLD #1464745

    Hey Mirko Schwellenbach,

    Thank you for your interest in the theme.

    When importing a demo, some images may not be included due to copyright restrictions. However, all pages, templates, and layouts will be fully imported. You’ll need to replace any missing images with your own. Also, some demos may require specific plugins, such as WooCommerce for shop pages, to fully replicate the demo content. Most of these plugins are free to use and can be easily installed to make sure the demo functions as intended. Please let us know if you need more info.

    Best regards,
    Ismael

    Hey Illingco,

    Thank you for the inquiry

    I think it is different length product titles throwing things off sometimes.

    You could apply a minimum height to the product title. Please try this css code:

    h2.woocommerce-loop-product__title {
        min-height: 60px;
    }

    Best regards,
    Ismael

    in reply to: Issues with iframe, Vimeo video link to open in a pop up #1464743

    Hi,

    You need to upload the theme files manually via S/FTP. Please review the video in the documentation provided above and check this article for more info about updating.

    // https://kriesi.at/archives/the-complete-guide-to-updating-enfold

    Best regards,
    Ismael

    in reply to: Fetch to JSON field path #1464742

    Hi,

    UPDATE: Please make sure to move the Code Block element inside a Color Section element. Let us know of the result.

    Best regards,
    Ismael

    in reply to: Fetch to JSON field path #1464741

    Hi,

    Thank you for the info.

    We adjusted the script slightly and removed a few unnecessary elements, including some styles. You can place the zipcodes.json file in the wp-content > uploads folder and use the absolute URL (https://dev.site.com/wp-content/uploads/zipcodes.json) in the fetch function.

    <script>
    var gform;gform||(document.addEventListener("gform_main_scripts_loaded",function(){gform.scriptsLoaded=!0}),window.addEventListener("DOMContentLoaded",function(){gform.domLoaded=!0}),gform={domLoaded:!1,scriptsLoaded:!1,initializeOnLoaded:function(o){gform.domLoaded&&gform.scriptsLoaded?o():!gform.domLoaded&&gform.scriptsLoaded?window.addEventListener("DOMContentLoaded",o):document.addEventListener("gform_main_scripts_loaded",o)},hooks:{action:{},filter:{}},addAction:function(o,n,r,t){gform.addHook("action",o,n,r,t)},addFilter:function(o,n,r,t){gform.addHook("filter",o,n,r,t)},doAction:function(o){gform.doHook("action",o,arguments)},applyFilters:function(o){return gform.doHook("filter",o,arguments)},removeAction:function(o,n){gform.removeHook("action",o,n)},removeFilter:function(o,n,r){gform.removeHook("filter",o,n,r)},addHook:function(o,n,r,t,i){null==gform.hooks[o][n]&&(gform.hooks[o][n]=[]);var e=gform.hooks[o][n];null==i&&(i=n+"_"+e.length),gform.hooks[o][n].push({tag:i,callable:r,priority:t=null==t?10:t})},doHook:function(n,o,r){var t;if(r=Array.prototype.slice.call(r,1),null!=gform.hooks[n][o]&&((o=gform.hooks[n][o]).sort(function(o,n){return o.priority-n.priority}),o.forEach(function(o){"function"!=typeof(t=o.callable)&&(t=window[t]),"action"==n?t.apply(null,r):r[0]=t.apply(null,r)})),"filter"==n)return r[0]},removeHook:function(o,n,t,i){var r;null!=gform.hooks[o][n]&&(r=(r=gform.hooks[o][n]).filter(function(o,n,r){return!!(null!=i&&i!=o.tag||null!=t&&t!=o.priority)}),gform.hooks[o][n]=r)}});
    </script>
    <div class="container">
    <h3>Zipcode Redirect</h3>
    <form id="zipcodeForm">
            <input type="text" id="zipcodeInput" placeholder="Enter zipcode" required>
            <button type="submit">Go</button>
        </form>
    <p id="errorMessage" class="error"></p>
    
    </div>
    <script>
    document.addEventListener('DOMContentLoaded', () => {
        const form = document.getElementById('zipcodeForm');
        const input = document.getElementById('zipcodeInput');
        const errorMessage = document.getElementById('errorMessage');
    
        fetch('https://welstestdev.wpenginepowered.com/wp-content/uploads/zipcodes.json')
            .then(response => response.json())
            .then(zipcodeData => {
                form.addEventListener('submit', (e) => {
                    e.preventDefault();
                    const zipcode = input.value.trim();
    
                    if (zipcodeData[zipcode]) {
                        window.location.href = zipcodeData[zipcode];
                    } else {
                        errorMessage.textContent = 'Zipcode not found. Please try again.';
                    }
                });
            })
            .catch(error => {
                console.error('Error fetching zipcode data:', error);
                errorMessage.textContent = 'An error occurred. Please try again later.';
            });
    });
    </script>
    

    Best regards,
    Ismael

    in reply to: post slider on 1 row #1464656

    Hey laptophobo,

    Thank you for the inquiry.

    This is possible, but the same number of columns displayed in the desktop view will also appear in the mobile view because each row is wrapped or set within its own container. It’s not possible to separate the slider items without major modification to the post slider script and templates. If that works for you, please add this css code:

    @media only screen and (max-width: 768px) {
    
      /* Add your Mobile Styles here */
      .responsive #top #wrap_all .slide-entry {
        width: 32%;
        margin-left: 1%;
        float: left;
        clear: none;
      }
    
      .responsive #top #wrap_all .avia-content-slider-even .slide-entry.slide-parity-odd,
      .responsive #top #wrap_all .avia-content-slider-odd .slide-entry.slide-parity-even {
        margin: 0;
        clear: none;
      }
    
      .avia_desktop .av_slideshow.avia-slideshow .avia-slideshow-controls a,
      .avia_desktop .av-slideshow-ui .avia-slideshow-controls a {
        opacity: 1;
      }
    }
    

    Best regards,
    Ismael

    in reply to: Problem with forms and WP Super Cache #1464653

    Hey walhai,

    Thank you for the inquiry.

    We reviewed the settings of the WP Super Cache plugin but did not find any options related to this issue. However, it’s possible that the cache plugin is excluding pages with contact forms because these forms often rely on unique tokens or values for security and submission. This might prevent the cache from being applied to those pages.

    Best regards,
    Ismael

    Hey teverkovo,

    Thank you for the inquiry.

    The ava_before_page_in_footer_compile hook is added to allow you to insert additional content before the custom footer. It cannot be used to display an entirely different footer. To specify a different page to display a custom footer, you’ll need to edit the footer.php file directly.

    Best regards,
    Ismael

    in reply to: adding padding on insides of a column (or margins) #1464651

    Hey MysticMimi,

    Thank you for the inquiry.

    how to do is to increase the space on each side of the copy

    Try to edit the cell containing the text and adjust the values in the Styling > Padding > Cell Padding settings. You can also adjust the column’s Layout > Padding > Inner Padding settings. Let us know if this works.

    Best regards,
    Ismael

    in reply to: Special Heading Fonts overlapping Columns/ too small #1464650

    Hi,

    Thank you for the update.

    You can either decrease the size of the font to make sure it fits in the container or add this css code to change how words or text breaks.

    #top #wrap_all .av-inherit-size .av-special-heading-tag {
        word-wrap: break-word;
    }
    

    Best regards,
    Ismael

    in reply to: Fetch to JSON field path #1464649

    Hey Julie,

    Thank you for the inquiry.

    Are you trying to add JavaScript code to a Code Block element? What should happen after fetching the content of the JSON file? You might need to place the JSON file in the wp-content directory or your child theme folder. Please provide the complete code so that we can review it. However, please note that this level of customization is beyond the scope of our support. You may need to hire a freelance developer or reach out to our partner, Codeable.

    If you have any other questions or need further assistance, please don’t hesitate to let us know.

    Best regards,
    Ismael

    in reply to: Issue with Page Scaling on Enfold Template #1464648

    Hi,

    Thank you for the update.

    The site and the demo looks fine on our end. What is the screen resolution of your desktop monitor? Have you tried checking it on a different desktop with a screen resolution lower than 2K? It’s possible that your current desktop monitor has a larger screen resolution, perhaps 2K, 4k or higher. Also, make sure that the browser zoom is set to 100% or default.

    Best regards,
    Ismael

    in reply to: Mobile version table view #1464583

    Hi,

    Thank you for the inquiry.

    As @Guenni007 pointed out above, the beige space is created because of the following css code:

    .avia-table-1 td:nth-child(2) {
      width: 70%;
    }
    

    The issue with the label is due to the table script, which repeats the first label in the first row. To fix this or to prevent the theme from repeating the first label, you can add a blank header row above the other rows.

    Best regards,
    Ismael

    in reply to: Missing Media Library images when inserting images #1464582

    Hi,

    Thank you for the inquiry.

    According to Polylang’s documentation, if you don’t need to translate the meta information of media files, such as the title, alternative text, and description, you can disable the “Languages > Settings > Media” module. Please check the link below for more information:

    // https://polylang.pro/doc/working-with-media/#dont-need-to-translate-media

    Best regards,
    Ismael

    in reply to: Full Page Overlay Menu Font Size #1464581

    Hey spokerstradingco,

    Thank you for the inquiry.

    Which code did you add, and what are you trying to do? Please explain what you’re attempting to change or provide a screenshot using platforms like Savvyify, Imgur, or Dropbox.

    Best regards,
    Ismael

    in reply to: Issues with iframe, Vimeo video link to open in a pop up #1464580

    Hi,

    Hello, where can I find the upgrade version of 6.0.2?

    You may need to download the latest version of the theme from your Themeforest account and upload it to your server via S/FTP. Please check the link below for more information.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: add_filter only if class exists on html tag #1464579

    Hi,

    Great! Glad to know you figured it out. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Uncropped woocommerce image doesn’t work #1464575

    Hi,

    Thank you for the update.

    It turns out that the theme sets a default thumbnail size called “shop_catalog” for the product grid. To adjust this, we added the following filter to the functions.php file:

    function avf_mod_wc_before_shop_loop_item_title_img_size( $size ) {
        return 'full';
    }
    add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_mod_wc_before_shop_loop_item_title_img_size' );
    

    Best regards,
    Ismael

    in reply to: Tooltip with copy #1464574

    Hi,

    Thank you for the update.

    The implementation above relies on the “data-copy” attribute, which cannot be added to any builder elements. You may need to manually copy the HTML into a code or text block. If you need it to look like a default builder button, you can try this html:

    
    <div class="avia-button-wrap avia-button-center">
        <a href="javascript:void(0);" 
           class="avia-button av-lzt94u23-6a241e487832b9aa657eb8d56d62aa80 av-link-btn avia-icon_select-yes-left-icon avia-size-small avia-position-center avia-color-theme-color btn-copy js-tooltip js-copy"
           data-toggle="tooltip"
           data-placement="bottom"
           data-copy="https://urltocopy.com/test/"
           title="Copy URL"
           onclick="var tempInput = document.createElement('textarea'); tempInput.value = this.getAttribute('data-copy'); document.body.appendChild(tempInput); tempInput.select(); document.execCommand('copy'); document.body.removeChild(tempInput); alert('URL copied to clipboard: ' + tempInput.value);">
            <span class="avia_button_icon avia_button_icon_left" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span>
            <span class="avia_iconbox_title">Click me</span>
        </a></div>
    

    Best regards,
    Ismael

    in reply to: Code Korrekturen #1464572

    Hi,

    Thank you for the screenshots.

    Does it change when you switch between Visual and Text modes? Where can we reproduce this issue? Please create a test page and provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Special Heading Fonts overlapping Columns/ too small #1464571

    Hey spokerstradingco,

    Thank you for the inquiry.

    On smaller screens, the font size is set to 0.8em. Did you configure the font size for different screen sizes (Styling > Font Sizes > Heading Font Sizes)?

    #top #wrap_all .av-special-heading.av-lxums4ni-4f37f7f215843741833d4240ad4206d4 .av-special-heading-tag {
        font-size: 0.8em;
    }

    Best regards,
    Ismael

    in reply to: Issue with Page Scaling on Enfold Template #1464570

    Hey pnamroud,

    Thank you for the inquiry.

    The site looks fine on our end with the maximum container width set to 1310px.

    .responsive .container {
        max-width: 1310px;
    }

    Would you mind providing a screenshot of the issue? You can use platforms like Savvyify, Imgur or Dropbox.

    Best regards,
    Ismael

Viewing 30 posts - 3,151 through 3,180 (of 66,206 total)