Forum Replies Created

Viewing 30 posts - 12,541 through 12,570 (of 67,591 total)
  • Author
    Posts
  • in reply to: Small question for safe #1333517

    Hey Createve_Solutions,

    Thank you for the inquiry.

    Would you mind sending a screenshot of the issue? Please use imgur or dropbox for the screenshot. We tried to access the site but its SSL certificate is not valid. Please ask your hosting provider to check the site and ask them if they could generate a valid SSL certificate.

    Best regards,
    Ismael

    in reply to: different start pages for mobile and PC #1333515

    Hi,

    Did you try @Guenni007’s suggestion above? The code should redirect the user to the specified page (mobile-home) on mobile devices.

    function redirect_mobile_devices() {
        if ( wp_is_mobile() && is_front_page() ) {
            wp_safe_redirect( get_site_url(). '/mobile-home', 301 );
            exit;
        }
    }
    add_action( 'wp', 'redirect_mobile_devices' );
    

    Best regards,
    Ismael

    in reply to: After the last update, pages are not displayed correctly #1333513

    Hi,

    Glad we could be of help. Please feel free to open another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Woocommerce Bookings display calendar on click. #1333509

    Hi,

    Thank you for the inquiry.

    The calendar button should automatically display when the product type or product data is set to “Bookable Product”. Please post the login details in the private field so that we can check the product and plugin settings.

    Best regards,
    Ismael

    in reply to: analytics not reccording all visits #1333508

    Hey adibranch,

    Thank you for the inquiry.

    Did you enable the privacy options in the Enfold > Privacy & Cookies panel? It is possible that some of the users are not accepting the cookies on their first visit, which hinders the analytics script from loading. You can set the Enfold > Privacy & Cookies > Cookie Handling > Default Cookie Behavior to the first or second option to immediately allow the analytics script on page load even without user consent.

    Best regards,
    Ismael

    in reply to: Timeouts and spinning wheel #1333507

    Hey web4698,

    Thank you for the inquiry.

    Do you see any errors in the logs? If you don’t, please try to temporarily disable the Performance > File Compression settings and add this code in the functions.php file to prevent the theme from generating post css entries in the database.

    /**
     * Filter to skip css file generation.
     * You can add logic to skip for certain pages/posts only.
     * 
     * @since 4.8.6.1
     * @param boolean $create
     * @return boolean					true | false or anything else to skip generation of css file
     */
    function custom_avf_post_css_create_file( $create )
    {
    	return false;
    }
    
    add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
    

    Let us know if this helps decrease the server usage.

    Best regards,
    Ismael

    Hey Julio,

    Thank you for the inquiry.

    You can use this css code to adjust the background image on mobile view.

    .avia-section.av-kxdnhoim-408191e9df33f667e27ef409421ee409 {
        background-repeat: no-repeat;
        background-image: url(https://kingdomlearners.com/wp-content/uploads/2021/12/404-Error-Page.jpg);
        background-position: 50% 0%;
        background-attachment: scroll;
    }
    

    Make sure to adjust the image URL and place the code inside the css media query so that it only affects the mobile view.

    Best regards,
    Ismael

    in reply to: determine a target at the masonry gallery #1333504

    Hey steridhh,

    Thank you for the inquiry.

    You can use the ID attribute to directly select the element and change its target attribute.

    $('#av-masonry-1-item-1173').attr('target','_blank');
    

    Best regards,
    Ismael

    in reply to: Eliminate sidebar from woocommerce pages #1333502

    Hey Bruno,

    Thank you for the inquiry.

    Yes, adjusting the sidebar settings should directly affect the shop page. You can also change the widgets in the Appearance > Widgets panel if you don’t want to completely remove the sidebar.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    Glad to know that you managed to find the new functions. The old breadcrumb functions are now deprecated and will be removed in the future.

    Best regards,
    Ismael

    in reply to: No Index at homepage due to woocommerce #1333494

    Hi,

    Thank you for the inquiry.

    Looks like the meta tag has been added using the wp_head hook. Please check if the hook exists in the child theme’s functions.php, or enable the Appearance > Editor panel so that we could check it.

    Best regards,
    Ismael

    in reply to: Bug in footer.php? and little modification in masonry grid #1333493

    Hey Gerald,

    Thank you for the inquiry.

    This part might to be adjusted a bit to get rid of the warning.

    if ( !isset($the_id )) {
    $the_id = get_the_ID();
    }

    Try to replace the code with this one.

    $the_id = get_the_ID();
    

    Unfortunately, your other request is beyond the scope of support. You may have to hire a freelance developer to add the option in the masonry element.

    Best regards,
    Ismael

    in reply to: Product Grid / Product Slider Customization #1333492

    Hi,

    Sorry about that. I thought that you are using the Blog Posts element. For the product grid, this css should work.

    .avia_cart_buttons {
        position: absolute;
        bottom: 0;
    }
    

    Please make sure to toggle or temporarily disable the Enfold > Performance > File Compression settings afterwards.

    Best regards,
    Ismael

    in reply to: Google CAPTCHA options not showing up #1333491

    Hi,

    Glad to know that the update helped. Regarding the contact form message, it will be removed automatically after confirming or clicking the ReCAPTCHA widget. It is a part of the contact form security.

    Best regards,
    Ismael

    in reply to: Swipebox overlay problem #1333490

    Hi,

    Thank you for the update.

    How did you add the swipebox script? The theme does not include it by default, so it must have been added manually or the script comes from a plugin. This script has to be removed or disabled.

    <script type="text/javascript" src="https://cdn.rawgit.com/marian-kadanka/better-swipebox/0cca47a3/src/js/jquery.swipebox.min.js"></script>
    

    Best regards,
    Ismael

    in reply to: image height at percentage of browser height #1333489

    Hi,

    Thank you for the clarification.

    You can set the color section’s content container width to 100%. Please check the documentation for more info.

    // https://kriesi.at/documentation/enfold/color-section/#color-section-with-100-content-width

    Best regards,
    Ismael

    in reply to: General Styling Page for End Users #1333488

    Hi,

    If you are going to use jQuery, the following functions might help.

    // https://api.jquery.com/click/
    // https://api.jquery.com/is/

    You can check if the clicked element contains a certain class name or ID using the is function above. Unfortunately, we are not sure what you are trying to do with the color section or what you actually mean by refreshing it.

    Best regards,
    Ismael

    in reply to: Enfold Pagebuilder changes amazon iframe code #1333487

    Hi,

    Did you use the code above? It is still working correctly on our end. Please create a new thread and post the login details in the private field so that we can add it for you. We will close this thread for now.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Overwriting Meta Title fails #1333486

    Hi,

    No problem. Please feel free to open another thread if you need anything else. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Trying to upload an iconfont manager zip #1333348

    Hi,

    Thank you for the update.

    We managed to upload a set of font icons from fontello.com in the Iconfont Manager without encountering an error.

    // https://fontello.com/

    Where did you get the font icons? Please note that only monocolored font icons are allowed in the upload manager.

    Best regards,
    Ismael

    in reply to: Layerslider fatal error #1333344

    Hey!

    We set the installation to debug mode temporarily and enabled the errors logs but we cannot find any meaningful info aside from the exhausted memory limit. We also noticed that you have installed the Search & Replace plugin. Did you adjust some entries in the database? You might have accidentally altered the layer slider entries, which caused the error.

    Thank you for your patience.

    Cheers!
    Ismael

    in reply to: How to add framed border to text element #1333339

    Hey Julio,

    Thank you for the inquiry.

    As we mentioned in the previous thread, it is possible to apply a unique ID or class name to any elements in the builder including the Text Block and the Special Heading element. Just edit the element, then go to the Advanced > Developer Settings panel to apply the class name or the ID. You can then use those attributes as css selectors to adjust the style of the element.

    Example:

    .your-custom-class { font-size: 100px; }
    

    Best regards,
    Ismael`

    in reply to: Autoplay on iOS #1333321

    Hi,

    Thank you for the update.

    We will include the changes in the next version of the theme. There will also be a new filter so that the attribute can be modified if necessary.

    /**
    				 * Add playsinline for IOS https://kriesi.at/support/topic/autoplay-on-ios/
    				 * Allow to modify if video is hidden on mobile (not done by default because of multiple mobile device selections)
    				 * @since 4.8.8.1
    				 * @param string $autoplay
    				 * @param string|array $video		array(  fileext => file url  )
    				 * @param array $attributes
    				 * @return string
    				 */
    				$autoplay = apply_filters( 'avf_html5_autoplay_mobile', "{$autoplay} playsinline", $video, $attributes );
    			}
    

    Best regards,
    Ismael

    in reply to: Error in developper tools/console #1333319

    Hi,

    Thank you for the update.

    The console clearly states that there is an error in the script, so it has to be traced and fixed. But since the issue only occurs when jQuery Migrate library is disabled, it means that there is a deprecated function that is still in used or that exists in the scripts. You can just keep the jQuery Migrate library enabled to get rid of the error.

    Best regards,
    Ismael

    in reply to: Direct Link to Ajax Portfolio Item #1333316

    Hi,

    Thank you for the info.

    In the enfold_customization_portfolio_linking function, try to look for this line..

    jQuery('.post-entry-'+p+' .grid-image').click();
    

    .. and replace it with.

    jQuery('.post-entry-'+p+' .grid-image').trigger("click");
    

    Best regards,
    Ismael

    in reply to: Product Grid / Product Slider Customization #1333308

    Hi,

    Glad to know to know that it is working. Regarding the button, try to use this css code to adjust the position of the read more link and ensure that it sticks to the bottom.

    .responsive #top .slide-entry .read-more-link {
        position: absolute;
        bottom: 0;
        left: 0;
        top: auto;
    }
    
    .responsive #top .slide-entry  .slide-entry-excerpt {
        position: relative;
        padding-bottom: 50px;
    }
    

    Best regards,
    Ismael

    in reply to: Header background is not displayed as set #1333114

    Hi,

    This is a very odd issue. The header is not visible but the mobile menu is still clickable. We cannot find any issue with the css and when we tried to increase the z-index value of the header, it didn’t affect the visibility of the mobile menu. Did you apply other css to the header?

    Best regards,
    Ismael

    in reply to: Header effect of mix-blend mode #1333110

    Hi,

    Thank you for the update.

    Would you mind providing a screenshot of the issue? The background of the mobile menu container is set to black when we checked the site. The header is also transparent, no blend mode. Please note that mix-blend-mode property will only work if you apply it on an element that is a direct child of another element. You should not expect the element to blend with other elements in the page, aside from its parent element.

    // https://developer.mozilla.org/en-US/docs/Web/CSS/mix-blend-mode

    Best regards,
    Ismael

    in reply to: Trying to upload an iconfont manager zip #1333106

    Hey Joshua,

    Thank you for the inquiry.

    It might be due to a missing PHP extension called ZipArchive. Please check the following thread for a possible fix, or just make sure that the ZipArchive extension is enabled. You can ask your hosting provider to configure the server or the PHP options.

    // https://kriesi.at/support/topic/i-get-the-link-you-followed-has-expired/#post-1331575
    // https://kriesi.at/support/topic/download-of-files-for-demo-gym-demo-didnt-work-you-might-want-to-try-reloading/#post-1332980
    // https://kriesi.at/support/topic/unable-to-add-custom-fonts/#post-1331120

    Best regards,
    Ismael

    in reply to: Color change for gallery titles / put them below the pictures #1333103

    Hey tinohannes,

    Thank you for the inquiry.

    You can use this css code to adjust the style of the image tooltip.

    .avia-tooltip {
        position: absolute;
        z-index: 9999999;
        padding: 12px;
        margin-top: -18px;
        margin-left: -4px;
        background: #000;
        background: rgba(0, 0, 0, 0.8);
        color: #fff;
        width: 140px;
        border-radius: 2px;
        text-align: center;
    }
    

    Default background color is set to rgba(0, 0, 0, 0.8).

    Best regards,
    Ismael

Viewing 30 posts - 12,541 through 12,570 (of 67,591 total)