Forum Replies Created

Viewing 30 posts - 19,231 through 19,260 (of 66,696 total)
  • Author
    Posts
  • in reply to: Do not see the Footer with the Privacy and Cookies activate #1167126

    Hi,

    Thank you for the update.

    Can we have access to at least one of the sites? We would like to check the dashboard and the footer settings.

    Have you tried disabling the plugins temporarily to rule out any incompatibilities?

    Best regards,
    Ismael

    Hey darryllevine!

    Thank you for the inquiry.

    Can we access the dashboard? We would like to check the settings and edit a few files if necessary. Please make sure that the Appearance > Editor panel is accessible.

    Regards,
    Ismael

    in reply to: Woocommerce product gallery and button adjustments #1167082

    Hi,

    Thank you for the update.

    You can use the following filter in the functions.php file to change the default text of the add to cart button.

    
    // for single product page
    add_filter( 'woocommerce_product_single_add_to_cart_text', 'woocommerce_custom_single_add_to_cart_text' ); 
    function woocommerce_custom_single_add_to_cart_text() {
        return __( 'Add This', 'woocommerce' ); 
    }
    
    // for archive page
    add_filter( 'woocommerce_product_add_to_cart_text', 'woocommerce_custom_product_add_to_cart_text' );  
    function woocommerce_custom_product_add_to_cart_text() {
        return __( 'Add That', 'woocommerce' );
    }

    Best regards,
    Ismael

    in reply to: Can the shop banner be a slide show? #1167081

    Hi!

    Thank you for the update.

    Is there an easy way to turn this image location into a slide show?

    This is possible, but it will require a lot of modifications. Unfortunately, we won’t be able to help you with it because it’s outside the scope of support. If you want to try it, first you have to convert the Shop Banner Image thumbnail uploader to a gallery media uploader so that you can insert multiple images to the slideshow, then modify the avia_woocommerce_parallax_banner function in the config-woocommerce > config.php file to render a slideshow instead of the default parallax banner. You can probably use the theme’s slideshow shortcode as a replacement, but then again this will require a handful of modifications.

    Cheers!
    Ismael

    in reply to: several changes in fonts #1167080

    Hi,

    Thank you for the update.

    The “que-proponemos/” page no longer exists. Did you remove it? Please create a test page so that we can inspect the element.

    Best regards,
    Ismael

    in reply to: WooCommerce Product Slider – Set Number of Columns to 1? #1167079

    Hi,

    Sorry for the delay. We can’t access the browser inspector or the context menu in your site. Did you block or disable it? Please enable it back so that we can inspect the elements.

    Best regards,
    Ismael

    in reply to: Portfolio grid & Ticket button in bottom right corner #1167078

    Hi,

    Thank you for the update.

    Did you add any excerpt or content to the portfolio items? The output including the new button will only display if the post contains an excerpt.

    Best regards,
    Ismael

    Hey ambra2014,

    Thank you for the inquiry.

    This is not possible, unfortunately. You can’t assign a custom template to a newly created page or post.

    Is the post creator or form going to be accessible in the front end? Have you tried creating a custom post type instead? You can assign or create a custom template file for the post items.

    // https://developer.wordpress.org/themes/basics/template-hierarchy/#single-post

    Best regards,
    Ismael

    in reply to: Problem with Cookie Modal #1167073

    Hey Flugtraeumer,

    Thank you for the update.

    Try to replace the protocol in the iframe src attribute from http to https.

    Blocked loading mixed active content “http://piwik.flugtraeumer.de/index.php?module=CoreAdminHome&…anguage=de&backgroundColor=&fontColor=&fontSize=&fontFamily=”Blocked loading mixed active content “http://piwik.flugtraeumer.de/index.php?module=CoreAdminHome&…anguage=de&backgroundColor=&fontColor=&fontSize=&fontFamily=”

    It doesn’t display because it’s being blocked as shown in the error above.

    Best regards,
    Ismael

    Hi,

    Thank you for following up.

    You can use this css code to move the menu to the left.

    .responsive #top #wrap_all .main_menu {
    	top: 0;
    	left: 0;
    	right: auto;
    }
    

    Please place the code inside the css media query, below the most recent modification.

    Best regards,
    Ismael

    in reply to: Trying to get property of non-object #1167070

    Hi,

    The latest version will probably be released after the holidays or early next year. You may have to modify the files manually for now. Thank you for your patience.

    Best regards,
    Ismael

    in reply to: DSGVO-pop-up German and Englisch is mixed up #1167068

    Hi,

    Thank you for the inquiry.

    Where can we see the issue? Please provide a link to the other website so that we can check it. Did you replace the default privacy text with your own?

    Best regards,
    Ismael

    in reply to: Dataprotection with Enfold? How to set header-tags? #1167065

    Hi,

    Thank you for the update.

    @marcusjeroch: You can either use @guenter‘s .htaccess configuration, which is the easiest route or implement the recommendations provided by the tool. For example, to enable the Content Security Policy (CSP) header, you can manually override the header.php file in your child theme and add this meta tag.

    <meta http-equiv="Content-Security-Policy" content="script-src 'self'">
    

    You can also accomplish the same thing using the wp_head hook.

    add_action('wp_head', function() {
       echo '<meta http-equiv="Content-Security-Policy" content="script-src \'self\'">';
    }, 10);
    

    Best regards,
    Ismael

    in reply to: Language issues #1167061

    Hi,

    Thank you for the inquiry.

    The default privacy text are not yet translated, so you will have to change them manually for now. You can use the following plugin to adjust the translations.

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

    We’ll forward the thread to our channel.

    Best regards,
    Ismael

    in reply to: Multiple product grids pagination issue #1167055

    Hey Technohead,

    Thank you for the inquiry.

    My question is. Is there a way to have the pagination work on each grid independently?

    This is possible using an AJAX pagination but that feature is not available in the product grid element. You can only use a single pagination in any given page.

    Best regards,
    Ismael

    in reply to: Responsiveness problems with shifting elements #1167053

    Hi,

    Thank you for the inquiry.

    It doesn’t respond properly because of the following css modification.

    #main {
        margin-left: 0px !important;
    }

    If you want the first color section containing the video to go under the transparent header, use this css code instead.

    #av_section_1 {
    	width: calc(100% + 300px);
    	margin-left: -300px;
    }
    

    You may want to replace the default selector #av_section_1 with the color section’s unique ID.

    Best regards,
    Ismael

    in reply to: Mobile Phone Menu Problem #1167051

    Hi,

    Thank you for the update.

    Try to replace the name attribute in your anchored elements with the id attribute, so instead of using this markup..

    <a name="apparel"></a>
    

    ,.. you’ll use the following.

    <a id="apparel"></a>
    

    Best regards,
    Ismael

    in reply to: Check Key – Google Maps API Key #1167049

    Hi,

    Thank you for the update.

    Did you enable the Geocoding Service API and attach a billing account to the project? Please review the documentation and follow the steps in creating an API key carefully. Or post the login details in the private field so that we can see what’s missing.

    Best regards,
    Ismael

    in reply to: Can't set site languages in WPML with ENFOLD theme #1167048

    Hi,

    Thank you for the inquiry.

    You can add this snippet in the functions.php file to remove the default language flags or switcher from the theme.

    add_action('after_setup_theme','avia_remove_main_menu_flags');
    function avia_remove_main_menu_flags(){
            remove_action( 'avia_meta_header', 'avia_wpml_language_switch', 10 );
    	remove_action( 'ava_main_header_sidebar', 'avia_wpml_language_switch', 10 );
    }
    

    Best regards,
    Ismael

    in reply to: Translate reCaptcha string #1167046

    Hi,

    Thank you for the inquiry.

    1.) The spam protection is currently disabled when we checked the site. Please create a test page so that we can inspect the issue.

    2.) You can use the following plugin to edit existing translations.

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

    Best regards,
    Ismael

    in reply to: Enfold not loading correct weights for multiple fonts #1166744

    Hi,

    Thank you for following up.

    We will forward this thread to our channel for further considerations. The new font weights for Quicksand will possibly be added in the next patch.

    Best regards,
    Ismael

    Hi,

    Sorry about that. Please remove the css code and replace it with this.

    .cookie-overlay-mod {
    	display: block;
    	z-index: 502;
    	width: 100%;
    	height: 100vh;
    	background: rgba(0,0,0,.8);
    	position: fixed;
    	top: 0;
    	left: 0;
    }
    

    Then add this script in the functions.php file to render a content overlay when the consent bar is not yet hidden.

    
    function ava_custom_privacy_overlay(){
    	?>
    	<script>
    	(function($) {
    		$(document).ready(function() {
    			var consent = $('.avia-cookie-consent');
    
    			if(!consent.is('.cookiebar-hidden')) {
    				$('<div class="cookie-overlay-mod"></div>').appendTo('#wrap_all');
    			}
    		});
    	})(jQuery);
    	</script>
    	<?php
    }
    add_action('wp_footer', 'ava_custom_privacy_overlay', 99);
    

    Best regards,
    Ismael

    in reply to: Can you link a photo in a masonry gallery to a page #1166739

    Hi,

    Thank you for following up.

    To help you better understand the concept, we save the content of the page as template and used that same template in a test page. We also enabled the debug mode so that we can extract the shortcode of the images with the button. After that, we appended a code block element inside the first 2/3 column and placed the shortcodes inside. Please check the private field.

    Best regards,
    Ismael

    in reply to: Media Elements/Video static images are gone #1166736

    Hi,

    Thank you for the update.

    Enfold theme prevents YouTube static images from being displayed?

    It actually prevents the whole iframe or youtube video from loading, not just the thumbnail. This is to comply with the privacy rules or regulations and to protect users from cookies or services that they didn’t explicitly consent to, so in light of that, the theme’s cookie part is actually doing its job as expected.

    Best regards,
    Ismael

    in reply to: Load Page Content: Parsing Error #1166729

    Hi,

    Thank you for the update.

    How can we login to the site? We tried using the login credentials above to access the dashboard but it didn’t work. Please post the login URL and an updated login account in the private field.

    Best regards,
    Ismael

    in reply to: URGENT – New Cookie Verdict- technical solutions needed #1166721

    Hi!

    How can i show a user which cookies are planned to be set by my website before he agrees???

    That is the purpose of the modal popup window and your privacy policy. You can use these mediums to describe the site’s policy and inform users with regard to the cookies or services that they are about to consent to. Again, the modal popup window and the privacy policy has a default template or boilerplate that you can use as is, but you can also edit it to comply to the site’s requirements. That is unfortunately outside the scope of support. If you’re still not sure what to do or what to put in your privacy policy page or the modal popup window, then we recommend that you consult a lawyer.

    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: Mobile View – not working #1166715

    Hi,

    Thank you for the update.

    The sections are being rendered outside the main wrapper, which causes the elements to not respond or resize properly. Did you include the custom post types in the list of supported post types by the advance layout builder? If not, please check the documentation below.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#alb-for-any-post-type

    Best regards,
    Ismael

    in reply to: Portfolio sorting – linking from an external page #1166713

    Hi,

    Thank you for the update.

    Yes, this should be possible. If you’re using the advance layout builder for the portfolio items, then you have to modify the template-builder.php file and add the code block shortcode there. You will also have to use the following filter to properly execute the shortcodes that are outside the advance layout builder.

    // https://github.com/KriesiMedia/enfold-library/blob/master/actions%20and%20filters/ALB%20Elements/General%20filters/avf_alb_exec_sc_only.php

    You can also use hooks such as “ava_before_content_templatebuilder_page” or “ava_before_get_sidebar_template_builder” to insert additional elements before or after the advance layout builder content.

    Best regards,
    Ismael

    in reply to: enfold space between color sections on mobile #1166707

    Hi,

    Thank you for the update.

    The theme automatically wraps the elements inside their own section if they weren’t added inside one. The section has a border by default, so if you add a button between two color sections, the theme will automatically create another section between and place the button inside that section.

    Best regards,
    Ismael

    in reply to: There is a bug about "layout elements- 1/1 " #1166670

    Hey jack000486,

    Thank you for the inquiry.

    Can we access the page with the issue? We would like to see if we can find errors after updating the element or in the builder in general. Have you tried disabling the plugins temporarily?

    Best regards,
    Ismael

Viewing 30 posts - 19,231 through 19,260 (of 66,696 total)