Forum Replies Created

Viewing 30 posts - 16,081 through 16,110 (of 66,850 total)
  • Author
    Posts
  • Hi,

    Thank you for the clarification.

    It might not be working because we modified the image.php file instead of the template file for the slideshow. Please try to edit the enfold\config-templatebuilder\avia-shortcodes\av-helper-slideshow.php file, and look for this code around line 360:

    $link = wp_get_attachment_image_src( $slide->ID, $this->config['lightbox_size'] );
    

    .., then replace it with:

    $link = wp_get_attachment_image_src( apply_filters('wpml_object_id', $slide->ID, 'attachment', TRUE ), $this->config['lightbox_size'] );
    

    This should allow WPML to filter the slide ID or use the appropriate image from another language before returning it to the template.

    Best regards,
    Ismael

    in reply to: music player start from beginning #1260549

    Hi,

    Could you provide a direct link to a page with a playlist that contains multiple items, and where the issue occurs? The second playlist in the page above contains only one item.

    The issue is quite tricky because it is random and it does not happen on every playlist. In any case, users could always pause the player manually if it restarts, but we understand that there is an issue with the playlist.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Adjust Collapse Order on Mobile #1260546

    Hi,

    Yes, this is not possible using the default options but as we mentioned above, we could create a duplicate of the same section and adjust the order of the columns so that the text is placed before the image. Or use css and css media queries to reverse the order of the columns inside the same section only on mobile view.

    If you need further assistance, please do not hesitate to open a new thread with the site details. We will close this one for now.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Product widget #1260545

    Hi,

    Sorry for the late response. We can now properly access the site.

    1.) To decrease the space between the product title and price, we could use this css code to pull the price container upwards so that it is closer to the product title. This might cause minor issues with products with longer title.

    .product_list_widget li .woocommerce-Price-amount {
    	top: -30px;
    	position: relative;
    }
    

    2.) Are you referring to the same product widget? The following snippet should adjust the size of the default product thumbnail.

    add_filter( 'woocommerce_get_image_size_thumbnail', function( $size ) {
        return array(
            'width'  => 120,
            'height' => 120,
            'crop'   => 0,
        );
    } );
    

    Default size of the thumbnail is only 36x36px.

    Best regards,
    Ismael

    Hi,

    Glad to know that you managed to solve it. It would be awesome if you could share the solution here in the fourm for users who might be having the same issue.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Problem with double click to start horizontal gallery #1260542

    Hi,

    Would you consider adding a border to the active item? Please try this css code.

    .av-horizontal-gallery-wrap.av-active-gal-item {
    	border: 1px solid gray;
    }
    

    Using the same selectors above, you could also create a custom element such an arrow or something to indicate that the current item is the active item.

    Best regards,
    Ismael

    in reply to: Related Posts ENFOLD #1260540

    Hi,


    @isotopper
    : We could use the snippet in the following thread to render the social share section after the content of the advance layout builder.

    // https://kriesi.at/support/topic/social-share-button-in-custom-footer-page-showing-wrong-url/#post-1202270

    If you need further assistance, please do not hesitate to open a new thread. We will close this one for now.

    Best regards,
    Ismael

    in reply to: Customer recommendation #1260539

    Hi,

    Thank you for the screenshot.

    We could apply the background color directly to the heading tag instead of the parent container.

    body .schongewusst {
    	background-color: transparent;
    	padding: 0 10px 0 10px !important;
    	margin-bottom: -150px;
    	z-index: 2;
    	position: relative;
    	margin: 0 auto -50px auto !important;
    	float: none !important;
    	top: 30px !important;
    }
    
    body .schongewusst .av-special-heading-tag {
    	padding: 0;
    	margin: 0;
    	float: left;
    	width: auto;
    	display: inline;
    	background-color: white;
    }

    Best regards,
    Ismael

    in reply to: Custom image size cropping #1260538

    Hi,

    Sorry for the delay. Looks like the original or full sized version of the image is used in the page. What is the size of the original image?

    Could you provide access to the site so that we could check it properly? Please post the site details in the private field

    Best regards,
    Ismael

    in reply to: How to remove H3 in Slider accordeon #1260084

    Hi,


    @mtrebbi
    : Thank you for the update. Please open a new thread and provide an admin account for the site in the private field so that we could check the issue. We will close this one for now.

    Best regards,
    Ismael

    in reply to: Change how testimonials display #1260082

    Hi,

    @lofy: Looks like you have set the testimonial element to have a grid style and added your own css modification to add a background for each item. Please remove the css modification and set the Testimonial Grid Style to Boxed Grid instead.

    Best regards,
    Ismael

    in reply to: Link in pagination & Breadcrumb wrong? #1260081

    Hey Blatze,

    Thank you for the inquiry.

    Where can we see the issue? Are you using the Blog Posts element? Please post the site or page URL containing the blog posts so that we could check the issue properly. We might have to temporarily disable the plugins while checking the issue.

    Best regards,
    Ismael

    in reply to: Sidebar not showing on shop page and product page #1260079

    Hi,

    We could still use the snippet in the previous thread to move the sidebar to the left, but we have to change the css code a bit. Please add the snippet from the previous thread in the functions.php file, and use this css code instead.

    .single-product-main-image {
        width: 25%;
    }
    
    .single-product-summary {
        overflow: hidden;
        width: 45%;
        float: right;
        margin-right: 5%;
    }
    
    .single-product .sidebar {
        width: 25%;
    }

    We just set the single-product-summary container to float to the right instead of the left. This should move the sidebar to the left side of the product content.

    Best regards,
    Ismael

    in reply to: Tap to open menu bug #1260077

    Hey Thomas,

    Thank you for the inquiry.

    We could not reproduce the issue on our end. The parent menu item with drop down or child menu items opens in a single tap. And just curious, what would be the issue if a parent menu item has to be double tapped?

    Best regards,
    Ismael

    in reply to: Masonry Element Sizing #1260047

    Hi,

    Using columns and image elements is probably a much better and more simple approach. You just need to make sure that the height of the portrait image is twice of that of the landscape ones plus the spaces. All images should have the same width.

    Please check the screenshot below.

    // https://imgur.com/4luQddt
    // https://imgur.com/6ANnYFV

    There are two 1/2 columns in a row, and the Row Settings > Row Layout > Equal Height Columns is enabled. We could remove the default column spaces and use css to control it manually but in this example, we are using the default spaces and added this css code to adjust the width and size of the space in between.

    #top div .av_one_half {
    	margin-left: 10px;
    	width: calc(50% - 20px);
    }
    
    #top div .av-flex-placeholder {
    	width: 10px;
    }

    Best regards,
    Ismael

    Hi,

    We could use the SearchWP plugin instead, then use this snippet in the functions.php file to integrate the plugin search query to the AJAX search form.

    // https://kriesi.at/support/topic/ajax-search-search-wp-doesnt-work/#post-1259151

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Gravatar problems in blog view #1260043

    Hi,

    Thank you for the inquiry.

    The only difference between the two templates or pages is that the gravatar in the author page (enfold\includes\loop-about-author.php line 76) is wrapped around a section container with the author-box class name. This section is not available in the blog template (enfold\includes\loop-index.php line 253). Unfortunately, we are not sure know how the plugin switches from the default gravatar to the lettered image, but the markup might have something to do with it.

    <section class="author-box" itemprop="author" itemscope="itemscope" itemtype="https://schema.org/Person">
    AUTHOR MARKUP HERE INCLUDING GRAVATAR
    </section>
    

    Best regards,
    Ismael

    in reply to: Remove h3 tags from widget title #1260042

    Hi,

    Did you use the snippet that @guenni007 provided in the previous thread?

    function register_custom_footer_widget(){   
        $footer_columns = avia_get_option( 'footer_columns', '5' );
        for ($i = 1; $i <= $footer_columns; $i++){
    		unregister_sidebar( 'av_footer_'.$i );
    
    		register_sidebar(array(
    			'name' => 'Footer - column'.$i,
    			'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 
    			'after_widget' => '<span class="seperator extralight-border"></span></section>', 
    			'before_title' => '
    <h5 class="widgettitle">', 
    			'after_title' => '</h5>
    ', 
    			'id'=>'av_footer_'.$i
    		));
    	}	
    }
    add_action( 'widgets_init', 'register_custom_footer_widget', 11 );
    

    This will unregister the footer widgets, and register them back with the new before_title value.

    // https://kriesi.at/support/topic/heading-tags-in-the-footer-widget-areas/#post-1198686

    Best regards,
    Ismael

    in reply to: Use CSS for Breadcrumbs #1260039

    Hey ClimbingSocks,

    Thank you for the inquiry.

    1.) The title and breadcrumb is disabled on the site, so we enabled it temporarily so that we could inspect the elements. To place the breadcrumb under the title, please add this css code.

    .title_container .breadcrumb {
    	position: relative;
    	right: auto;
    	top: 0;
    	margin-top: 0;
    	margin-left: -2px;
    }
    

    2.) To hide it on mobile view, add this css code.

    @media only screen and (max-width: 767px) {
      /* Add your Mobile Styles here */
      .title_container .breadcrumb {
        display: none !important;
      }
    }
    

    3.) And use this to remove the prefix “You are here:”.

    .breadcrumb-title {
    	display: none !important;
    }
    

    Hope that helps.

    Best regards,
    Ismael

    in reply to: How to put a field in blog posts in masonry #1260036

    Hi,

    Thank you for the inquiry.

    We have to modify the enfold\config-templatebuilder\avia-shortcodes\postslider\postslider.php file and add the year above the featured image markup, which is around line 772 of the said file.

    $output .= $thumbnail ? "<a href='{$link}' data-rel='slide-" . avia_post_slider::$slide . "' class='slide-image' title='{$image_link_title}'>{$thumbnail}</a>" : '';
    

    Did you add the year as a custom field? If so, then we could use the get_post_meta function to get the value of the custom field and render it in the page.

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

    Best regards,
    Ismael

    in reply to: Cart Collaterals overlap the Footer #1260035

    Hey nickgin,

    Thank you for the inquiry.

    How can we make that container appear in the page? Have you tried adjusting the z-index property of the cart collaterals container? Please provide the necessary steps so that we could check the container.

    Best regards,
    Ismael

    in reply to: Not updating the quantities as expected #1260034

    Hey nickgin,

    Thank you for the inquiry.

    Where can we see this issue? Did you also modify the add to cart button? It is possible that the default add to cart button from the theme does not recognize the changes in the quantity input, or that the selectors used in the script do not match the actual elements in the product page.

    Best regards,
    Ismael

    Hi,

    Thank you for the clarification.

    Are you referring to the post navigation located on both sides of the page? By default, this navigation will not display if there is a full width element in the page such as the layer slider. You have to add this snippet in the functions.php file to change that behavior.

    function avf_post_nav_settings_mod($settings) {
      $settings['is_fullwidth'] = false;
      $settings['skip_output'] = false;
      return $settings;
    }
    add_filter('avf_post_nav_settings','avf_post_nav_settings_mod', 999, 1);
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Manual linking approach: “Easy slider” > select image > “advanced” “Link Einstellungen” “Link zu Bild hinzufügen” I used instead of “Öffne Bild in einer Lightbox” > “Manuell festlegen >https://…

    Defining the URL manually or setting the image URL manually will not work because WPML has to know the ID of the attachment in order to retrieve the other version of the image in another language. Unfortunately, image or attachment post type is not available in the Image Link? drop down.

    Best regards,
    Ismael

    Hi,

    Thank you for the clarification.

    Did you disable the wholesale plugin? We do not see any wholesale products in the front page, or any products with the wholesale price as shown in the screenshot. Please activate the plugin temporarily or post the login details in the private field so that we could check the issue further.

    For additional assistance, please try to keep in touch with the plugin developers.

    Best regards,
    Ismael

    in reply to: Masonry layout for ALB Blocks #1259874

    Hey SyberKnight,

    Thank you for the inquiry.

    Could you provide a screenshot or a mockup of the layout that you want to create? Looks like this is not possible using the default elements because you cannot combine or show an icon list in a masonry element, so your other option is to get a custom code somewhere with the layout that you are after, or find a custom plugin. Unfortunately, we do not know of any plugin that has this feature.

    Best regards,
    Ismael

    in reply to: Unable to log in when Enfold theme is active #1259861

    Hi,

    Thank you for the inquiry.

    Is this a staging site? Can we deactivate the plugins temporarily via FTP? We will rename the plugins directory because it is possible that one of the plugins in combination with the theme is causing the issue.

    Do you remember doing anything before this issue happens?

    The reCaptcha is standard in all WordPress CMS. It’s part of WordPress.

    Google reCAPTCHA is not a standard feature in WordPress, so it might be from a plugin, a custom snippet, or could be an option added by your host. Did you install the Contact Form 7 plugin? Adding the following snippet in the functions.php file should disable the CF7 recaptcha script.

    remove_action( 'wp_enqueue_scripts', 'wpcf7_recaptcha_enqueue_scripts' );
    

    Best regards,
    Ismael

    in reply to: Enfold matomo don't tracking #1259855

    Hi,


    @HolgerBusse
    : As explained above, the theme will only render the content of the Google Analytics field if it contains the tracking ID. Did you also add the Google Analytics snippet in the field? The theme will only render the content of that field if the “UA-” string or text, which is a part of the tracking ID, is found.

    Best regards,
    Ismael

    Hey crabjack,

    Thank you for the inquiry.

    We might have to wrap the description output with the do_shortcode function in the avia_woocommerce_parallax_banner function. This function or snippet is in the enfold\config-woocommerce\config.php file around line 1135.

    if($description) $output .= "<h1>".$description."</h1>";
    

    Replace the line with:

    if($description) $output .= "<h1>".do_shortcode($description)."</h1>";
    

    Best regards,
    Ismael

    in reply to: Anchor point links not working with mobile device #1259850

    Hi,

    Thank you for the inquiry.

    Is the scroll position a bit off on mobile view? This might be due to this modification which sets the header container to stick or to have a fixed position on scroll.

    .html_header_top.html_header_sticky #top #wrap_all #header {
    	position: fixed;
    }

    Best regards,
    Ismael

Viewing 30 posts - 16,081 through 16,110 (of 66,850 total)