Forum Replies Created

Viewing 30 posts - 91 through 120 (of 65,328 total)
  • Author
    Posts
  • in reply to: Testimonals on mobile #1480310

    Hi,

    Looks like the nav animation doesn’t run on mobile view, rendering it invisible. Try to include this css code:

    .responsive #top #wrap_all .av-flex-cells .avia-slideshow-arrows a {
        opacity: 1;
    }

    Best regards,
    Ismael

    in reply to: Pricing boxes – align button at bottom of box #1480309

    Hi,

    Try to replace it with av-8hgou0-66c1339874a8df71eec44a8ce967092b or apply a Custom CSS Class name to the element.

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

    Best regards,
    Ismael

    in reply to: social media icons header and footer #1480308

    Hey rixi,

    Thank you for the inquiry.

    You can try this css code:

    #top #wrap_all .social_bookmarks li {
        color: #000;
        background-color: #fff !important;
    }
    
    #top #wrap_all .social_bookmarks li a {
        color: #000;
    }

    Screenshot: https://imgur.com/cCzmGAe

    Best regards,
    Ismael

    in reply to: magnific popup missing form #1480307

    Hi,

    It works when we disable the Sender.net email marketing plugin. This plugin registers and initializes the same script, which conflicts with the callback function in the lightbox popup. Do you need this plugin?

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Zeitleiste / Timeline nicht mehr responsive #1480306

    Hey PFreimann,

    Thank you for the inquiry.

    Looks like the milestone title has been placed in the date field. Please move the title of the milestones to the correct field to keep it visible on mobile view. We also recommend creating another milestone element specifically for mobile view with Styling > General Styling > Milestone Placement set to Left or Right, not Alternate. You can use the Advanced > Responsive > Element Visibility settings to control the display of the elements on different screen sizes.

    Best regards,
    Ismael

    in reply to: Boxes – Distance between rows #1480305

    Hi,

    The css modification should only affect the mobile view. We added it again in the Quick CSS field. Please make sure to purge the cache or use incognito mode before checking the page.

    Screenshot: https://imgur.com/tdcrc0S

    Best regards,
    Ismael

    in reply to: Overlay on Columns #1480304

    Hi,

    Glad to know it’s working. Yes, you can use it with the Grid Row element, but you may need to adjust the css a bit.

    #top #wrap_all .av-custom-gradient-section {
      background-color: transparent;
      background-image: linear-gradient(180deg, #FFFFFF21 23%, #FFCBA4 93%);
      opacity: 1;
      transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    }
    

    To apply different gradient colors, add another Custom CSS Class name to the element, such as “av-custom-gradient-section av-gradient-black-to-white” or “av-custom-gradient-section av-gradient-red-to-white”, then specify the gradient with this css:

    #top #wrap_all .av-gradient-black-to-white {
      background: rgb(0,0,0);
      background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(255,255,255,1) 65%);
    }
    
    #top #wrap_all .av-gradient-red-to-white {
      background: rgb(255,0,0);
      background: linear-gradient(0deg, rgba(255,0,0,1) 0%, rgba(255,255,255,1) 65%);
    }

    You can use this tool to generate the gradient CSS properties: https://cssgradient.io/

    To apply a background image with a gradient, you’ll need to use the Color Section element. As instructed above, you need to enable the color overlay.

    Best regards,
    Ismael

    in reply to: Kontaktformular Optionen #1480303

    Hey thomasw149,

    Thank you for the inquiry.

    Unfortunately, conditional input or form fields are not available in the default contact form element. You may need to use a plugin such as WPForms or Contact Form 7.

    https://wordpress.org/plugins/cf7-conditional-fields/
    https://wpforms.com/docs/how-to-use-conditional-logic-with-wpforms/

    Best regards,
    Ismael

    in reply to: Woocommerce product page order filter #1480302

    Hi,

    That is possible, but it would require significant modifications to the theme, which is beyond the scope of support. You may need to hire a freelance developer or contact someone on Codeable.

    https://kriesi.at/contact/customization

    You can try overriding the avia_woocommerce_overwrite_catalog_ordering function in the enfold/config-woocommerce/config.php file.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We reset the settings in the Settings > Reading panel to default, then adjusted Enfold > Blog Layout > Blog Layout to Grid Layout. You can adjust this as needed.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Extra padding for ONE menu item? #1480243

    Hi,

    We adjusted the css code in the Quick CSS field. Please make sure to purge the cache before checking the page.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Blog posts element – preview image size not working #1480242

    Hey mosaic,

    Thank you for the inquiry.

    Please note that the specified size of 705x705px is the maximum dimension of the thumbnail. The generated thumbnail will not be cropped to this dimension and will still retain its aspect ratio. For example, if the uploaded image has a landscape orientation and is larger than 705px, the generated masonry thumbnail will have a maximum width of 705px, but the height might vary based on the calculated ratio. You may need to select a different thumbnail such as magazine, portfolio or portfolio_small.

    Best regards,
    Ismael

    in reply to: Footer not working on child theme after update. #1480241

    Hey bensondesign,

    Thank you for the inquiry.

    Did you override the footer.php or header.php file in the child theme? Please make sure the template files are updated and using the latest version from the parent theme. Let us know the result.

    Best regards,
    Ismael

    in reply to: Change the Scroll Down Arrow to somethign different #1480240

    Hey hisdi,

    Thank you for the inquiry.

    Use this code in the functions.php file to adjust the icon of the scroll down arrow:

    add_filter('avf_default_icons','avf_default_icons_mod', 10, 1);
    function avf_default_icons_mod($icons)
    {
        $icons['svg__scrolldown'] = array( 'font' =>'entypo-fontello', 'icon' => 'uf106');
        return $icons;
    }

    For more info on how to adjust the icon and find the icon unicode, please refer to this documentation:

    https://kriesi.at/documentation/enfold/icon/#how-to-find-the-icon-unicode
    https://kriesi.at/documentation/enfold/icon/

    Best regards,
    Ismael

    in reply to: Scroll to bottom icon higher #1480239

    Hey hisdi,

    Thanks for reaching out.

    You can add this css code to adjust the position of the scroll down arrow:

    #top .scroll-down-link {
        bottom: 100px;
        margin: 0;
    }
    
    #top .av-section-color-overlay-wrap {
        position: relative;
    }

    Best regards,
    Ismael

    in reply to: Header not full width like attached picture #1480238

    Hi,

    Thank you for the update.

    You cannot set the opacity of the background color in the General Styling panel, but you can manually adjust it using css.

    .header_color .header_bg {
        background-color: rgba(255,255,255,0.5);
    }

    Best regards,
    Ismael

    in reply to: Woocommerce product page order filter #1480237

    Hey tdatalab,

    Thank you for the inquiry.

    Have you tried adding the Product Category widget in the Appearance > Widgets panel? Please provide a link to the product page so we can check it. To upload a screenshot, you can use platforms like Savvyify, Imgur or Dropbox.

    Best regards,
    Ismael

    in reply to: How import demo ? #1480236

    Hey Arobazinfo,

    Thank you for the inquiry.

    You can import the demo from the Enfold > Demo Import panel. Please check the documentation below for more details: https://kriesi.at/documentation/enfold/import-demos/

    Best regards,
    Ismael

    in reply to: Help required with fatal error for Enfold Theme #1480235

    Hey grantloon,

    Thank you for the inquiry.

    The latest version of the Enfold theme is 7.0.1. Please download the theme from ThemeForest and upload it to your server via FTP. For more info, please refer to the documentation below.

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

    Best regards,
    Ismael

    in reply to: Problem Image background page #1480234

    Hey Christian,

    Thank you for the inquiry.

    The image used as the background is quite large, sized at 2000x1126px. You may want to reduce the dimensions of the image before uploading it and make sure it is compressed to improve page speed. Please refer to the article below for more info on site optimization.

    https://gtmetrix.com/wordpress-optimization-guide.html

    Best regards,
    Ismael

    in reply to: post delimiter #1480233

    Hi,

    The width of the meta info is limited to 40em. To adjust it, you can add the following css code:

    #top .fullsize .template-blog .post .entry-content-wrapper > * {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    Best regards,
    Ismael

    in reply to: Post Category Filtering #1480232

    Hey GoodfishGroup_Marketing,

    Thank you for the inquiry.

    You can add this code in the functions.php file to adjust the post grid query based on the value of cat query parameter.

    function avia_post_grid_query_mod($query, $params) {
            if ( isset($_GET['cat']) ) {
                $category_id = intval($_GET['cat']);
                if ($category_id) {
                    $query['category__in'] = array($category_id);  
                }
            }
    
        return $query;
    }
    add_filter('avia_post_grid_query', 'avia_post_grid_query_mod', 10, 2);
    

    You may need to build the sorting buttons manually using the available elements in the builder.

    Best regards,
    Ismael

    in reply to: Preview not working #1480231

    Hey sandra_m_williams,

    Thank you for the inquiry.

    The preview seems to be working correctly on our end. As shown in the screenshot below, the new Text Block we added to the page is visible when we preview it. Please try to use a different browser or clear the browser history.

    View post on imgur.com

    Have you tried using the Advance Layout Builder?

    https://kriesi.at/documentation/enfold/intro-to-layout-builder/

    Best regards,
    Ismael

    in reply to: ava_cron_post_css_delete_files #1480230

    Hi,

    According to @Guenter, you can try this code in the functions.php file:

    add_theme_support(‘avia_log_cron_job_messages’)
    

    Then, enable WP_DEBUG and the error logs to see if there’s any errors.

    Best regards,
    Ismael

    in reply to: Overlay on Columns #1480229

    Hi,

    Thank you for the update.

    You have to place the name “av-custom-gradient-section” in the Custom CSS Class field and add the css rule above in the Quick CSS field. Please create a test page and provide the link in the private field.

    Best regards,
    Ismael

    in reply to: magnific popup missing form #1480228

    Hi,

    Thank you for the update.

    Try to remove the sender script from the color section or code block, leave the div container, then replace the inline_popup_enabler with this code.

    function inline_popup_enabler(){ ?>
        <script>
        (function($){
            $(window).on('load', function() {
                $('.inline_popup').magnificPopup({
                    type: 'inline',
                    midClick: true,
                    callbacks: {
                        open: function() {
                            (function (s, e, n, d, er) {
                                s['Sender'] = er;
                                s[er] = s[er] || function () {
                                    (s[er].q = s[er].q || []).push(arguments);
                                }, s[er].l = 1 * new Date();
                                var a = e.createElement(n),
                                    m = e.getElementsByTagName(n)[0];
                                a.async = 1;
                                a.src = d;
                                m.parentNode.insertBefore(a, m);
                            })(window, document, 'script', 'https://cdn.sender.net/accounts_resources/universal.js', 'sender');
                            
                            sender('4f4c8522254761');
                        }
                    }
                });
            });
        })(jQuery);
        </script>
    <?php }
    add_action('wp_footer', 'inline_popup_enabler');

    Let us know the result.

    https://dimsemenov.com/plugins/magnific-popup/documentation.html#api

    Best regards,
    Ismael

    in reply to: Styling not showing for all elements after migration #1480227

    Hi,

    Thank you for the update.

    Did you remove the page pond-cleans? It is no longer accessible and the admin details are now invalid. Did you fix the issue?

    Best regards,
    Ismael

    in reply to: Upgrade Enfold Theme #1480184

    Hey Jim Dalrymple,

    Thank you for the inquiry.

    Did you create a site backup or export the theme options before deleting the Enfold theme? You should still be able to restore the previous layout and design as long as the database entries for the theme options are still intact. We recommend to restore the site using a backup, then update the theme via FTP instead of deleting it completely.

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

    Best regards,
    Ismael

    in reply to: cookie banner needs some work #1480183

    Hi,

    Sorry for the delay. Please add this css code to adjust the layout of the cookie consent on mobile view:

    @media only screen and (max-width: 498px) {
    
      /* Add your Mobile Styles here */
      .avia-cookie-consent .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px;
      }
    
      .avia-cookie-consent .container .avia_cookie_text {
        align-self: center;
        font-size: 14px;
        line-height: 1.2em;
      }
    }

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Problem with Gallery & Slider #1480182

    Hi,

    Thank you for the update.

    The slider and gallery images are still visible when we checked the site. This screenshot was taken from the FR site.

    View post on imgur.com

    Best regards,
    Ismael

Viewing 30 posts - 91 through 120 (of 65,328 total)