Forum Replies Created

Viewing 30 posts - 25,021 through 25,050 (of 66,172 total)
  • Author
    Posts
  • Hi,

    Yes, that’s possible. Use this filter:

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 50, 1);
    function avf_header_setting_filter_mod($header_settings) {
    	if ( is_tax() || is_archive() ) {	
    		$header_settings['header_title_bar'] = "title_bar_breadcrumb";
        }
    
    	return $header_settings;
    }

    Disable the title and breadcrumbs from the theme options.

    Best regards,
    Ismael

    Hi,

    I got into your file server and I found some templates files in the root directory. How did that happen? Please clean your directory and upgrade PHP to version 7.2.

    Best regards,
    Ismael

    in reply to: Youtube video background shows 'more videos' #1026676

    Hey Slade,

    Thank you for using Enfold.

    I can’t reproduce the issue on Opera/Chrome Windows 7. Where are you testing this?

    Best regards,
    Ismael

    in reply to: Problem with Google Maps #1026674

    Hi,


    @locke95
    : I can see these errors in the console but I’m not really sure where they’re coming from.

    (index):725 Uncaught SyntaxError: Invalid or unexpected token
    (index):746 Uncaught SyntaxError: Unexpected token <
    /kontakt/undefined:1 Failed to load resource: the server responded with a status of 404 ()
    

    A plugin conflict may be one of the reasons for this issue.
    To find which plugin is causing the conflict please follow these steps:

    1. Go to your plugins page > Deactivate all active Plugins
    2. Update WordPress and Enfold to the latest version if you have not.
    3. Make sure all the plugins are updated.
    4. If the problem does not persist when plugins are turned off, activate one plugin at a time and refresh until you find the plugin in conflict.

    We await the results of your plugin compatibility test.

    Thanks for your cooperation :)

    Best regards,
    Ismael

    in reply to: CPT – Select custom taxonomy in mansonry module #1026672

    Hey conflock,

    Thank you for using Enfold.

    Is this fixed? I can only see a single product from the selected term in the “Medien verstehen” page.

    Best regards,
    Ismael

    in reply to: Mobile breaking point for grids #1026670

    Hey westefan,

    Thank you for using Enfold.

    Looks like you’ve already figured it out. Did you add this css code?

    .responsive #top #wrap_all .flex_column.av-break-at-tablet, .responsive #top #wrap_all .av-break-at-tablet .flex_cell {
        margin: 0px;
        margin-bottom: 0px !important;
        width: 100%;
        display: block;
    }

    Best regards,
    Ismael

    in reply to: Portfolio Grid background color #1026669

    Hey Charlotte,

    Thank you for using Enfold.

    Are you referring to the masonry element? You can use this css code to add an overlay beneath the title.

    .responsive #top .av-inner-masonry-content {
        background: rgba(0,0,0,.5) !important;
    }

    And use this css code to increase the font size:

    #top .av-caption-style-overlay .av-masonry-entry .av-masonry-entry-title {
        font-size: 2em;
    }
    

    Best regards,
    Ismael

    in reply to: Contact form sending "empty" emails #1026667

    Hey luckylobo10,

    Thank you for using Enfold.

    Where can we see the contact form? Is the custom captcha enabled? Are the email addresses legit, or do they look “spammy”?

    Best regards,
    Ismael

    in reply to: new flipbox feature #1026663

    Hey petradrumm,

    Thank you for using Enfold.

    Yes, that’s possible. Add this script in the functions.php file:

    function ava_flipbox_clicked(){
        ?>
        <script>
            (function() {
                const f = document.querySelector('.avia-icongrid-flipbox');
                flipBox = (event) => {
                    const li = event.currentTarget;
                    if( ! li.classList.contains('clicked') ) {
                        li.classList.add('clicked');
                    } else {
                        li.classList.remove('clicked');
                    } 
                }
    
                if(f) {
                    const l = f.children;
                    for (i = 0; i < l.length; i++) {
                        l[i].addEventListener( 'click', (event) => flipBox(event), false );
                    }
                }
            })();
        </script>
        <?php
        }
    add_action('wp_footer', 'ava_flipbox_clicked');

    And then add this css code to disable the default hover state and add the new “clicked” state:

    .avia-icongrid-flipbox li:hover .avia-icongrid-front, .avia-icongrid-flipbox li.av-flip .avia-icongrid-front {
      -webkit-transform: none;
      transform: none;
    }
    
    .avia-icongrid-flipbox li.clicked .avia-icongrid-front, .avia-icongrid-flipbox li.av-flip.clicked .avia-icongrid-front {
      -webkit-transform: rotateY(180deg);
      transform: rotateY(180deg);
    }

    Best regards,
    Ismael

    in reply to: Widget in products pages #1026654

    Hey mike.rav,

    Thank you for using Enfold.

    Just add the is_product or is_shop conditional function before the dynamic_sidebar.

    // https://docs.woocommerce.com/wc-apidocs/function-is_product.html
    / https://docs.woocommerce.com/wc-apidocs/function-is_shop.html

    Best regards,
    Ismael

    in reply to: Serve scaled images – one more time #1026635

    Hi,

    You can adjust the default thumbnail sizes with the Simple Image Size plugin. I think that’s enough to control the size of the served image for most screen sizes. Unfortunately, we can’t implement the srcset attribute to the masonry element because the featured images are added as background instead of an img element.

    Best regards,
    Ismael

    in reply to: Column with same height pictures inside #1026633

    Hi,

    You can adjust the top position of the img element.

    #top .col-work .avia-image-container-inner img.avia_image {
        top: -20px;
        -o-object-fit: cover;
        object-fit: cover;
    }

    Best regards,
    Ismael

    Hi,

    Yes, add it in the functions.php file and remove the previous filter.

    Best regards,
    Ismael

    in reply to: mobile menu issues #1026630

    Hi,

    My bad. I missed that one. You can use this css code to adjust the ubermenu toggle position.

    .responsive #top .ubermenu-responsive-toggle {
        position: absolute;
        right: 20px;
        top: 20px;
    }

    Add that css code inside the recent css media query.

    Best regards,
    Ismael

    in reply to: Sidebar for search results #1026629

    Hi,

    That plugin seems very useful. Thanks for sharing. :)

    Best regards,
    Ismael

    in reply to: Apartments booking form – Enfold contact form with tag? #1026626

    Hi,

    Thanks for the update.

    This script should add that attribute in the theme’s contact form element.

    function ava_guestline_form_attr(){
        ?>
        <script>
            (function() {
                    const f = document.querySelector('.avia_ajax_form');
                    if(f) f.setAttribute("data-guestline-form", "");
                    return null;
            })();
        </script>
        <?php
        }
    add_action('wp_footer', 'ava_guestline_form_attr');

    Best regards,
    Ismael

    in reply to: Easy Slider – YouTube Videos Now Showing Title #1026625

    Hi,

    @guenni007: Yeah… Foo g ad! ;D

    @cordellbrewer: Where did you read about the API update? Can you give us a link?
    Yes, you may need to use self hosted videos for now.

    Best regards,
    Ismael

    in reply to: Search error #1026623

    Hi,


    @goldengate415
    : I didn’t really think it’ll work. Glad it did. :)


    @Netzie
    : Can we access the dashboard? We would like to check the settings.

    Best regards,
    Ismael

    in reply to: Section ID not working on Mobile (Safari) #1026622

    Hi,

    The anchors are working properly on mobile mode. Where are you testing it?

    Best regards,
    Ismael

    in reply to: URGENT: Maintenance Mode Not Redirecting Traffic #1026621

    Hi,

    Did you set up the htaccess authentication? Please ask your hosting provider for that info or post the FTP details in the private field so that we can check the root directory of your installation.

    This is what we need in order to access the site: https://imgur.com/a/ycz8LZk

    Best regards,
    Ismael

    in reply to: Multiple Enfold purchases and Token doesn't seem to work #1026620

    Hi,

    Have you tried going into incognito mode as previously suggested?

    Best regards,
    Ismael

    Hi,

    Thanks for the info.

    I noticed that there is a “phone” field in your mailchimp list. The mailchimp shortcode only supports text and dropdowns at the moment. Try to remove the phone field from your list.

    Please note:
    You can only hide form fields that are not required
    Currently only text and dropdown elements are supported properly

    I found this error after testing the form again while logged in.

    Warning: Invalid argument supplied for foreach() in /home/binhamme/public_html/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/mailchimp/mailchimp.php on line 552

    The form fields are blank. Can we have access to your file server? I would like to check the form data.

    Best regards,
    Ismael

    in reply to: use-any-font.5.0 #1026348

    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: The Language Switcher is Not Displaying on the Search Page #1026346

    Hi,

    I had to modify the plugin’s sitepress.class.php file to fix the issue. The plugin unsets the languages when the post_type query var is blank or is not set.

    Line 2825:

    if( $_GET['s'] == '' ) {
    			$this->wp_query->query_vars['post_type'] = array();
    		}
    

    Let us know if you encounter any issues. This is not a critical issue, so I wouldn’t bother that much if I were you, because users will only get to that page when they click the search button accidentally without entering any keyword.

    Best regards,
    Ismael

    Hi,

    It’s been a while. I hope you’re doing good.
    Regarding the issue, you have to enable the theme’s Header Title and Breadcrumbs from the Enfold > Header panel.
    The code above filters the output of that function or settings.

    Best regards,
    Ismael

    in reply to: The quality of the gallery pictures in the store #1026320

    Hi,

    I would like to add the filter above after regenerating the thumbnails but I can’t modify the functions.php file in the Appearance > Editor panel. Please post the FTP details in the private field.

    Best regards,
    Ismael

    in reply to: No Video in Slideshow on Mobile and TAblets #1026318

    Hi,

    Thanks for the update. The video is playing properly on my end but it takes a while to load because it’s 8MB.

    Screenshot: https://imgur.com/a/g1GZcE1

    It’s probably not playing on your end because of the new autoplay policy.

    // https://developers.google.com/web/updates/2017/09/autoplay-policy-changes

    Chrome’s autoplay policies are simple:

    Muted autoplay is always allowed.
    Autoplay with sound is allowed if:
    User has interacted with the domain (click, tap, etc.).
    On desktop, the user’s Media Engagement Index threshold has been crossed, meaning the user has previously play video with sound.
    On mobile, the user has [added the site to their home screen].
    Top frames can delegate autoplay permission to their iframes to allow autoplay with sound.

    Try to mute the video.

    Best regards,
    Ismael

    in reply to: Sidebar for search results #1026230

    Hi,

    You need to create a new php file inside the child theme and name it according to the value of the get_sidebar function.

    get_sidebar('search-sidebar');
    

    The template file should be named.

    sidebar-search-sidebar.php.
    

    Have you tried using the Widget Logic plugin? That is much easier if you’re not familiar with templates.

    Best regards,
    Ismael

    in reply to: Display about button by Mobile? #1026226

    Hi,

    I’m sorry but I don’t understand your question. What do you mean?

    Best regards,
    Ismael

    in reply to: Shopping widget fine art america "embed code" #1026225

    Hi,

    Do you have access to this file? (see private field)
    Maybe, you can change the styles there. The previous modification doesn’t affect the content inside the frame.

    Best regards,
    Ismael

Viewing 30 posts - 25,021 through 25,050 (of 66,172 total)