Forum Replies Created

Viewing 30 posts - 22,261 through 22,290 (of 67,491 total)
  • Author
    Posts
  • in reply to: Multi-Language Shop – Fullwidth isnt loading #1122034

    Hi,

    Thank you for the update.

    We removed this code from the EN Quick CSS field.

    .container {
        padding-top: 0px;
        padding-right: 15px !important;
        padding-bottom: 0px;
        padding-left: 15px !important;
    }

    Use the following css code if you want to add some padding on both sides of the map filter.

    .wpgmza_sl_main_div {
        padding: 0 50px;
    }
    

    Best regards,
    Ismael

    in reply to: Shop title on Woocommerce Product Search Results #1122032

    Hi,

    Thank you for the update.

    You can add this code in the functions.php file.

    function avf_title_args_mod_product_post_type( $args, $id )
    {		
        if ( $_GET['s'] && $_GET['post_type'] == 'product' )
        {
            global $wp_query;
    		if(!empty($wp_query->found_posts))
    		{
    			if($wp_query->found_posts > 1)
    			{
    				$args['title'] =  $wp_query->found_posts ." ". __('search results for:','avia_framework')." ".esc_attr( get_search_query() );
    			}
    			else
    			{
    				$args['title']  =  $wp_query->found_posts ." ". __('search result for:','avia_framework')." ".esc_attr( get_search_query() );
    			}
    		}
    		else
    		{
    			if(!empty($_GET['s']))
    			{
    				$args['title']  = __('Search results for:','avia_framework')." ".esc_attr( get_search_query() );
    			}
    			else
    			{
    				$args['title']  = __('To search the site please enter a valid term','avia_framework');
    			}
    		}
        }
    
        return $args;
    }
    add_filter('avf_title_args', 'avf_title_args_mod_product_post_type', 10, 2);
    

    Best regards,
    Ismael

    in reply to: Text issues: bullets and links #1122031

    Hi,

    Thank you for the update.

    We manually applied the Quicksand font to the list.

    
    <ul>
     	<li><span style="font-family: Quicksand,Palatino;">wanneer het tijd is om een hartsverbinding te realiseren</span></li>
     	<li><span style="font-family: Quicksand,Palatino;">wanneer je jouw route wilt herberekenen</span></li>
     	<li><span style="font-family: Quicksand,Palatino;">wanneer het tijd is om je talenten en gaven optimaal te benutten</span></li>
     	<li><span style="font-family: Quicksand,Palatino;">wanneer je bedrijf of privéleven een boost nodig heeft</span></li>
     	<li><span style="font-family: Quicksand,Palatino;">wanneer het tijd is om te gaan van hart naar zichtbaarheid.</span></li>
    </ul>
    

    And added this code in the Quick CSS field just in case the inline styling is not sufficient.

    .entry-content-wrapper div li {
        font-family: Quicksand,sans-serif;
    }
    

    Best regards,
    Ismael

    in reply to: Blank Template Page #1122029

    Hi,

    Hi Guys, is there any way to set AVIA page builder in order to be visible in all the pages?

    What do you mean? The builder (ALB) is enabled for pages by default. All you need to do is switch to it. If you want to fetch the content of the ALB and place it in your custom template, use this code.

    **
    * Filter the content for content builder elements
     */
    $content = apply_filters( 'avia_builder_precompile', get_post_meta( get_the_ID(), '_aviaLayoutBuilderCleanData', true ) );
    echo $content; // render the shortcodes or ALB elements
    

    Best regards,
    Ismael

    in reply to: Any current issues with GoogleMaps and Enfold? #1122027

    Hey!
    Thank you for using Enfold.

    I don’t really think this will help but have you tried disabling the “avia_maps_key_for_plugins” filter? Comment out this line or remove it completely.

    add_filter( ‘script_loader_src’, ‘avia_maps_key_for_plugins’, 10, 2 );
    

    That script is surely not coming from the theme because we have deactivated it completely using the filter above. We deregister the script and dequeue it. We actually disabled the function that loads any script related to google map.

    If you deactivated the plugins and still see the map API script in the frontend, then it must have been added in the header directly or via WP hook. If you can provide the FTP details in the private field, we’ll try to trace where it’s coming from.

    Regards,
    Ismael

    in reply to: logo in full size and centered #1122025

    Hi,

    Danke fur das Update.

    Wir haben den folgenden CSS-Code im dem Quick CSS field verwendet, um den Stil des Logos anzupassen.

    .html_header_top.html_logo_center .logo {
        transform: none;
        float: none;
        margin: 0 auto;
        position: relative;
        left: auto;
    }

    Best regards,
    Ismael

    in reply to: missing images after demo import #1122020

    Hi,

    Thank you for the update.

    Looks like the images were actually uploaded but the home page was not set properly. We set the front page in the theme options. (see private field)

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    How did you manage to display pages in the post slider? It’s not possible by default. Did you turn on the post type selection support?

    Best regards,
    Ismael

    in reply to: New revslider 6 breaks enfold #1122014

    Hi,

    Thank you for the update. This patch might help. (see private field)

    // https://kriesi.at/support/topic/hi-im-also-having-troubles-with-revolution-slider-in-front-end/#post-1121067

    Best regards,
    Ismael

    in reply to: Enfold media breakpoints where menu and logo overlap #1121927

    Hi,

    Great! You’re welcome! Let us know if you need anything else.

    Have a nice day!

    Best regards,
    Ismael

    in reply to: Events Calendar Pro – Admin Menu Bug #1121926

    Hi,

    Thank you for the update.

    Are you using the block editor in the production site? Please check the Enfold > Theme Options > Select Your Editor settings. Toggle the option and see if there’s something different.

    Best regards,
    Ismael

    in reply to: Customize Contact form #1121922

    Hi,

    Thank you for the update.

    I just found out that you have to wrap the fields inside a container with the class attribute “avia_ajax_form”.

    We created an example for you. (see private field)

    
    <div class="avia_ajax_form">
    <p class="first_form form_element form_element_half">
    <label> Votre nom (obligatoire)
        [text* your-name] </label>
    
    <p class=" form_element form_element_half">
    <label> Votre adresse de messagerie (obligatoire)
        [email* your-email] </label>
    
    <p class=" form_element">
    [submit "Envoyer"]
    
    </div>
    

    Best regards,
    Ismael

    in reply to: Translation with Poedit and Child Theme #1121920

    Hi,

    Thank you for the update.

    Did you put the language files (.po|.mo) inside the “lang” folder of the child theme? The purpose of the filter above is to redirect the theme text domain directory to the child theme’s “lang” folder.

    You can also use this plugin.

    // https://wordpress.org/plugins/loco-translate/

    Best regards,
    Ismael

    Hi,

    Try to install an extractor software like the following.

    // https://apps.apple.com/us/app/rar-extractor-free/id646295438?mt=12

    It should prompt you to input the password before the extraction.

    Best regards,
    Ismael

    in reply to: Add second widget in header #1121917

    Hi,

    Thank you for the update.

    Can you provide a screenshot of the issue or what you’re trying to change? The css code above should remove the margin around the search field on mobile view. I’m not really sure why you’re trying to get it back.

    Best regards,
    Ismael

    in reply to: Revolution Slider wont display in front-end #1121911

    Hi,

    Thank you for the update.

    Did you add this code?

    <script type="text/javascript" language="javascript"> dtbaker_public_change_request.init("http://ftfmedia.net/hub/ext.php?m=change_request&h=script&i=2&hash="); </script>
    

    It generates the following error.

    'dtbaker_public_change_request' is not defined
    

    Please deactivate the plugins temporarily and don’t forget to update them. Also, you can’t use the visual composer because it’s incompatible with the advance layout builder.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    1.) The href attribute of the accordion images are empty. We tested this on our own installation but we can’t reproduce the issue. Please try to disable the plugins temporarily. Did you add any custom modifications to the theme?

    2.) There is no available element for that. You may need to create a custom shortcode. Something like the following, but for product categories.

    // https://kriesi.at/support/topic/portfolio-single-entry-view-with-list-of-all-assigned-categories/

    3.) Yes, it will conflict with the page product. You have to create a page with a different slug.

    4.) The product item redirects to the actual product page. Is this fixed?

    Please open each inquiry in separate threads in the future.

    Best regards,
    Ismael

    in reply to: Lightbox missing in horizontal galery #1121868

    Hi,

    Thank you for the update.

    Did you toggle the Performance > File Compression after removing the code? The stylesheets are currently compressed or minified in a single file. You have to toggle the file compression to regenerate the stylesheets and consequently include the recent changes.

    Best regards,
    Ismael

    Hi,

    Sorry for the confusion.

    There are two types of cookie consent message in the theme. I’m sure you’re well aware of the basic cookie consent message bar option which indicates that the site is using cookies — users can either confirm or visit the privacy policy page. The other is the more advance “Modal Window with Privacy and Cookie Info” option. Did you enable that option? You don’t have to enable it if there is a dedicated privacy policy page. You can just redirect your users to that page instead of opening a modal window containing the privacy policy.

    Best regards,
    Ismael

    in reply to: Any current issues with GoogleMaps and Enfold? #1121857

    Hi,

    Thank you for the update.

    I added the following snippet to completely remove the map API from the theme, but the same error occurs.

    You have included the Google Maps JavaScript API multiple times on this page. This may cause unexpected errors.

    function ava_deregister_google_map_api(){
    	wp_deregister_script('avia-google-maps-api');
    	wp_dequeue_script('avia-google-maps-api');
    	remove_action( 'init', array( 'av_google_maps', 'handler_wp_register_scripts' ), 20 );
    }
    add_action( 'after_setup_theme' , 'ava_deregister_google_map_api' );
    

    I think the issue is between the Events Calendar Pro and the Geodirectory plugin. They both have their own Google Map API key field. (see private field)

    Best regards,
    Ismael

    in reply to: Return to Shop Button Not wokring #1121848

    Hey cidcreative,

    Thank you for using Enfold

    The “return to shop” button should not be visible if there is at least one item in the cart. Where do you see the “green” button?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    By excerpt, you mean the text “full time”? I don’t really see the slight differences in its position as an issue but if you really want to adjust it, create multiple css media queries so that you can manually adjust its position on certain screen sizes.

    Best regards,
    Ismael

    in reply to: Advanced Custom Fields showing inside blog elements #1121794

    Hi,

    Thank you for the screenshot.

    The following filter might help. Just add it in the functions.php file.

    add_filter('avia_blog_post_query', 'avia_blog_post_query_mod', 10, 2);
    function avia_blog_post_query_mod($query, $params) {	
        foreach($query['post_type'] as $key => $value) {
            if( $value == 'acf-field-group' ) {
                unset($query['post_type'][$key]);
            }      
        }
    
        return $query;
    }

    Let us know if it works.

    Best regards,
    Ismael

    in reply to: Lightbox not showing next and previous arrows #1121793

    Hey arnie-design,

    Thank you for using Enfold.

    It may be possible to set the lightbox script to group all lightbox links inside the search results page instead of opening them up individually. Edit the js > avia-snippet-lightbox.js file, look for this code around line 130:

    groups			:	['.avia-slideshow', '.avia-gallery', '.av-horizontal-gallery', '.av-instagram-pics', '.portfolio-preview-image', '.portfolio-preview-content', '.isotope', '.post-entry', '.sidebar', '#main', '.main_menu', '.woocommerce-product-gallery'], 
    

    Inside of that array are the selectors of the images or links container.

    Best regards,
    Ismael

    in reply to: Enfold media breakpoints where menu and logo overlap #1121791

    Hi,

    Thank you for the update.

    This css code overrides the font-size property.

    #top #header .av-main-nav > li > a {
        color: #ffffff;
        font-size: 15px;
        font-family: "open sans","HelveticaNeue","Helvetica Neue","Helvetica-Neue",Helvetica,Arial,sans-serif;
    }
    

    The menu font size is still set to 15px. Please remove that code or place the latest code below it. You can also add the !important rule to the latest code so that it takes priority.

    This is how the header should look like after.

    // https://imgur.com/a/x7vCa1a

    Best regards,
    Ismael

    in reply to: Changing Header Color for only one Page #1121790

    Hi,


    @jannnnnneke
    : You have to remove the space between the page id and the #top selector.

    .page-id-121#top
    

    Or just remove the #top selector. Let us know if it helps.

    Best regards,
    Ismael

    in reply to: Opengraph preview for meta Title and description #1121789

    Hi,

    Thank you for the update.

    Are you referring to these attributes?

    <meta property="og:title" content="HOME"/>
    <meta property="og:description" content="          "/>
    

    You have to add those manually in the post’s Yoast SEO > Social panel.

    // https://kb.yoast.com/kb/getting-open-graph-for-your-articles/

    Best regards,
    Ismael

    in reply to: endlos headlines h1-h6 nicht editierter #1121493

    Hi,

    Vielen Dank, dass Sie Enfold verwenden.

    Die Einstellungen Leistung > Dateikompression sind derzeit aktiviert, so die in den Theme Optionen vorgenommenen Änderungen nicht wirksam werden. Bitte deaktivieren Sie die Option vorübergehend. Lassen Sie uns wissen, ob es einen Unterschied macht.

    Best regards,
    Ismael

    in reply to: Mailchimp multiple email lists to select #1121461

    Hi,

    Maybe you can add two mailchimp element for each list in the same section — hide the other using css. In a separate code or text block, place a check box for each category — make sure that the first box is already checked and then we can add a script that will toggle the appropriate list based on the selected checkbox like so:

    $('#form :checkbox').change(function() { 
        if (this.checked) {
            // the checkbox is now checked 
        } else {
            // the checkbox is now no longer checked
        }
    });

    // https://stackoverflow.com/questions/3442322/jquery-checkbox-event-handling

    Best regards,
    Ismael

    in reply to: Customize Contact form #1121452

    Hi,

    Thank you for the update.

    Use the following css code to adjust the style of the contact fields.

    #top .main_color .input-text, #top .main_color input[type='text'], #top .main_color input[type='input'], #top .main_color input[type='password'], #top .main_color input[type='email'], #top .main_color input[type='number'], #top .main_color input[type='url'], #top .main_color input[type='tel'], #top .main_color input[type='search'], #top .main_color textarea, #top .main_color select {
        color: #fff;
        border-color: #fff;
        border-width: 2px !important;
        background-color: transparent;
    }
    

    If you want to separate the input fields into columns, wrap the cf7 field shortcodes inside a paragraph tag and apply the appropriate class attributes. Example:

    
    <p class="first_form form_element form_element_half">[cf7 shortcode here]</p>
    <p class=" form_element form_element_half">[cf7 shortcode here]</p>
    
    

    Best regards,
    Ismael

Viewing 30 posts - 22,261 through 22,290 (of 67,491 total)