Forum Replies Created

Viewing 30 posts - 19,051 through 19,080 (of 67,463 total)
  • Author
    Posts
  • in reply to: Unite Gallery Plugin Breaks Enfold Theme #1189936

    Hi,

    Thank you for the info.

    We managed to access the site yesterday, so we enabled the plugin but the site went down after adding the shortcode in a test page. Today, the staging site is not loading properly on our end and the file server is inaccessible, so we can’t turn on the debug mode and figure out what went wrong with the plugin. Please check the login info.

    Best regards,
    Ismael

    in reply to: Column and Product Count for Specific Category Pages #1189878

    Hi,

    Thank you for the update.

    You can use this filter to change the number of products per row in the archive or shop page.

    /**
     * Change number or products per row to 3
     */
    add_filter('loop_shop_columns', 'avf_loop_columns', 999);
    if (!function_exists('avf_loop_columns')) {
    	function avf_loop_columns() {
    		return 3; // 3 products per row
    	}
    }

    Now, if you want to only apply the changes to a specific category, then you have to add conditions inside filter.

    /**
     * Change number or products per row to 3
     */
    add_filter('loop_shop_columns', 'avf_loop_columns', 999, 1);
    if (!function_exists('avf_loop_columns')) {
    	function avf_loop_columns($items) {
                    if(is_tax('product_cat', 'category_name')) {
    		     $items = 3 ; // 3 products per row
                    }
                    return $items;
    	}
    }

    Replace “category_name” with the actual name or slug of the product category.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    It’s possible that the mail server blocks the email address because it’s from a different domain findnetsolutions, or the PHP mail function is not configured correctly or it’s completely disabled. Please ask or contact your hosting provider for more info.

    To avoid or fix the issue, try to use a domain email address or an address from your host. You can also use an address from known email providers like gmail, yahoo or outlook and use SMTP to send the emails. Please check the documentation for more info.

    // https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-

    Best regards,
    Ismael

    in reply to: Weiterlesen | Zeige Details entfernen #1189876

    Hi,

    Thank you for the update.

    Can you give us a link to the page containing the products? Do you want to remove the buttons? If yes, then you can use this code in the Quick CSS field or the child theme’s style.css file.

    .avia_cart_buttons {
    	display: none;
    }

    Best regards,
    Ismael

    in reply to: Contact Form – Datepicker / german localisation #1189873

    Hey unyq,

    Thank you for the info.

    It seems to be related to the language translations. Where can we see the issue? Please provide a link to the page containing the date picker so that we can check it.

    Best regards,
    Ismael

    in reply to: Display Custom Post Types (CPT UI) on Page #1189869

    Hi,

    Thank you for the info and patience. Please feel free to open a new thread if you need anything else. Hope that we could help you better in the future.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Some type malfunctions in mobile view #1189868

    Hi,

    Sorry for the delay. There is a missing closing bracket or curly brace for the css media query in the recent css code. You have to close it properly.

    Thank you for your patience.

    Best regards,
    Ismael

    Hey spidercreations,

    Thank you for the inquiry.

    We actually encountered the same issue before. You can find the thread here including the temporary fix.

    // https://kriesi.at/support/topic/header-slider-from-replete-in-enfold/#post-1023854

    Do you see the error when the site is on https or on a secure connection?

    Please edit the slideshow-video.js file and look for this code around line 759:

    
            try {
                data = JSON.parse(event.data);
                method = data.event || data.method;
            }
            catch(e)  {
                //fail silently... like a ninja!
            }
    

    Try to replace it with:

     try {
                data = JSON.parse(event.data);
                if(!data) {
                    data = JSON.parse(event.originalEvent.data) 
                }   
                method = data.event || data.method;
            }
            catch(e)  {
                //fail silently... like a ninja!
            }
    

    This solution is based on: https://stackoverflow.com/questions/17190535/javascript-window-postmessage-event-data-is-always-null

    Best regards,
    Ismael

    in reply to: EasySlider-FullWidth #1189866

    Hi,

    Thank you for the update.

    You have to select No Scaling in the Styling > Slideshow Image and Video Size settings to make the slideshow use the original version of the image instead of its thumbnails. This might create white spaces on both sides of the image inside the slider.

    Best regards,
    Ismael

    in reply to: Error "Call to undefined function av_icon_string()" #1189865

    Hi,

    Thank you for the update.

    The site contains an older version of the theme, so you will have to update it to v4.7.3. The upgrade should help fix this issue. Please don’t forget to toggle the Performance > File Compression settings and purge the cache after adding the code.

    Best regards,
    Ismael

    in reply to: Few help needed #1189863

    Hi,

    Sorry for the late response.

    1.) Are you referring to the base shop page or the actual product view? A link to the site will help. For the meantime, you can use this css code to adjust the style of the product price.

    top .price, #top .price span, #top del, #top ins {
        display: inline;
        text-decoration: none;
        font-size: 20px;
        line-height: 24px;
        font-weight: 600;
        text-align: center;
    }

    2.) This is possible, but you have to modify or override the plugin templates as described in the documentation.

    // https://docs.woocommerce.com/document/template-structure/

    3.) The height of the item usually depends on the size of the image, but we can use css to adjust it. You can also adjust the thumbnail size and aspect ratio in the Appearance > Customize > Woocommerce > Product Images panel.

    4.) Yes, that’s possible. You can use this css code to adjust the container of the featured image.

    .single-product-main-image {
    	width: 50%;
    	float: left;
    	margin-right: 50px;
    	overflow: hidden;
    	padding-bottom: 50px;
    }

    We always advice users to post their inquiries on separate threads or tickets instead of posting multiple ones in a single thread like this. The response time is usually faster that way and prevents confusion in our part and yours.

    Best regards,
    Ismael

    in reply to: Enfold Theme for DSGVO #1189862

    Hey Stefan,

    Thank you for your interests in the theme.

    Yes, the theme has its own Privacy & Cookie settings which will allow you to comply to the recent cookie policy. You can display a cookie consent bar and modal window tabs to enable users to toggle specific cookies from different services.

    The theme doesn’t have a reservation feature by default, but it’s compatible with Tribe’s Events Calendar and Woocommerce, so you will be able to use those plugins instead. Unfortunately, we don’t have any demo for the backend or dashboard, but there are available videos that you can watch to learn more how the theme and its Advance Layout Builder works.

    // https://www.youtube.com/watch?v=Dbgy4dPf7R4
    // https://www.youtube.com/watch?v=K72lh7jKlvM

    Best regards,
    Ismael

    Hey aledef,

    Thank you for the inquiry.

    The parallax effect is actually disabled on mobile devices. You can find the script in the js > shortcodes.js and in the AviaParallaxElement function, you’ll find this code around line 261:

    	if(_self.isMobile)
    			{
    				return; //disable parallax scrolling on mobile
    			}
    

    Best regards,
    Ismael

    in reply to: Domain masking? #1189859

    Hi,

    Have you tried embedding the page inside an iframe? In the new domain, create a blank page and put an iframe element in it. You can then use that particular page as the source of the frame.

    // https://www.w3schools.com/tags/tag_iframe.asp

    Best regards,
    Ismael

    in reply to: Google Maps Key does not work #1189858

    Hi,

    Thank you for the update.

    We got this error when we tried to validate the API key in the backend.

    Geocoding Service: This API project is not authorized to use this API.  For more information on authentication and Google Maps JavaScript API services please see: https://developers.google.com/maps/documentation/javascript/get-api-key
    

    It means that the Geocoding Services API is disabled, so you have to turn it on. Please check this doc for more info.

    // https://kriesi.at/documentation/enfold/google-map/#enable-services-for-google-api

    Best regards,
    Ismael

    in reply to: Vimeo on mobile device #1189568

    Hi,

    This is one of the limitations of using the background video option in the layer slider (LS). If you noticed, the Controls toggle in the Options section is automatically removed when the option is enabled. Unfortunately, we can’t modify it on our end. You will have to a hire a freelance developer to adjust the LS script.

    If you want to disable the option and set the dimension of the iframe or video, try to go to the layer’s Styles panel and set the width and height to 100%. This will probably distort the video on certain screen sizes.

    Best regards,
    Ismael

    in reply to: Smooth Scroll under header #1189566

    Hi,

    Thank you for the inquiry.

    You can use this filter in the functions.php file to adjust the value of the header scroll offset and influence the scroll position when clicking an anchor.

    add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 9999, 1);
    function avf_header_setting_filter_mod($header) {
    	$header['header_scroll_offset'] = $header['header_scroll_offset'] + 48;
    	return $header;
    }
    

    This should decrease the scroll distance.

    Best regards,
    Ismael

    in reply to: layerslider blinks on slide transition #1189565

    Hey bobfurgo,

    Thank you for the inquiry.

    We can’t really reproduce the issue on Firefox Windows 10. Where are you testing it? Are you using the navigation, or is it only happening when the slider auto rotates? Please provide a screenshot.

    Best regards,
    Ismael

    in reply to: Text Only Version #1189562

    Hey soellyn,

    Thank you for the inquiry.

    Looks like the screen reader removes elements based on certain criteria or conditions as described in this thread.

    // https://support.mozilla.org/en-US/questions/1140969

    These are the conditions in the screen reader script.

     var haveToRemove =
              (img > 1 && p / img < 0.5 && !this._hasAncestorTag(node, "figure")) ||
              (!isList && li > p) ||
              (input > Math.floor(p/3)) ||
              (!isList && contentLength < 25 && (img === 0 || img > 2) && !this._hasAncestorTag(node, "figure")) ||
              (!isList && weight < 25 && linkDensity > 0.2) ||
              (weight >= 25 && linkDensity > 0.5) ||
              ((embedCount === 1 && contentLength < 75) || embedCount > 1);
            return haveToRemove;
    

    It removes the content if:
    * there are more than one image and the node or element doesn’t have the figure as a parent container.
    * it is not a list and the number of list element is more than the paragraph tag
    * the input field is more than the paragraph tags
    * it’s not a list and the content length is less than 25 characters
    * it doesn’t meet the required weight or score — looks like the reader has a function that scores the content based on its length and if the element has the “string” class name
    * there is one embed element and the content length is less than 75 or if there are more than one embedded elements

    Please try to edit the color section or text blocks containing the content that you want to display in the screen reader and go to the Advanced > Developer Settings toggle. In the Custom CSS Class field, add or use “string”. This will hopefully increase the score or weight of the content inside the text blocks or color sections.

    Best regards,
    Ismael

    in reply to: Social Share under Additional Information Tabs #1189561

    Hi,

    Thank you for the update.

    Try to adjust the priority value from 20 to 2 or replace the hook with this one.

    add_action( 'woocommerce_after_single_product_summary', 'avia_product_share', 2 );
    

    Please don’t forget to remove this line.

    add_action( ‘woocommerce_before_single_product_summary’, ‘avia_product_share’, 20 );
    

    Best regards,
    Ismael

    in reply to: Problem display in portrait orientation ipad pro #1189560

    Hi!

    Daghan salamat sa screenshot. Sensya na late gamay. Murag nabalhin naman ang header from left to top, so ok na to. Naa na ta space gamay para sa content. Kanang mga cells sulod sa grid row element, pwede nato na himuon full width or i-adjust ang width gasa iPad Pro nga view para naa ta extra space para sa mga elements sa sulod. Since 1366px ang maximum screen width kana nga device, try nato i-add ni nga code sa Quick CSS field.

    @media only screen and (max-width: 1366px) {
      .responsive #top #wrap_all .av-flex-cells .no_margin {
        display: block;
        margin: 0;
        height: auto !important;
        overflow: hidden;
        padding-left: 8% !important;
        padding-right: 8% !important;
        width: 100%;
      }
    }

    Pwede pod nato i-hide yung mga cells sa mobile view kung prefer nimo. Edit the cells, go to the Advanced > Responsive toggle, then set nato ang Mobile display settings sa second nga option.

    Cheers!
    Ismael

    in reply to: GDPR compliance for marketing cookies #1189558

    Hey I-Visio,

    Thank you for the inquiry.

    You have to know the actual name and path of the cookies generated by the services. You can check it in the in the Networks tab of the browser inspector. Please check the documentation for more info.

    // https://kriesi.at/documentation/enfold/privacy-cookies/#manually-clear-the-cookies-from-the-browser

    Once you have those info, go to the Additional Custom Cookies section and fill in the Cookie Name and the Cookie Path accordingly. There are also fields to add a description for the toggle shortcode and the cookie list. When it’s done, you will be able to create a dedicated tab for the custom cookie in the Modal Popup Window Content and use the following shortcode to create a cookie toggle.

    [av_privacy_custom_cookie cookie_name="COOKIENAMEHERE"]
    

    Best regards,
    Ismael

    in reply to: Portfolio – Gallery Product Shot issue #1189557

    Hi,

    Sorry for the delay. Looks like you’ve managed to add the Trusty-menu image again and make it toggle the menu. Let us know if you need more help with it.

    Best regards,
    Ismael

    in reply to: Full Width layer slider with boxed layout #1189556

    Hi,

    Sorry for the late response. Did you change the layout of the site? It’s not set to boxed layout, so the layer slider is full width.

    Best regards,
    Ismael

    in reply to: Post Excerpt Adding tags HELP #1189554

    Hi,

    Sorry for the late response. The mygc site is not using Enfold. Is it the correct URL?

    You can add this code in the functions.php file to remove or disable the wpautop function.

    remove_filter( 'the_content', 'wpautop' );
    remove_filter( 'the_excerpt', 'wpautop' );
    

    Best regards,
    Ismael

    in reply to: Product List showing images when not supposed too #1189553

    Hi,

    Sorry for the delay. The style of the product list element looks different in your installation. Did you modify the shortcode files? Please post the FTP details in the private field so that we can check it further.

    Best regards,
    Ismael

    Hey Rob,

    Thank you for the info.

    We can’t really reproduce the issue when we try to resize the browser. Do you have a test page? Please provide the link in the private field so that we can check it.

    Best regards,
    Ismael

    in reply to: Out of stock products showing up in search #1189550

    Hi!

    but it’s not working in your installation.

    Sorry for the delay. As we’ve said earlier, the snippet works on our own installation but it didn’t work in yours. Oddly enough, we can no longer reproduce the issue on our end, but we didn’t really know what changed or what made it work again.

    Can we access the site? The login token has expired, so we couldn’t check the site again.

    Regards,
    Ismael

    in reply to: Autoplay Youtube Video in Lightbox #1189410

    Hi,

    Sorry for the delay. When we click the Mehr erfahren button, the video automatically plays. Have you tried muting it? Please note that browsers prevent video autoplay when audio is enabled.

    Best regards,
    Ismael

    in reply to: Implement Google Tag Manager (GTM) #1189401

    Hi,

    Sorry for the delay. You can insert the GTM script in the Google Services > Google Analytics field along with the tracking code. Or insert the snippet above in the functions.php file. Have you tried either one of those?

    Best regards,
    Ismael

Viewing 30 posts - 19,051 through 19,080 (of 67,463 total)