Forum Replies Created

Viewing 30 posts - 27,571 through 27,600 (of 67,565 total)
  • Author
    Posts
  • in reply to: Expanding Content Hidden in Tab Views #1003885

    Hi,

    The site is still loading the parent theme’s portfolio.js file. Did you add the following filter in the functions.php file too?

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
      $template_url = get_stylesheet_directory();
          array_unshift($paths, $template_url.'/shortcodes/');
    
      return $paths;
    }

    If this is still not working, please post the login details in the private field so that we can test it.

    Best regards,
    Ismael

    in reply to: Enfold – Magazine (post with link format does not run) #1003883

    Hi,

    Yes, it’s a little different now. Just add this code around line 685 of the magazine.php file:

    $link = get_post_format($entry->ID) == 'link' ? avia_custom_link_content_filter($entry->post_content) : $link;
    

    And then add the “avia_custom_link_content_filter” function just below the avia_sc_magazine class or at the very bottom of the file. Let us know if it works.

    Best regards,
    Ismael

    in reply to: Woocommerce produck page is blank #1003873

    Hi,

    You’re welcome! And no worries. Please feel free to open a new thread if you need anything else. :)

    If you have the time, please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: Using Custom icons #1003869

    Hi,

    You’re welcome. Where we can see the table? Please provide a link to the page. You may need to enable the custom css class field.

    // https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#turn-on-custom-css-class-field-for-all-alb-elements

    Best regards,
    Ismael

    in reply to: Self-Hosted Video Background Pt. 2 #1003867

    Hi,

    That is the column offset. You can adjust that for mobile view. Just add this css code.

    @media only screen and (max-width: 1024px) {
        #agency .flex_column_table.av-equal-height-column-flextable.-flextable {
            margin-top: -50px !important;
        }
    }

    Best regards,
    Ismael

    Hi,

    Thanks for the update.

    1.) Set the “Header” > “Transparency Options” > “Transparency menu color” option to “#ffffff” or white. That is going to be the color of the menu items when the header is transparent. For non-transparent headers, you have to configure the “General Styling” > “Logo Area” > font color options.

    Best regards,
    Ismael

    in reply to: Google maps is blank #1003865

    Hi,

    Thanks for the update.

    The login credentials are not valid anymore. Did you remove those user accounts?

    Best regards,
    Ismael

    in reply to: How to decrease logo size? #1003863

    Hi,

    Thanks for the update.

    This should resize the logo according to the header height on scroll.

    add_action('wp_footer', 'avia_scroll_resize_logo', 9999);
    function avia_scroll_resize_logo() {
        ?>
        <script>
            (function($) {
                $(document).ready(function () {
                    var logo = $('.logo a img');
    
                    function avia_scroll_resize_logo()
                    {
                        set_status = function()
                        {
                            var st = $(window).scrollTop();
    
                            if(st < 100 && st < 79)
                            {
                                logo.css('height', logo.parents('#header_main').height() - 15);	
                            } else {
                                logo.css('height', '');
                            }
                        };
    
                        $(window).on( 'scroll',  function(){ window.requestAnimationFrame( set_status )} );
                        set_status();
                    }
    
                    avia_scroll_resize_logo();
                });
            })(jQuery);
        </script>
        <?php
    }

    Best regards,
    Ismael

    in reply to: Menu with center logo and Shrinking Header #1003860

    Hi,


    @Guenni007
    : That’s a cool effect. :)

    @Eric: We’ll check it there.

    Best regards,
    Ismael

    in reply to: Cart widget hidden behind page content #1003633

    Hi,

    Thanks for the update.

    The mobile menu and the icon doesn’t overlap when I adjust the screen.

    Use this css code to adjust the position of the mobile menu and display the cart icon.

    @media only screen and (max-width: 767px) {
    .responsive.html_bottom_nav_header.html_cart_at_menu #top #wrap_all .main_menu {
        right: 0;
        z-index: 102;
    }
    
    .responsive.html_top_nav_header.html_cart_at_menu #top #menu-item-shop {
        right: 165px;
        position: absolute;
        z-index: 1000;
    }
    }
    
    @media only screen and (max-width: 480px) {
        .responsive.html_top_nav_header.html_cart_at_menu #top #menu-item-shop {
            right: 95px;
        }
    }

    Best regards,
    Ismael

    in reply to: Google API ket not working with maps #1003612

    Hi,


    @asapevictions
    : Can we have access to the site? The map is displaying properly when I checked. Did you set up a billing account yet?

    Best regards,
    Ismael

    in reply to: Hiding Pinterest images via display none #1003609

    Hi,

    Adding an invisible image is not going to work because Pinterest relies on the Open Graph tag. This is the current og:image tag.

    Is that the image that you see when you share the post on Pinterest? The post’s featured image is usually used as the og:image value.

    Best regards,
    Ismael

    • This reply was modified 7 years, 7 months ago by Vinay.
    in reply to: Sticky header with full width sub menu on iPad #1003599

    Hi,

    Sorry for the late response. I almost forgot what we are dealing with here. I don’t see any full width sub menu in the “pro-area” page and the screenshots are no longer available. Please provide the screenshots again.

    Best regards,
    Ismael

    in reply to: Main Menu position in relation to centered logo #1003472

    Hey Stefan,

    Thank you for using Enfold.

    1.) Try to adjust the “Header Size” in the Header > Header Layout panel. It is currently set to 150px.

    2.) There’s nothing like that, unfortunately. And I don’t think it’s going to be that useful because the structure of the page may vary due to the advance layout builder. You can easily navigate through the html with your browser inspector.

    Best regards,
    Ismael

    in reply to: Footer widget align bottom #1003469

    Hey Freek,

    Thank you for using Enfold.

    Are you going to add more than one widget to each columns? If you’re not planning to do that, you can set the position of the widget to absolute.

    #footer .container {
        position: relative;
        min-height: 300px;
    }
    
    #footer .widget {
        position: absolute;
        bottom: 0;
    }

    Best regards,
    Ismael

    in reply to: Woocommerce produck page is blank #1003461

    Hey Pascal,

    Thank you for using Enfold.

    We disabled the “avia_woocommerce_gallery_thumbnail_description” modification in the child theme because it causes an error. Why did you add that?

    Best regards,
    Ismael

    in reply to: How to schedule a slide with layer slider #1003460

    Hey I-Visio,

    Thank you for using Enfold.

    I don’t think you can use the schedule option here because you can only specify the start and end date when a certain slide will display. The PHP date format works the same, the slider will just interpret “tomorrow” as “8-31-2018” since “today” is “8-30-2018” or “monday 9am” as “9-03-2018 at 9am”. I guess you’re only option is to set the Slideshow > Slideshow Behavior > Start with slide to random. Unfortunately, you can’t include or exclude a certain group of slides on each page load. Maybe, it’s possible with the events callback but it will take some research.

    Best regards,
    Ismael

    in reply to: Using Custom icons #1003455

    Hey Digital-Saint,

    Thank you for using Enfold.

    Are you referring to the 3 columns with icons? You can replace the Icon element with an Image element.

    Best regards,
    Ismael

    in reply to: Self-Hosted Video Background Pt. 2 #1003453

    Hi,

    The changes in that file are going to be included in the next patch. You have to add it manually for now.

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    in reply to: Headline Rotator Middle Text Color #1003451

    Hi,

    1.) You can adjust the logo and menu behavior in the Header > Header Behavior panel. Toggle the “Let logo and menu position adapt to browser window” option.

    2.) The height of the full width easy slider is based on the dimension of the slider image itself and the browser view port. You can set the slider’s “Stretch image to fit the slideshow size?” settings to the second option so it won’t stretch the image, and upload an image that is 300px but this may create space on both sides of the slider container when the browser view port is wider than the image. You can also replace the slider with a color section and then set the minimum height to 300px.

    Best regards,
    Ismael

    in reply to: Setting up search by portfolio items #1003444

    Hi,

    Nice. Unfortunately, what you’re asking requires modifications that are beyond the scope of support. You will have to call an AJAX request to render the search results on the page where the search bar is located. A simple workaround is to just put the same search bar on the search results page.

    Best regards,
    Ismael

    in reply to: Expanding Content Hidden in Tab Views #1003442

    Hi,

    Thanks for the update.

    /themes/enfold-child/shortcodes

    That is the correct structure. It is clearly stated in our previous reply that you have to create a folder called “shortcodes” inside the child theme directory.

    Create a folder called “shortcodes” inside the child theme directory and then copy the “portfolio” folder along with its content inside that folder.

    Let us know if it’s still confusing. :)

    Best regards,
    Ismael

    in reply to: Base Price in Masonry Product type #1003441

    Hi,

    You have to enable the shortcodes in the child theme first.

    // https://kriesi.at/documentation/enfold/intro-to-advanced-layout-builder/#add-elements-to-alb

    After adding that filter in the functions.php file, create a folder called “shortcodes” inside the child theme directory and then move the av-helper-masonry.php file inside. You can do the modifications after that.

    Best regards,
    Ismael

    in reply to: Custom Fontello Font not displaying correctly on mobile #1003440

    Hi,

    I meant the actual goodreads svg file. I would like to generate a font file from it. Is it colored?

    Best regards,
    Ismael

    Hi,


    @tixxpff
    : Alright. Let us know if you encounter the issue again.
    If you have the time, try to delete the font file and then make sure that you’re on a secure connection (https) before uploading the font files back.


    @tjswarbs78
    : Thanks for the help!

    Best regards,
    Ismael

    in reply to: Page builder keeps loading #1003387

    Hi,

    Thanks for the update.

    This is what I get whenever I try to access anything in the dashboard. I already deactivated the Enfold theme via FTP and I also tried to rename the plugins folder to deactivate it but no dice. I would like to do some more tests but I can’t access anything even when the theme is deactivated.

    Screenshot: https://imgur.com/a/8CO7rHs

    Please ask your hosting provider to disable CDN temporarily.

    Best regards,
    Ismael

    in reply to: Self-Hosted Video Background Pt. 2 #1003382

    Hi,

    Thanks for the update.

    Replace the config-templatebuilder > avia-shortcodes > slideshow > slideshow.js file with this code.

    // https://pastebin.com/9Dk7PFsU

    Don’t forget to toggle the Enfold > Performance > File Compression settings after replacing the file.

    Yes, the video quality depends on the connection speed. If I am not mistaken, there’s a setting somewhere in the youtube panel where you can force the video to play on the highest quality every time.

    Best regards,
    Ismael

    in reply to: WordPress cannot update! #1003379

    Hi,

    There will be a notification in the theme options panel when a new version is available. The site is currently using the latest version now so you won’t find any notification. You can check it in the Enfold > Theme Updates panel.

    Best regards,
    Ismael

    Hi,

    Great! Glad we could help!

    Please take a moment to review our theme and show your support https://themeforest.net/downloads
    Don’t forget to bookmark Enfold Documentation for future reference.

    Thank you for using Enfold :)

    Best regards,
    Ismael

    in reply to: Google maps is blank #1003374

    Hi,

    There’s nothing in your previous reply. Please give us an actual link to one the posts without the category. It’s quite strange that the taxonomy will affect the map.

    Best regards,
    Ismael

Viewing 30 posts - 27,571 through 27,600 (of 67,565 total)