Forum Replies Created

Viewing 30 posts - 18,031 through 18,060 (of 67,597 total)
  • Author
    Posts
  • in reply to: Schema.org HTML markup #1229379

    Hi,

    Thank you for the update.

    Do you see any errors when the default schema markup from the theme is activated? If you don’t see any, then keeping it active is not an issue. It generates basic schema markup, usually for posts, so it won’t really get in the way of custom markups.

    Best regards,
    Ismael

    in reply to: Enfold Layer Slider & Polylang – Serious bug! #1229377

    Hi,

    Thank you for that info. Glad that you managed to make it work properly now.

    Would it be maybe possible to fix the Layer Slider so even if you use “Duplicate” option,

    The theme doesn’t really generate those strings, so we might have to contact the plugin developers and report the issue to them. And since you’re already familiar with what is actually causing the issue, then reporting it to them (plugin developers) will really help.

    Best regards,
    Ismael

    in reply to: Problem with Audio Player under Enfold #1229376

    Hi,

    Sorry for the confusion. Both sites are using Enfold, the first site where the time seeker is working correctly is served directly from the web server (Nginx v1.14.0), and the other one is from Cloudflare, so yes, it looks like an issue with CloudFlare not accepting partial content.

    To confirm it, please contact your CDN provider.

    Thank you for the update.

    Best regards,
    Ismael

    Hi,

    For some reason, the editor added a code tag in this line:

    item.style.backgroundImage = <code>url(${item.dataset.src})</code>;
    

    It has to be removed.

    item.style.backgroundImage = url(${item.dataset.src});
    

    And you can actually add multiple class names in the Custom Class attribute field. Just put a space between them.

    responsive-colorsection asyncImage
    

    Let us know if it helps.

    Best regards,
    Ismael

    in reply to: issues with blogpage and posts #1229371

    Hi,

    Thank you for the update.

    We don’t really see that issue on our end, and the featured image is fully visible in the post now. Could you provide a screenshot of the 15px shift on mobile view?

    Another thing that could make the grid look better is to ensure that the uploaded images have the same size and aspect ratio.

    Best regards,
    Ismael

    Hi,

    Yes, that looks about right. More examples can be found in the functions.php file inside the avia_register_frontend_scripts function.

    Best regards,
    Ismael

    Hi,


    @dfpg
    : Thank you for the update. So is it working for you now? If it still doesn’t work, post the login details in the private field so that we can check the site. Also, please make sure that the Appearance > Editor panel is accessible so that we can edit the files if necessary.

    Best regards,
    Ismael

    in reply to: Edit toggle button of modal window (cookies) #1229368

    Hi,

    What is the css code that you’re using to toggle the visibility of the buttons?

    If you don’t have the css yet, you have to initially hide the toggles..

    
    .fr-cookie, .en-cookie {
      display: none;
    }

    .. then only display them on their respective languages:

    html[lang="en-US"] .en-cookie {
      display: inline;
    }
    
    html[lang="fr-FR"] .fr-cookie {
      display: inline;
    }

    If “inline” doesn’t work for you, try to replace it with “block”.

    Best regards,
    Ismael

    in reply to: Product grid limit number of products – Part 2 #1229365

    Hi,

    The filter doesn’t work because the theme, it turned out, overrides the woocommerce pagination and so we have to override the default pagination instead. Sorry about that.

    Please add this code in the functions.php file:

    // https://pastebin.com/02Y4UzQ8

    Inside that function, you’ll see this block of code:

          if(is_page(array( 731, 5494, 2345))) {
                $pages = 5;
            }
    

    Inside the is_page array are the IDs of the pages where you need to limit the pagination. Just include the actual IDs of the pages in your installation.

    Best regards,
    Ismael

    Hi,

    The settings of the Blog Posts element don’t reflect in the front end because the Enfold > Blog Layout > Blog Layout is set to “Grid Layout”, so by default it’s going to use the index.php file. To adjust that, we set the Enfold > Blog Layout > Blog Layout to “Use the advance layout builder..” so that the blog page will actually display the content of the advance layout builder including the Blog Posts element.

    The read more link now displays in the Blog page, but the breadcrumb issue is still visible in the archive pages. Let me get back to you on that.

    We also reset the Settings > Reading options to default because the front and posts page is already set in the theme options.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Contact Form – select element dropdown background #1229359

    Hi,

    Thank you for the update.

    This is how the site or the select options look on MS Edge.

    Screenshot: https://imgur.com/YOa0kn6

    For the text placeholder, you can use this:

    ::-webkit-input-placeholder { /* Edge */
      color: white;
    }
    
    :-ms-input-placeholder { /* Internet Explorer 10-11 */
      color: white;
    }
    
    ::placeholder {
      color: white;
    }
    

    Best regards,
    Ismael

    in reply to: custom sidebar on buddypress pages #1229356

    Hi,

    Did you adjust the condition? What are the conditional tags that you’ve tried in the if statement?

    if ( CONDITIONS HERE ) {
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    We might have to ask the plugin author for the function that the plugin used to query the posts — for Relevanssi the function is called relevanssi_do_query and for SearchWP it’s the search method inside the SearchWP class. The plugin probably has the same function, but we are not familiar with its code, so this might take a while. Asking the plugin author in this regard will help.

    Best regards,
    Ismael

    in reply to: Breadcrump navigation on bbpress forum pages #1229351

    Hi,

    Thank you for the update.

    Looks like there is no filter available to adjust the links in the default bbPress filter, so you’ll have to modify the plugin file directly or use the filter that one of the users provided in this thread.

    // https://bbpress.org/forums/topic/change-breadcrumb-url-link/page/2/

    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: Force autoplay of videos at mobile devices #1229201

    Hey Kritzfred,

    is it possible to force autoplay of videos at mobile devices?

    This should be possible as long as the video is muted and that the user allowed media autoplay in his/her browser.

    // https://developers.google.com/web/updates/2017/09/autoplay-policy-changes

    Chrome’s autoplay policies are simple:

    Muted autoplay is always allowed.
    Autoplay with sound is allowed if:
    User has interacted with the domain (click, tap, etc.).
    On desktop, the user’s Media Engagement Index threshold has been crossed, meaning the user has previously played video with sound.
    The user has added the site to their home screen on mobile or installed the PWA on desktop.
    Top frames can delegate autoplay permission to their iframes to allow autoplay with sound.

    Enabling autoplay on Safari: https://support.apple.com/en-ph/guide/safari/ibrw29c6ecf8/mac

    Best regards,
    Ismael

    in reply to: One Pager Menu fx #1229198

    Hey hund-herrchen,

    Thank you for the inquiry.

    You have to apply the anchors or ID to the color section element instead of creating the anchor elements manually.

    We found this element inside the color section:

    
    <div class="mp1" id="leadership"></div>
    

    Instead of doing that, try to apply the ID “leadership” to the color section’s Advanced > Developer Settings > ID attribute field.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. We are not yet sure why the issue occurs, but you can easily suppress the notices by setting the WP_DEBUG or WP_DEBUG_DISPLAY in the wp-config.php file to false.

    // https://codex.wordpress.org/WP_DEBUG#Usage

    Best regards,
    Ismael

    in reply to: full screen slider image not resizing #1229194

    Hey simplicityltd,

    Thank you for the inquiry.

    This is probably an issue with fixed backgrounds as described in the following thread.

    // https://kriesi.at/support/topic/ipad-and-mobile-images-not-appearing-as-background-in-row-grids/#post-1225784

    To fix the issue, please try this code in the Quick CSS field or the child theme’s style.css file.

    @media only screen and (max-width: 1366px) {
        .avia-fullscreen-slider .avia-slideshow[data-image_attachment="fixed"] > ul > li {
            background-attachment: scroll !important;
        }
    }

    Best regards,
    Ismael

    Hi,

    Thank you for the info. Please don’t hesitate to open another thread if you need anything else. We’ll close this thread for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: post-meta-infos position and visibility #1229190

    Hi,

    Glad it’s fixed. Let us know if you need anything else.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. This looks like an issue with the Performance > File Compression settings. Please try to deactivate the file compression settings temporarily and remove the browser cache. Let us know if it helps.

    Best regards,
    Ismael

    in reply to: z-index problem #1229178

    Hi,

    Thank you for the update.

    The site above is not loading properly. Did you move the site somewhere else? Please provide the new URL so that we can check it again, and a screenshot will help as well.

    Best regards,
    Ismael

    in reply to: Event Tickets not working #1229161

    Hi!

    Thank you for the update.

    Yes, please create a duplicate of the site so that we can test it properly. Additional info from the plugin authors will also help.

    Regards,
    Ismael

    in reply to: Portfolio Page Display Bug #1229154

    Hi,

    We added this css code in the Quick CSS field to increase the width of the portfolio container and align them with the category sort.

    #top .isotope-item.special_av_fullwidth .inner-entry {
    	width: 100%;
    }
    

    Screenshot: https://imgur.com/aKA3IlA

    To fix the spacing issue, try to use this script in the functions.php file:

    add_action('wp_footer', 'ava_auto_resize');
    function ava_auto_resize(){
    ?>
    <script>
    (function($){	
    	var int = window.setInterval(function(){
    		$(window).trigger('resize');
    	}, 1000);
    	
    	$(window).load(function () {	
    		setTimeout(function() {
    			clearInterval(int);
    		}, 1000);
    	});
    })(jQuery);
    </script>
    <?php
    }
    

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: own social media profile icon #1229148

    Hey rallegrafix,

    Thank you for the inquiry.

    We can use the avf_social_icons_options filter to include another social media profile in the list, and the avf_default_icons filter to specify the icon to use for the new social media item.

    Usage example can be found here: https://kriesi.at/support/topic/social-profiles-github-tiktok-and-telegram/#post-1209162

    Best regards,
    Ismael

    in reply to: Bild oder Video ohne Rand #1229145

    Hey heufti65,

    Thank you for the inquiry.

    Could you please provide a screenshot of the layout that you want to create? To create a container that spans the full width of the browser screen, try using the Grid Row element

    Best regards,
    Ismael

    in reply to: Header center, menu below, scroll out only logo. #1229135

    Hi,

    Thank you for the update.

    You can prevent the sticky menu from displaying too early by controlling the window.pageYOffset value. In the script, look for this line:

    if (window.pageYOffset > sticky) {
    

    Replace it with:

    if (window.pageYOffset - 200 > sticky) {
    

    Best regards,
    Ismael

    in reply to: tab icon – shaping #1229134

    Hi,

    The tab option is missing because the option string or text is not properly translated. Please replace the fr_FR language files in the enfold > lang folder. (see private field)

    Thank you for your patience.

    Best regards,
    Ismael

    Hey moscom,

    Thank you for the inquiry.

    Have you tried to switch the classic editor and use the theme’s shortcode wand? The recipe plugins may not be fully compatible with the advance layout builder, but they should work fine in the classic editor and you should still be able to insert builder elements using the shortcode wand in the Visual editor.

    You can switch from the Block Editor to the Classic one in the Enfold > Theme Options panel.

    Best regards,
    Ismael

    in reply to: copyright images #1228898

    Hi,

    Thank you for the inquiry,

    You can get the value of the copyright option by using the get_post_meta function.

    get_post_meta( $post->ID, '_avia_attachment_copyright', true )
    

    And to filter or adjust the default WordPress image markup, use the get_image_tag filter.

    add_filter('get_image_tag', function($html, $id, $alt, $title, $align, $size) {
         $copyright = get_post_meta( $post->ID, '_avia_attachment_copyright', true );
         // do something to $html before returning it
         if($copyright) {
             $html .= "<span>{$copyright}</span>";
         }
         return $html;
    }, 10, 6);
    

    Another solution is to add a new attribute to the attachment image using the wp_get_attachment_image_attributes filter, but it might require additional script to extract the value of the new attribute and render it in the frontend.

    Best regards,
    Ismael

Viewing 30 posts - 18,031 through 18,060 (of 67,597 total)