Forum Replies Created

Viewing 30 posts - 811 through 840 (of 66,027 total)
  • Author
    Posts
  • 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

    in reply to: Add Event-Date to Portfolio #1480181

    Hi,

    In the meta_query above, try to replace the value 1 with “Ja”.

    'value'   => 'Ja', 
    

    Let us know the result.

    Best regards,
    Ismael

    Hey dogsbody,

    Thank you for the inquiry.

    The process should be the same for SVG icons. Create a folder called “svg”, place the “bluesky.svg” and “mastodon.svg” file inside, compress or archive the folder to a zip file and name it “social”, then upload it to the SVG Iconset and Iconfont Manager. You may need to delete the previous icons to avoid conflict.

    https://kriesi.at/documentation/enfold/svg-icon-sets/#use-svg-icon-files-to-create-svg-icon-set-quick-setup

    Add this in the functions.php file to register the social icons:

    function avia_add_custom_icon($icons)
    {
        $icons['mastodon'] = array('font' => 'svg_social', 'icon' => 'mastodon');
        $icons['bluesky'] = array('font' => 'svg_social', 'icon' => 'bluesky');
        return $icons;
    }
    add_filter('avf_default_icons', 'avia_add_custom_icon', 10, 1);
    
    function avia_add_custom_social_icon($icons)
    {
        $icons['mastodon'] = 'mastodon';
        $icons['bluesky'] = 'bluesky';
        return $icons;
    }
    add_filter('avf_social_icons_options', 'avia_add_custom_social_icon', 10, 1);
    add_filter('avia_social_share_link_arguments', 'avia_add_social_share_link_arguments', 10, 1);
    function avia_add_social_share_link_arguments($args)
    {
        $mastodon = array('mastodon' => array("encode" => true, "encode_urls" => false, "pattern" => "https://www.mastodon.com/", 'label' => __("Share on mastodon", 'avia_framework')));
        $bluesky = array('bluesky' => array("encode" => true, "encode_urls" => false, "pattern" => "https://www.bluesky.com/", 'label' => __("Share on bluesky", 'avia_framework')));
        $args = array_merge($mastodon, $bluesky, $args);
        return $args;
    }
    

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: problem with video on mobile and css on chrome mobile #1480178

    Hi,

    We replied here: https://kriesi.at/support/topic/popup-missing-form/#post-1480177

    Best regards,
    Ismael

    in reply to: magnific popup missing form #1480177

    Hi!

    Thank you for the update.

    Try adjusting the margin of the iframe container to align it to the center.

    #top .mfp-iframe-scaler {
        width: 60%;
        margin: 0 auto;
    }

    View post on imgur.com

    Cheers!
    Ismael

    in reply to: Boxes – Distance between rows #1480176

    Hey Loveronika,

    Thank you for the inquiry.

    We set the first row to have an equal height so it’s the same as the next rows. We also removed the custom top and bottom margins.

    View post on imgur.com

    If you need to adjust the spacing on mobile view, please add this css code:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top .flex_column_table.av-equal-height-column-flextable:not(:first-child) {
        margin-top: 0;
      }
    }

    Best regards,
    Ismael

    Hi,

    We adjusted the css code and added another for mobile view.

    @media only screen and (min-width: 768px) {
    
      /* Add your Desktop Styles here */
      #top .av-m8dhdoo2-9be497766191be21636491354eb51ed0 .avia-content-slider-inner {
        max-height: 180px !important;
        overflow: hidden;
      }
    }
    
    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      #top .av-m8dhdoo2-9be497766191be21636491354eb51ed0 .avia-content-slider-inner .slide-entry {
        max-height: 115px !important;
        overflow: hidden;
      }
    }

    View post on imgur.com

    Best regards,
    Ismael

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

    Hi,

    Thank you for the screenshot.

    Looks like you managed to add spacing above the button with this css code.

    #package-section .avia-button-wrap {
        padding-top: 3.5em !important;
        padding-bottom: .2em !important;
    }

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Layerslider align center #1480172

    Hi,

    Glad we could be of help! Let us know if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Overlay on Columns #1480171

    Hey nicolealbaek,

    Thank you for the inquiry.

    There is no overlay option for the Column element, but you can apply a background in the Styling > Background panel. For the gradient effect, you can use the Color Section element, toggle the Styling > Background Overlay > Enable Overlay? option, then apply the class name “av-custom-gradient-section” in the Advanced > Developer Settings > Custom CSS Class field. Add this code to override the default overlay color with a gradient.

    #top #wrap_all .avia-section.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;
    }

    Best regards,
    Ismael

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

    Hi,

    Thank you for the info.

    You can add this css code to adjust the padding around the menu button:

    #top #wrap_all #header #menu-item-848 {
        padding: 0 20px;
    }

    You may need to toggle or temporarily disable the Enfold > Performance > File Compression settings, then purge the cache afterward.

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Blog Layout Page and Post #1480169

    Hi,

    Great! Glad to know that you managed to figure this out. Feel free to open another thread if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: No Images appear on Work page of Dark Enfold Theme #1480168

    Hi,

    Thank you for the update.

    The site above is not using any of our themes. Are you sure it’s the correct URL? Please provide the link to the site containing the Enfold theme — screenshots will also help.

    Best regards,
    Ismael

    in reply to: Why do some of my portfolio items have a grey line? #1480167

    Hi,

    Great! Glad to know it’s been resolved. Please don’t hesitate to open another thread if you have more questions. Have a nice day.

    Best regards,
    Ismael

    Hi,

    Did you select the blog or posts page in the Settings > Reading panel? Please reset these options to default, then make sure to set the home and blog page in Enfold > Theme Options. You can then adjust the style of the blog in the Enfold > Blog Layout panel.

    For more info about the blog settings, please check this documentation: https://kriesi.at/documentation/enfold/blog-post

    Best regards,
    Ismael

    in reply to: Picture of the color section #1480165

    Hey Sandra,

    Thank you for the inquiry.

    Could you provide a screenshot of the changes you’d like to make? You can use platforms like Savvyify, Imgur, or Dropbox to upload and share the screenshot. If you need to adjust the background position and size of the image, you can try this css code:

    .avia-section.av-1ajoc0o-f5dcf8e4d3d46a245540e44c381d48ec .av-parallax .av-parallax-inner {
        background-repeat: repeat;
        background-position: 70% 50%;
        background-attachment: scroll;
        background-size: contain !important;
    }

    Best regards,
    Ismael

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

    Hi,

    What is the screen resolution of your laptop? If it has a lower screen resolution, you could decrease the max-width value, then adjust the Enfold > General Layout > Maximum Container Width. Make sure to purge the cache or remove the browser history before checking.

    Best regards,
    Ismael

    in reply to: Add space between Iconbox Icon and Title #1480100

    Hey WorldinColor,

    Thank you for the inquiry.

    You can add this css code to adjust the space between the iconbox icon and title:

    #top .av-m868o6fq-2209228544dca5bbf34baf8f38fdb81c .iconbox .iconbox_content_title {
        margin-top: 50px;
    }

    Best regards,
    Ismael

    in reply to: Setting up two new social profiles under Enfold 7.1 #1480099

    Hi,

    Yes, you’re right. It’s the default icon fonts. Please feel free to open another thread if you have more questions. Have a nice day.

    Best regards,
    Ismael

    in reply to: Sticky element #1480098

    Hi,

    You can try this css code to adjust the display of the header on mobile view:

    @media only screen and (max-width: 767px) {
    
      /* Add your Mobile Styles here */
      .responsive #header_main .container {
        height: 130px !important;
      }
    
      #top .avia_search_element.av-m8j6ucsp-f1ed25db4fcf2e1d4ba1dd7653626aed #s.av-input-field {
        line-height: 33px;
        height: 33px;
        color: #bed028;
        font-size: 14px;
      }
    
      #top #searchform_element {
        margin-bottom: 0;
      }
    
      #top .avia-section.av-m8h8o2m6-a6ff6f0926c56ce5cb244fa93948b320 {
        background-color: transparent;
        background-image: unset;
        margin-top: 5px;
        margin-bottom: 0px;
        position: absolute !important;
        margin-top: 0;
        z-index: 5000;
        margin-top: -40px;
      }
    
      #top .av-main-nav-wrap ul {
        margin: 0;
        padding: 0;
      }
    }

    View post on imgur.com

    Best regards,
    Ismael

    in reply to: Content slider not sliding #1480097

    Hi,

    Sorry for the delay. This is the default transition of the slider and unfortunately, this cannot be adjusted. If you need more control over the initial transition of the slides, you can create sliders using the Layer Slider plugin.

    Best regards,
    Ismael

    Hey ilona-l,

    Thank you for the inquiry.

    We are not yet sure why the slider resizes like that, but to temporarily adjust it, we added this css code:

    #top .av-m8dhdoo2-9be497766191be21636491354eb51ed0 .avia-content-slider-inner {
      max-height: 180px !important;
      overflow: hidden;
    }

    Please make sure to purge the cache before checking.

    Best regards,
    Ismael

Viewing 30 posts - 811 through 840 (of 66,027 total)