Forum Replies Created

Viewing 30 posts - 18,211 through 18,240 (of 67,597 total)
  • Author
    Posts
  • in reply to: Pictures article size not good in slider articles #1224815

    Hi,

    Sorry for the delay. You can actually select the size of the image that you want to display in the Posts Slider or Slider Articles element. Please edit the Post Slider element, go to the Styling > Preview Image toggle, then set the Preview Image Size settings to the second option. After that, try to set the Select custom preview image size settings to the first option. This option will display original uncropped version of the image.

    Best regards,
    Ismael

    in reply to: Blog – hold up #1224811

    Hi,

    Sorry for the delay. The blog posts element in the theme doesn’t support sticky posts because it has its own custom query, so you have to add the filter that we provided previously. Is it not working as expected when you add the query filter?

    Best regards,
    Ismael

    in reply to: Content slider limit autorotation to one loop #1224808

    Hey JaneJoyce,

    Thank you for the inquiry.

    You have to create a new shortcode path in the child theme folder and override the script there.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb

    This function in the contentslider.php file loads the scripts and stylesheets, so it has to be adjusted.

    function extra_assets()
    		{
    			//load css
    			wp_enqueue_style( 'avia-module-slideshow', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/slideshow/slideshow.css', array( 'avia-layout' ), false );
    			wp_enqueue_style( 'avia-module-postslider', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/postslider/postslider.css', array( 'avia-layout' ), false );
    			wp_enqueue_style( 'avia-module-slideshow-contentpartner', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/contentslider/contentslider.css', array( 'avia-module-slideshow' ), false );
    
    				//load js
    			wp_enqueue_script( 'avia-module-slideshow', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/slideshow/slideshow.js', array( 'avia-shortcodes' ), false, true );
    
    		}
    

    Make sure that the path in the wp_enqueue_script function points to the script with the modification.

    wp_enqueue_script( 'avia-module-slideshow', AviaBuilder::$path['pluginUrlRoot'] . 'avia-shortcodes/slideshow/slideshow.js', array( 'avia-shortcodes' ), false, true );
    

    Best regards,
    Ismael

    in reply to: Woocoommerce Product Sorting Override #1224806

    Hey alvaromasiammp,

    Sorry for the delay. We are not yet sure what’s affecting the sorting of the taxonomy field, but it could be a filter that sorts the terms beforehand. Can we access the site?

    Best regards,
    Ismael

    in reply to: Translate Mailchimp's form with WPML #1224803

    Hi,

    Sorry for the delay. You should be able to use the avf_sc_mailchimp_form_elements filter to adjust the value of the form fields and make them translatable. Example usage can be found here:

    // https://kriesi.at/support/topic/get-variable-of-the-url-and-attach-it-on-subject-of-content-form-mail/#post-1010866

    Just replace the avf_sc_contact_form_elements with the avf_sc_mailchimp_form_elements filter.

    This is an example of the values contained in a single form field.

     array (
        'label' => 'Name',
        'type' => 'text',
        'check' => 'is_empty',
        'options' => '',
        'multi_select' => '',
        'av_contact_preselect' => '',
        'width' => '',
        'av_uid' => 'av-9fiu',
      ),
    

    Within the filter, you have to replace the default value of the label key and make it translatable using the translation __() function.

    $formfield['label'] = __( $formfield['label'], 'avia_framework' );
    

    // https://developer.wordpress.org/reference/functions/__/

    You may need to loop through the $formfields first.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. The solution in the following thread should help fix the issue temporarily.

    // https://kriesi.at/support/topic/masonry-screen-shakes-on-desktop/

    Try to add this css code.

    .avia_loading_icon {
        display: none !important;
    }
    

    Best regards,
    Ismael

    in reply to: portfolio category pages #1224796

    Hi,


    @newmediologo
    : The dummy widget will display if the Appearance > Widgets > Display Everywhere widget area is empty. To disable the dummy widget, you can either add a blank widget in the Display Everywhere widget area or disable the Page Sidebar navigation option in the Enfold > Sidebar Settings panel.

    Best regards,
    Ismael

    in reply to: Different languages #1224794

    Hi,

    Sorry for the delay. How did you do the translations? If you’re using plugins like WPML or Polylang, this task would be quite easy because you can assign a set of menu for each language. But since you’re not using any of those plugins, you can try to use a menu visibility plugin or a plugin that controls where or when to render a specific menu item based on certain conditions. You can try one of these plugins.

    // https://wordpress.org/plugins/if-menu/
    // https://wordpress.org/plugins/menu-items-visibility-control/

    Best regards,
    Ismael

    Hi,

    The menu is already usable with a keyboard, but you can’t use the arrow keys to move to the previous and next menu items, only the Tab key to navigate and space to access the link.

    If you want to use a different menu, other users usually integrate the Ubermenu plugin with the theme in place of the default menu, but we are not really sure if it has accessibility features. It looks like the menu is keyboard accessible based on this article.

    // https://sevenspark.com/docs/ubermenu-3/faqs/accessibility-blue-glow

    Best regards,
    Ismael

    Hi,

    We haven’t really looked into the issue because we can’t reproduce it, so we’ll probably add the changes based on what you provided above. Have you tried it again?

    This is the \enfold\config-templatebuilder\avia-template-builder\php\html-helper.class.php file with the modification based on what you described above.

    // https://pastebin.com/43xhHiYr

    Best regards,
    Ismael

    in reply to: The content does not load correctly #1224524

    Hi,

    Thank you for the update.

    We would like to check the script but the Appearance > Editor panel is not accessible. Please enable the editor or post the FTP details in the private field so that we can check the functions.php file.

    Best regards,
    Ismael

    in reply to: Image Size – Archive Pages #1224523

    Hi,

    Thank you for the update.

    Looks like most of the featured images are tall, so adjusting the height should help make the whole of the image more visible. The current width is just enough because the blog page has a sidebar but you can adjust it a bit more if you want. It is also recommended to upload images with the same sizes or aspect ratio because it makes the overview page looks more consistent. With that said maybe try to adjust the size to 1050x787px or 4:3 ratio.

    Best regards,
    Ismael

    in reply to: Background youtube, starting point #1224521

    Hi,

    You will have to find all videos in the page and define the duration for each of them. Each player or video has a unique id, so maybe you can use that to specify a different duration for each item when you iterate through them.

    This is the markup of the video frame or player.

    <iframe class="av_youtube_frame" id="player_12_928568916_1097519820" ... more attributes here></iframe>
    

    This is beyond the scope of support unfortunately, so you might have to hire a consultant or a freelance developer.

    Best regards,
    Ismael

    in reply to: Mouseover Effekt bei Bildern #1224518

    Hi,

    Thank you for the update.

    The server is unavailable when we visited the site. Did you move the site somewhere else? We tried removing “test” in the URL but it’s the same.

    Best regards,
    Ismael

    Hi,

    Have you tried repairing or optimizing the database? Maybe that will help repair the portfolio items and the categories? It is kind of difficult to reproduce the issue on our end, or recreate the environment in which those items are created.

    Best regards,
    Ismael

    in reply to: Mailchimp Signup button problem. #1224502

    Hi,

    Thank you for the update.

    Looks like it only happens when the button is not located at the very bottom of the Contact Form Elements list. To fix the issue temporarily, we manually adjusted the position of the button in the list and place it at the very bottom.

    We’ll forward the issue to our channel.

    Best regards,
    Ismael

    in reply to: Retina ready or not ready? #1224497

    Hi,

    Can we access the site? Please post the login details in the private field.

    Best regards,
    Ismael

    in reply to: Event tickets not workting with Enfold #1224496

    Hi,

    Sorry for the delay. Would you mind if we take a look at the dashboard? You may need to open your own thread because you won’t be able to see our private messages on this one, and yours will be visible for the OP. In the new thread. please include the FTP and WP login details in the private field.

    Best regards,
    Ismael

    in reply to: Fullscreen Slider Jumping On Mobile After last Update #1224494

    Hi,

    Sorry about the screenshot. I’ll post it again below.

    Screenshot: https://imgur.com/a/zXpgVAf

    I’ll try to ask the team to check it on iPhone SE.

    Best regards,
    Ismael

    in reply to: Zoom effect on images (category page) #1224432

    Hi,

    Thank you for the update.

    Try to use this css code to cover up the bottom part of the image.

    .archive .product-category a::after {
    	content: '';
    	background: #ffffff;
    	width: 100%;
    	height: 20px;
    	position: absolute;
    	bottom: 15px;
    }

    The effect is not working as expected because along with the image, the title is also inside the link tag, which is what’s supposed to contain the image.

    Best regards,
    Ismael

    Hi,

    You’re welcome! Glad we could help. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Could you provide a link to examples of the products where we can reproduce the issue? And please post the login details in the private field so that we can check it further.

    Best regards,
    Ismael

    Hi,

    We don’t see the filter in the category page, only the shortcode. We also checked the Shophistic Lite demo, but we don’t see the filter either. (see private field)

    Best regards,
    Ismael

    in reply to: Customize php files in enfold-child #1224428

    Hi,

    Sorry for the delay. You can use this filter in the functions.php file to adjust the av-mini-font-size media query.

    add_filter('avf_mobile_font_size_queries' function($queries) {
        $queries['av-mini-font-size'] = 'only screen and (max-width: 375px)';
        return $queries;
    }, 10, 1);
    

    Unfortunately, we can’t override the values in the popup-templates.class.php file, so you can either do the modification directly in the parent theme or use css code to override the media queries.

    Best regards,
    Ismael

    in reply to: Optimizing images: Should I use more than 1 version? #1224427

    Hi,

    We’ll forward your concerns to our channel for further considerations. For the meantime, you can use third party plugins like WP Retina 2x to automatically add an srcset attribute to the images.

    // https://wordpress.org/plugins/wp-retina-2x/

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Lightbox Gallery Captions Not Showing #1224425

    Hi,

    Link to the custom popup_masonry_gallery script (by @Guenni007) in case someone else wanted to implement it: https://pastebin.com/uQTbY8Cb

    Example: https://webers-testseite.de/pureinstall/masonry-gallery/

    Best regards,
    Ismael

    in reply to: custom sidebar on buddypress pages #1223808

    Hi,

    Thank you for that info. Have you tried using the avf_custom_sidebar filter to change the current sidebar on a specific archive page?

    add_filter('avf_custom_sidebar','avf_custom_sidebar_mod');
    function avf_custom_sidebar_mod($sidebar) {
    	if ( CONDITIONS HERE ) {
    		$sidebar = "special";
    	}
    	return $sidebar; 
    }

    Replace the placeholder with the actual conditions.

    This might help: https://codex.buddypress.org/developer/template-tag-reference/

    Best regards,
    Ismael

    in reply to: Validation code with W3 Validator #1223805

    Hey klara999!

    Please continue here: https://kriesi.at/support/topic/w3-markup-validation-service-errors/

    Regards,
    Ismael

    in reply to: W3 Markup Validation service errors. #1223804

    Hey klara999,

    Thank you for the inquiry.

    The modification provided in the following thread should help.

    // https://kriesi.at/support/topic/aria-roles-are-not-contained-by-their-required-parent-element-aria-att/#post-1154879

    We’ll forward it to our channel.

    Best regards,
    Ismael

    Hi,

    Sorry for the delay. We are not really sure how the tool detects the content of the page/post, or what are its criteria for detecting the summary, so it would be difficult for us to help you with this. Did you try asking the creator of the smmry tool?

    The hierarchy of the elements on the post and page above are almost the same and there is nothing really different between the structure of their content except that the summary that is properly detected or the summary that is inside the page is wrapped inside a text block. Other than that the structure of the post and page is the same. It’s also odd that the tool managed to detect the summary in the page when it contains a lot more sections compare to the post.

    Best regards,
    Ismael

Viewing 30 posts - 18,211 through 18,240 (of 67,597 total)