Forum Replies Created

Viewing 30 posts - 19,741 through 19,770 (of 67,469 total)
  • Author
    Posts
  • Hi,

    Thank you for the update.

    This should create a 3 column grid.

    .responsive #top #main .products .product {
        padding: 0;
        position: relative;
        width: 32%;
        margin-left: 0;
        float: left;
        clear: none;
    }
    

    Adjust the width to 24% or 23% if you want to create 4 columns.

    Best regards,
    Ismael

    in reply to: HTML markup in excerpt has been lost #1175359

    Hi,


    @MusicalFactory
    : Yes, you have to modify the enfold\config-templatebuilder\avia-shortcodes\av-helper-masonry.php file as suggested previously.

    // https://kriesi.at/support/topic/html-markup-in-excerpt-has-been-lost/#post-734529

    Best regards,
    Ismael

    in reply to: Second toggle button at end of toggle #1175352

    Hi,

    Thank you for the update.

    Where can we see the toggles? Please post the URL of the page.

    If you want to duplicate the toggles, edit the enfold\config-templatebuilder\avia-shortcodes\toggles\toggles.php file and look for this code around line 864:

    $output .= '        <span class="vert_icon"></span><span class="hor_icon"></span></span>';
    

    That is the toggle buttons. You can insert it again after the content, and only display it when the toggle is active.

                $output .= '<div class="toggle_content invers-color '.$inherit.'" '.$markup_text.' '.$colors.' >';
                $output .=					ShortcodeHelper::avia_apply_autop( ShortcodeHelper::avia_remove_autop( $content ) );
                $output .= '</div>';
    

    Best regards,
    Ismael

    Hey torstenhalm,

    Thank you for the inquiry.

    Did you enable the Privacy & Cookie options from the theme? Please try to set the Default Cookie Behavior to the first option so that all services including the spam protection are enabled automatically on page load.

    Best regards,
    Ismael

    in reply to: Remove huperlink from Blog single post H1 titles #1175242

    Hi,

    Thank you for the update.

    We adjusted the filter a bit. Please try it again.

    Best regards,
    Ismael

    in reply to: Thumbnail image size #1174890

    Hi,

    Thank you for the update.

    Try to install the Simple Image Sizes plugin, go to the Settings > Media panel, look for and adjust the size of the “entry_width_sidebar” thumbnail, save or update, then regenerate the thumbnails. If you don’t want to regenerate the media library, just upload the featured image again to see the changes.

    // https://wordpress.org/plugins/simple-image-sizes/

    Best regards,
    Ismael

    in reply to: Add new Instagram icon #1174865

    Hi,

    Thank you for the update.

    We tried to login to the site using the account above but it’s invalid. Please check the info carefully or provide another user account. We’ll try to check the settings.

    Best regards,
    Ismael

    in reply to: Problem with Blog page #1174862

    Hi,

    Thank you for the update.

    Where can we see the posts? By default, you can’t display a different or an alternate title for a post without modifying the theme. Is that what you’re trying to do? A screenshot of the posts will also help.

    Best regards,
    Ismael

    in reply to: No icons (incuding social icons) are displayed #1174844

    Hey Oli,

    Thank you for the inquiry.

    The scripts and stylesheets are currently compressed or merged. Please try to disable the theme’s file compression settings and the Autoptimize plugin temporarily. Let us know if it changes anything.

    Best regards,
    Ismael

    in reply to: GOOGLE MAP API in 4.71 #1174839

    Hi,

    Glad to know that you are able to fix the map issue. We will forward the translation errors in our channel.

    Have a nice day. And thank you for using Enfold.

    Best regards,
    Ismael

    in reply to: Google Maps not showing, Woocommerce price issue, #1174838

    Hey kwlodar,

    Thank you for the update.

    We can’t seem to reproduce the issues that you described above. The map displays properly in the contact page and the price is not duplicated when we select a variation in the linked product page. Did you manage to fix these issues?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    It is working properly on our end now. We removed the cache and refreshed the page first. Please try to check it on incognito mode or just make sure that cache is removed.

    Best regards,
    Ismael

    in reply to: Video background not adhering to the Color Section element #1174830

    Hi,

    You’re welcome! We’ll close this thread for now. Please feel free to open a new one if you need anything else.

    Have a nice day. :)

    Best regards,
    Ismael

    in reply to: Enfold layout portfolio #1174829

    Hi,

    Thank you for the clarification.

    That is the AJAX Portfolio settings. Edit the element and adjust the Link Handling settings to the second option (Open a preview of the entry(known as AJAX Portfolio)). Make sure that the Ajax Portfolio Preview Settings of the portfolio items are set accordingly.

    Best regards,
    Ismael

    in reply to: Cookie Consent Schema Markup of WebPage/BlogPosting #1174825

    Hi,

    Thank you for the info.

    It seems to be an issue with the privacy tabs. We replaced the filter in the functions.php file with the following code.

    function avf_markup_helper_attributes_modified($attributes, $args) {	
    	if(is_singular('post')) {
    		if( ( $args['context'] == 'body' || $args['context'] == 'entry' ) && $args['custom_markup'] != 'article') {
    			unset($attributes['itemtype']);
    			unset($attributes['itemscope']);
    			unset($attributes['itemprop']);
    		}
    	}
    
    	return $attributes;
    }
    add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2);

    Please edit the includes > loop-index.php file, look for this code around line 144:

    echo "<article class='".implode(" ", get_post_class('post-entry post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."' ".avia_markup_helper(array('context' => 'entry','echo'=>false).">";
    

    Replace it with:

    echo "<article class='".implode(" ", get_post_class('post-entry post-entry-type-'.$post_format . " " . $post_class . " ".$with_slider))."' ".avia_markup_helper(array('context' => 'entry','echo'=>false, 'custom_markup' => 'article')).">";
    

    This should remove the markup in the privacy tabs.

    Best regards,
    Ismael

    in reply to: remove category and date from blog teaser #1174807

    Hi,

    You are welcome! Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day!

    Best regards,
    Ismael

    in reply to: Blog Posts – post title text overlay #1174806

    Hi,

    Try to replace .thoughts with .slide-entry, and remove hover in the span.image-overlay so that both overlay and title will display when the article is hovered. Or try to add this css code.

    .slide-entry:hover .slide-image {
    	background: #1d2553;
    }
    
    .slide-entry:hover .slide-image img {
    	opacity: 0;
    }
    

    This will apply the background color to the slide image container instead of the overlay — creating the same effect.

    Best regards,
    Ismael

    in reply to: Logo Centered Split Menu, with Transparent Logo Area #1174800

    Hi,

    You’re welcome! Please feel free to open a new thread if you need more help.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Masonry Image Load Issue #1174797

    Hi,

    Awesome! Glad we could help. Please don’t hesitate to create a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    We adjusted the script a bit.

    // https://kriesi.at/support/topic/move-date-below-blog-title-using-blog-posts-content-element/#post-1170884

    Please look for this line:

     jQuery('.post-entry').each(function(i) {
    

    Replace the selector .post-entry with .single .post-entry. The final code should be:

     jQuery('.single .post-entry').each(function(i) {
    

    This will ensure that the modification is only applied in the single post page.

    Best regards,
    Ismael

    in reply to: CHANGING SOCIAL MEDIA FOOTER ICONS COLOURS #1174791

    Hi,

    Thank you for the following up.

    In the Iconfont Manager, there is a link to the fontello website. Once you’re in the site, search for Instagram, select the latest logo, then download the font set. You may want to rename the set before downloading it. After that, upload the font set in the Iconfont Manager.

    // http://fontello.com/

    Best regards,
    Ismael

    in reply to: Button over image #1174789

    Hi,

    Thank you for the update.

    We can now see the button above the image on Firefox Windows 10. It looks fine on desktop, but you have to adjust it on mobile view or on smaller screens. You can also just apply the modification when the screen width is wider than 1024px.

    @media only screen and (min-width: 1024px) {
      /* Add your Desktop Styles here */
    
    }

    Best regards,
    Ismael

    in reply to: autostart mp4 doesn't work #1174737

    Hi,

    Unfortunately, this is not possible because of the browsers’ autoplay policy. There’s just no way around it.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: i am having a hard time to install the wordpress #1174735

    Hi,

    Thank you for the clarification.

    we just copied the element i

    Where did you copy the elements from? Is it from an existing website or page? It’s possible that there are invalid html tags in the source, which breaks the placeholders or the builder layout. It won’t break the builder initially — only after the page is updated, so you have to be very careful with html tags and make sure that they are closed properly.

    so we have no choice but to revamp the site and make another one from the start.

    Are you still experiencing the issue on any page/s?

    Best regards,
    Ismael

    in reply to: Confusing sorting options in WooCommerce and Enfold #1174732

    Hi,

    Glad it’s working. The sort options are added by theme, so you have to translate the theme or the avia_framework text domain. Go to the Themes tab of the plugin, click Enfold, then look for the language that requires translation.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: set the same font for different languages frontpage #1174730

    Hi,

    Thank you for the info.

    https://ibb.co/6bbXM49

    That is how you apply the font to the elements or text. However, in order to use the font, you have to download the font files and register them first by enqueuing them from the functions.php file, or with css using the @fontface rule. Did you do something like it?

    Please check the articles below for more info.

    // https://www.wpbeginner.com/wp-themes/how-add-google-web-fonts-wordpress-themes/
    // https://css-tricks.com/snippets/css/using-font-face/

    Best regards,
    Ismael

    in reply to: Copyright on selected image looks funny #1174728

    Hi,

    Thank you for the info.

    The version 4.5.2 is not compatible with WordPress 5.3, so you really have to upgrade the theme to the latest version as soon as possible. Unfortunately, we won’t be able to help you any further unless the theme is updated.

    Regarding the issue at hand, it’s not working properly because the link of the featured image is prematurely closed because of the closing tag of the first link in the copyright field. You can either remove the link in the copyright field or edit the loop-index.php file and remove the link of the featured image. Look for the following code around line 201, then remove it:

    if ($slider) $slider = '<a href="' . $link . '" ' . $featured_img_title . '>' . $slider . '</a>';
    

    Best regards,
    Ismael

    in reply to: Google Maps API Error message #1174726

    Hi!

    Thank you for following up.

    Can we have access to the site so that we can check it further? Please post the login details in the private field and try to update the theme to the latest version, 4.7.1.

    Cheers!
    Ismael

    in reply to: CHANGING SOCIAL MEDIA FOOTER ICONS COLOURS #1173956

    Hi,

    Thank you for the update.

    Try to upload the new Instagram logo through the Enfold > Import/Export > Iconfont Manager, then use the following filter to replace the default icon with the new one.

    function avia_add_custom_icon($icons) {
        $icons['instagram'] = array( 'font' => 'instagram’, 'icon' => '0xf16d');
        return $icons;
    }
    add_filter('avf_default_icons','avia_add_custom_icon', 10, 1);
    

    Replace the font value with the actual name of the font set and adjust the icon value.

    Best regards,
    Ismael

    Hey Jon,

    Thank you for the inquiry.

    You can use the following css code to adjust the default width of the product items on mobile view.

    @media only screen and (max-width: 767px) {
        .responsive #top #main .products .product {
    	margin: 0 1% 1% 0;
    	padding: 0;
    	position: relative;
    	width: 49%;
    	margin-left: 0;
        }
    }

    Best regards,
    Ismael

Viewing 30 posts - 19,741 through 19,770 (of 67,469 total)