Forum Replies Created

Viewing 30 posts - 25,471 through 25,500 (of 66,218 total)
  • Author
    Posts
  • in reply to: LayerSlider Not Showing Up #1018736

    Hi,

    How were you able to tell it is the CDN?

    The url inside the private field of my previous reply is being fetched through CDN but it’s not loading properly. (see private field)

    Best regards,
    Ismael

    in reply to: Enfold – update problem 4.4.1 #1018735

    Hi,

    The old Envato API has shut down, so you’ll have to update the theme manually for now. We’ll release an update for the new API on the next patch.

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

    Best regards,
    Ismael

    in reply to: Portfolio heritage problem? #1018732

    Hi,

    Thanks for the update.

    You can use this filter in the functions.php file to exclude the sub categories.

    function array_unshift_assoc(&$arr, $key, $val) 
    { 
        $arr = array_reverse($arr, true); 
        $arr[$key] = $val; 
        $arr = array_reverse($arr, true); 
        return $arr;
    }
    
    // portfolio query
    add_filter( 'avia_post_grid_query', 'avia_post_grid_query_mod', 1000, 2);
    function avia_post_grid_query_mod( $query, $params ) {
        $child_cats = (array) get_term_children( $params['categories'], 'portfolio_entries' );
        if ( ! is_admin() ) {
            // exclude the posts in child categories
            array_unshift_assoc($query['tax_query'], 'relation', 'AND');
            $query['tax_query'][] =  array(
    			'taxonomy' => 'portfolio_entries',
    			'field'    => 'term_id',
    			'terms'    => array(implode(',', $child_cats)),
    			'operator' => 'NOT IN',
    		);
        }
    
    	return $query;
    }

    Best regards,
    Ismael

    in reply to: og image doesn't show on front page #1018166

    Hi,

    The og:image property is rendered on the page’s markup when I check. Odd thing is, I can’t access the facebook debugger. We’ll get back to you once the debugger loads. (see private field)

    Best regards,
    Ismael

    in reply to: Unübliche Ansicht und leere Seite bei Preview #1018159

    Hi,

    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: doesn't work video element #1018153

    Hi,

    We adjusted the code a bit so that you can add a preview image. Adjust the value of the “background-image” css property to your preview image url. You need to adjust the iframe’s “src” and container’s “data-original_url” attributes value as well.

    
    <div class="avia-video avia-video-16-9 av-lazyload-video-embed" style="background-image:url('CHANGE IMAGE URL HERE');" itemprop="video" itemtype="https://schema.org/VideoObject" data-original_url="https://www.youtube.com/watch?v=G0k3kHtyoqc">
        <script type="text/html" class="av-video-tmpl">
            <div class='avia-iframe-wrap'>
                <iframe width="1500" height="844" src="https://www.youtube.com/embed/G0k3kHtyoqc?feature=oembed&autoplay=1" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
            </div>
            </script>
    <div class="av-click-to-play-overlay">
    <div class="avia_playpause_icon"></div>
    </div>
    </div>
    

    Best regards,
    Ismael

    in reply to: website crashes after update to 4.3 #1018150

    Hi,

    The site is not loading on my end. Is that the correct url?

    Best regards,
    Ismael

    in reply to: Open a pop up by clicking on a block #1018148

    Hi,


    @FZKFranziska
    : Please continue here: https://kriesi.at/support/topic/opening-iframe-modal-with-button-click/#post-1017672

    We’ll close this thread now.

    Best regards,
    Ismael

    in reply to: Single events page's H1 and H2 have the same text #1018146

    Hi,

    Thanks for the clarification. You can use the “avf_title_args” filter to modify the main title.

    add_filter('avf_title_args', 'avf_title_args_events_mod', 99, 2);
    function avf_title_args_events_mod($args,$id)
    {
         if ( $args['title'] == get_the_title(get_the_ID()) && is_singular('tribe_events') ) 
         {
            $args['title'] = 'Activiteiten';
         }
        return $args;
    }

    Best regards,
    Ismael

    Hi,

    Sorry about that. Can we access the live site? Please make sure that the Appearance > Editor panel is accessible.

    Best regards,
    Ismael

    in reply to: Layer Slider problems after changes in layer #1018142

    Hi,

    Sorry for the late response.

    It’s not working properly because of the “< center >” and “< br >” tags. Please use the slider’s text alignment option to center align the text and close the line break tags properly. I created a test slider and a temporary page.

    Best regards,
    Ismael

    in reply to: Print out error google maps #1018128

    Hi,

    Did you setup a billing account on your google cloud console?

    // https://console.cloud.google.com/billing

    The map API requires a billing account for each projects.

    // https://developers.google.com/maps/billing/understanding-cost-of-use

    Best regards,
    Ismael

    in reply to: BEHAVIOR ON THE IPHONE 7 (VERTICAL) #1018126

    Hi,

    Thank you for using Enfold.

    The theme automatically wraps the elements inside a generic color section when they’re not inside one. Move the heading element inside a color section and then configure the Screen Options of that color section instead of the heading.

    Best regards,
    Ismael

    in reply to: Full-Screen Slider: video loop slide play duration #1018124

    Hey Maaster,

    Thank you for using Enfold.

    The slide will automatically switch to the next slide once the video finished. You should not enable the video slides’ “loop” option because it will just replay the first video.
    Use this code to remove the loading overlay.

    .mejs-overlay-loading-bg-img {
        display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Contact form not sending auto-reply emails #1018118

    Hi,

    That is the disadvantage of using these filters. Your domain’s email address is use as the “from” address to tell your mail server that the source is trustworthy. Have you tried setting up a SMTP instead of using the filters? Please ask your hosting provider if they can set your mail server to accept third party email addresses with SMTP.

    Best regards,
    Ismael

    in reply to: child-theme solution for change an avia_element ? #1018113

    Hi,

    Thank you for using Enfold.

    That is quite interesting. Try to use the str_replace function to replace a particular string with your own.

    std = str_replace("<img id='pr-logo' src='".AVIA_BASE_URL."images/layout/logo_modern.png' alt=''/>", "REPLACEMENT", $avia_elements[ $index ]['std']);
    

    Best regards,
    Ismael3`

    in reply to: einfügen eines Produkteintrages in das Menuesystem #1018111

    Hey Alexander,

    Thank you for using Enfold.

    In the same panel, look for the Screen Options button and then enable the “Products” post type from there. This will give you a list of your product items.

    Best regards,
    Ismael

    in reply to: Post Slider like Content Slider #1018104

    Hey sitesme,

    Thank you for using Enfold.

    That is not possible with the sliders’ default options. You may need to modify the config-templatebuilder > aviashortcodes > postslider > postslider.php file if you want the post slider to slide instead of fade. Look for this code around line 379:

    'animation' => 'fade',
    

    Replace “fade” with “slide”.

    Best regards,
    Ismael

    in reply to: Weird number under the body tag single post page #1018019

    Hi,

    The “News” page is set as the default blog or posts page, so the “News” menu item will get tagged as the current menu item whenever a single post page is displayed. Did you apply unique categories to the “boer-piu-di-cosi” posts? You can use this filter to remove the “current-menu-item” attribute.

    add_filter('walker_nav_menu_start_el', 'avf_walker_nav_menu_start_el_mod', 10, 4);
    function avf_walker_nav_menu_start_el_mod($item_output, $item, $depth, $args) {
        $indent = ( $depth ) ? str_repeat( "\t", $depth ) : '';
        $blog_id = avia_get_option('blogpage');
        if($depth === 0 && $blog_id && $blog_id == $item->object_id && is_singular('post'))
        {   
            $classes = empty( $item->classes ) ? array() : (array) $item->classes;
            $class_names = $value = '';
            $class_names = join( ' ', apply_filters( 'nav_menu_css_class', array_filter( $classes ), $item ) );
            if($depth === 0 ) $class_names .= " menu-item-top-level menu-item-top-level-".$item->first_level_count;
            $class_names = ' class="'.esc_attr( $class_names ) . $column_class .'"';
    
            $item_output = "";
            $item_output .= $indent . '
     	<li id="menu-item-'. $item->ID . '"' . $value . $class_names .'>';
            $item_output .= $args->before;
            $item_output .= '<a'. $attributes .'><span class="avia-bullet"></span>';
            $item_output .= $args->link_before .'<span class="avia-menu-text">'. do_shortcode(apply_filters('the_title', $item->title, $item->ID)) ."</span>". $args->link_after;
            if($depth === 0) 
            {
                if(!empty($item->description))
                {
                    $item_output .= '<span class="avia-menu-subtext">'. do_shortcode($item->description) ."</span>";
                }
    
                $item_output .= '<span class="avia-menu-fx"><span class="avia-arrow-wrap"><span class="avia-arrow"></span></span></span>';
            }
    
            $item_output .= '</a>';
            $item_output .= $args->after;
            $item_output .= "</li>
    \n";
        }
        return $item_output;
    }

    Best regards,
    Ismael

    in reply to: Stretch / Fixed frame etc #1018013

    Hi,

    Look for the “Add Cell” button at the bottom of the grid row element.

    Best regards,
    Ismael

    in reply to: Zeilenumbruch #1018011

    Hi,

    Thanks for the update.

    You can try this css code.

    .page-id-985 #av_section_1 {
        min-height: 1031px;
    }

    You may need to apply a Section ID to the color section in order to replace the generic id or selector “#av_section_1”.

    Best regards,
    Ismael

    in reply to: Error when activating choices theme #1018010

    Hi,

    I found this thread, which seems to be related to your issue. Please try to update your WordPress installation manually and then reset the permalinks afterwards.

    // https://wordpress.org/support/topic/warning-require-failed-to-open-stream-no-such-file-or-directory/

    Error Related to Missing or Damaged Core Files
    Try downloading WordPress again, access your server via SFTP or FTP, or a file manager in your hosting account’s control panel, and delete then replace your copies of everything except the wp-config.php file and the /wp-content/ directory with fresh copies from the download. This will effectively replace all of your core files without damaging your content and settings.
    Some uploaders tend to be unreliable when overwriting files, so don’t forget to delete the original files before replacing them.

    Best regards,
    Ismael

    in reply to: galleries opening duplicate image on top of lightbox #1018006

    Hi,

    Thanks for the update. I can’t reproduce the issue on my end. Do you have a screenshot?

    Best regards,
    Ismael

    in reply to: avf_form_send and fatal error #1018005

    Hey Nicolas,

    Thank you for using Enfold.

    What happens when you remove the intval function? The “get_queried_object_id” function returns an integer by default.

    Best regards,
    Ismael

    Hi,

    Thanks for the update. It’s been a while. I edited the postslider.php file and adjusted the date format in the Settings > General panel. The dates are displaying properly now.

    Best regards,
    Ismael

    Hi,

    Cool. Glad that it’s working now. Please open a new thread if you need anything else. :)

    Best regards,
    Ismael

    in reply to: Blaues und weißes Menü funktioniert nicht #1018000

    Hi,

    You can actually change the background and font color of the upper bar or container on the Advanced Styling panel — same with the main header container. Have you tried it? Please post the login details in the private field so that we can adjust the elements for you.

    Best regards,
    Ismael

    in reply to: Product Count Sorting Misconfigured in Enfold #1017951

    Hey Dawn,

    Thank you for using Enfold.

    Did you set the WooCommerce > Settings > Products > Column and Product Count > Product Count settings to -1? Default value should be 15. The product sorting number is based on that value.

    Best regards,
    Ismael

    in reply to: 5 stars review creation? #1017950

    Hey ezvisa,

    Thank you for using Enfold.

    Where can we see one your products? Please provide a link. What is the current rating code or script that you’re using?

    Best regards,
    Ismael

    in reply to: Google Maps / Footer Issue #1017949

    Hey Yaser,

    Thank you for using Enfold.

    1.) The map is displaying properly when I check. Please check the docs for more info regarding the map API key.

    // https://kriesi.at/documentation/enfold/google-map/

    2.) You can change the footer info in the Enfold > Footer panel. Look for the “Copyright” field.

    Best regards,
    Ismael

Viewing 30 posts - 25,471 through 25,500 (of 66,218 total)