Forum Replies Created

Viewing 30 posts - 7,411 through 7,440 (of 67,463 total)
  • Author
    Posts
  • in reply to: Masonry mouse-over background image size #1419658

    Hi,

    You’re welcome! Glad we could be of help. Please feel free to open another thread when you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: critical error editing page – TYPE E Error #1419657

    Hi,

    Thank you for following up.

    The slider should have been disabled when you remove the shortcodes. We are not sure why it remained there, but glad to know that the slider attributes have been updated and the error has been removed. You might be able to do these steps by switching to the classic editor instead of activating a different theme.

    Best regards,
    Ismael

    in reply to: Theme Update broke our website #1419655

    Hi,

    Thank you for the update.

    A lot has changed since 4.7.6.4, so expect some errors to occur after updating to 5.6.6, especially if you’ve made modifications in your child theme. To prevent this in the future, please ensure you regularly update the theme as soon as new patches become available.

    We recommend creating a site clone, updating it to the latest version (5.6.6), and resolving any issues there before applying the updates to your live site. You may need to toggle or temporarily disable Enfold > Performance > File Compression while working on the site.

    Once the clone is ready and updated, please provide the site URL and login details in the private field so that we can investigate the errors.

    Best regards,
    Ismael

    in reply to: Tab Section #1419654

    Hey woogie07,

    Thank you for the inquiry.

    Please refrain from creating duplicate threads. We replied here: https://kriesi.at/support/topic/tab-section-25/

    Best regards,
    Ismael

    in reply to: Tab Section #1419653

    Hi,

    Great! Glad we could be of help. Please do not hesitate to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: My theme stopped working #1419652

    Hey Mousa,

    Thank you for the inquiry.

    Which theme did you purchase? If you are using Enfold, you may need to download the latest version from your Themeforest account and update the theme manually via FTP. Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Please register in the forum using your purchase code (link below), create a new thread, then provide the site URL in the private field.

    // https://kriesi.at/support/register/

    You can open an Enfold inquiry, using this link.

    // https://kriesi.at/support/forum/enfold/#new-post

    Best regards,
    Ismael

    in reply to: recurring events not showing #1419649

    Hi,

    but it’s not even showing all the non-recurring events

    Yes, we understand. It’s displaying only one event, which is likely due to the fact that we are only retrieving six items at a time. During testing in the casa-dominguez page, when we use the tribe_get_events function, it returns five recurring events and one non-recurring event. However, as mentioned earlier, the query_posts function doesn’t retrieve recurring events, resulting in only one item being displayed. We could try and adjust the value of the posts_per_page parameter in the query to retrieve more items, but it will still ignore recurring events.

    Best regards,
    Ismael

    in reply to: Gallery Lightbox not working #1419648

    Hi,

    Can you pin point where the syntax error is coming from?

    It doesn’t really point to the actual file or function, probably because the scripts are compressed. We may need to login to the site in order to check the issue further. In the meantime, please temporarily disable the Enfold > Performance > File Compression settings so that we can properly trace the error.

    Best regards,
    Ismael

    in reply to: Date Picker Form Issue Mobile #1419647

    Hey IconicD,

    Thank you for the info.

    We will forward the issue to our channel. For the meantime, please add this code in the functions.php file to apply the inputmode attribute to the datepicker.

    function av_custom_inline_script() {
            // apply inputmode to datepicker
    	wp_add_inline_script( 'jquery', 
    		"
    		(function($) {
                        $('.avia_datepicker').each(function() {
                            $(this).attr('inputmode', 'none'); 
                        });
                    })(jQuery);
    		"
    	);
         }
    add_action( 'wp_enqueue_scripts', 'av_custom_inline_script' );
    

    Best regards,
    Ismael

    in reply to: Round images instead of squared (team member) #1419646

    Hi,

    Thank you for the update.

    For an Image element, go to the Styling > Styling toggle, then set the Image Styling to the second option “Circle (image width and height must be equal)”.

    Best regards,
    Ismael

    in reply to: Toggle content text in different color #1419645

    Hey RENZCOM,

    Thank you for the inquiry.

    You can use this css code to adjust the style of the toggle content.

    .toggle_content {
        padding: 12px 30px 11px 30px;
        margin: 0px 0 5px 0;
        border-style: solid;
        border-width: 1px;
        border-top: none;
        border-bottom-left-radius: 2px;
        border-bottom-right-radius: 2px;
        overflow: hidden;
        color: red;
    }
    

    Best regards,
    Ismael

    in reply to: Partner/Logo Element Scroll on Mobile #1419644

    Hi,

    Great! Glad to know that you managed to find a workaround. Please do not hesitate to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    Hi,

    We modified the code in the functions.php and style.css file, and the widgets are now displaying as it should but for some reason, there are extra widgets below the dynamic sidebar. To hide the extra widgets temporarily, we added this css code.

    .single-product section#woocommerce_product_search-5, .single-product section#woocommerce_product_categories-4 {
        display: none !important;
    }
    

    Adjusted modification in the style.css file.

    .product-main-container {
        width: 56%;
        float: right;
        margin-left: 50px;
    }
    
    .product-main-container::after {
    	content: '';
    	display: table;
    	clear: both;
    }
    
    .product-main-container .single-product-main-image, .product-main-container .single-product-summary  {
    	width: 100%;
    }
    
    #top #main .sidebar {
        border-left: 0;
        border-right-style: solid;
        border-right-width: 1px;
        margin-left: 0;
    }
    
    .single-product section#woocommerce_product_search-5, .single-product section#woocommerce_product_categories-4 {
        display: none !important;
    }
    

    And in the functions.php file.

    /* Move product sidebar */
    function ava_move_product_sidebar() {
    	remove_action( 'woocommerce_before_single_product_summary',  'avia_close_image_div', 20);
    	add_action( 'woocommerce_before_single_product_summary',  'avia_close_image_div_mod', 20);
    	add_action( 'woocommerce_before_single_product_summary', 'avia_open_image_div_mod', 1);
    	add_action( 'woocommerce_after_single_product_summary', 'avia_close_image_div_mod', 4);
    	add_action( 'woocommerce_after_single_product_summary', 'avia_add_sidebar', 25);
    }
    add_action('init','ava_move_product_sidebar', 50);
    
    function avia_open_image_div_mod() {
    	echo "
    <div class='product-main-container'>";
    }
    
    function avia_close_image_div_mod() {
    	echo "</div>
    ";
    }
    
    function avia_add_sidebar() {
    	if(is_product()) {
    		$avia_config['currently_viewing'] = "shop_single";
    		get_sidebar();
    	}
    }
    
    add_filter('avf_custom_sidebar', function($sidebar) {
    	if(is_product()) {
    		$sidebar = 'Single Product Pages';
    	}
    
    	return $sidebar;
    }, 10, 1);
    

    Best regards,
    Ismael

    in reply to: Footer heading #1419642

    Hey woogie07,

    Thank you for the inquiry.

    You can add this css code to adjust the style of the widget titles.

    .flex_column .widget .widgettitle, .content .widget .widgettitle {
        margin-top: 0.85em;
        text-transform: none !important;
    }

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    Have you enabled the privacy cookie options in the theme? It’s possible that the plugin relies on cookies in the local storage, which the privacy options automatically remove on load when users haven’t accepted the cookies yet.

    Best regards,
    Ismael

    in reply to: Layerslider still showing on mobile #1419640

    Hi,

    Glad to know that you managed to find a solution. Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: sticky menu on mobile with centered logo & burger menu #1419639

    Hey Munford,

    Thank you for the inquiry.

    The site seems to be on maintenance mode. We may need to login in order to properly check the issue. Please provide the login details in the private field.

    Best regards,
    Ismael

    in reply to: Image with hotspots; close onclick #1419638

    Hi,

    Thank you for the update.

    Have I placed the additional code correctly? (see screenshot)

    You have to add the code below the first block.

    if (this.options.event != 'click')
                    {
                        this.scope.on('mouseleave', default_tooltips, $.proxy(this.hide_tooltip, this));
                        this.scope.on('click', default_tooltips, $.proxy(this.hide_on_click_tooltip, this));
                    } else
                    {
                        this.body.on('mousedown', $.proxy(this.hide_tooltip, this));
                    }
    
                    this.body.on('click', $.proxy(this.hide_all_tooltips, this));
    

    You have to temporarily disable the Enfold > Performance > File Compression settings after doing the modification.

    Best regards,
    Ismael

    in reply to: Produktbild in WooCommerce auf Seite größer darstellen #1419577

    Hi,

    Welcome back!

    Is it also possible to change the size of the picture only on certain pages?

    Yes, this is possible. Each product page has a unique class name that can be used to style the elements on that specific product page. For example, if you want to adjust the featured image of the “ischset-pasta” product, use this css code.

    .postid-10063 .single-product-main-image {
        width: 50%;
        float: left;
        margin-right: 50px;
        overflow: hidden;
        padding-bottom: 50px;
    }

    The unique class name is “.postid-10063,” where 10063 corresponds to the product’s actual ID.

    Best regards,
    Ismael

    in reply to: critical error editing page – TYPE E Error #1419575

    Hi,

    Thank you for the update.

    The error seems to be related to the Fullwidth Easy Slider. Have you tried to delete the slider and recreate it from scratch? If you’re unable to remove the slider from the builder due to the error, try switching the builder to debug mode and then remove the actual shortcodes from the shortcodes field. Please check the documentation below for more info.

    // https://kriesi.at/documentation/enfold/intro-to-layout-builder/#debug-mode

    Best regards,
    Ismael

    in reply to: Function creates error after update #1419574

    Hi,

    Thank you for the inquiry.

    Would you mind posting the code again on pastebin.com so that we can read it clearly, and provide a link to a product page? Looks like this is a modification for the shop or product banner. Do you remember what was added or modified in the function?

    Best regards,
    Ismael

    in reply to: Style featured image #1419573

    Hi,

    Thank you for the screenshot.

    You may need to set the border radius of the featured image to 0 to remove the black dots in every corner.

    .single-post .single-small.with-slider .small-preview img {
        outline: 10px solid #f4ecdf;
        outline-offset: -10px;
        border-radius: 0;
    }

    Best regards,
    Ismael

    in reply to: Tab Section #1419571

    Hey woogie07,

    Thank you for the inquiry.

    1-2.) You may have to adjust the Layout > General > Initial Open setting from 5 to 1. The navigation arrows will only display if there are remaining items on either side of the tab title container.

    Best regards,
    Ismael

    in reply to: Masonry mouse-over background image size #1419570

    Hey Martijn,

    Thank you for the inquiry.

    You can add this css code to disable the transformation of the masonry image on hover.

    .avia_desktop .av-masonry-entry:hover .av-masonry-image-container {
        transform: none;
    }
    

    Best regards,
    Ismael

    in reply to: recurring events not showing #1419543

    Hi,

    I can only get one event to show at a time — only the next upcoming event.

    Yes, we’ve noticed this issue. For some reason, recurring events cannot be retrieved when using the query_posts function with the post__in parameter, which is the default function used by the Blog Posts element to fetch the posts. In the filter above, we are using the default tribe_get_events function to obtain the IDs of the first 6 related items, which works correctly. However, when we pass these IDs to the query_posts function using the post__in parameter, it only returns non-recurring events.

    should we add the _bak to that folder?

    We just disabled the custom shortcodes just to test if it conflicts with the Blog Posts element. You can enable it back.

    I noticed previously it looked like you’d checked the Events > Settings
    > Condense events in Series option

    Yes, you can leave this option disabled.

    Best regards,
    Ismael

    in reply to: Email protection with Enfold #1419540

    Hi!

    On a quick search, we have found the following plugins in the library claiming to encode all email address automatically.

    // https://wordpress.org/plugins/email-address-encoder/
    // https://wordpress.org/plugins/email-encoder-bundle/

    You can use the following shortcode to protect or encode phone numbers.

    [encode]+1 (555) 123-4567[/encode]
    [encode link="tel:+15551234567"]+1 (555) 123-4567[/encode]
    

    Cheers!
    Ismael

    in reply to: Formular element Checkbox #1419539

    Hi!

    Thank you for the info.

    Please look for this css modification in the Quick CSS field..

    #top label.input_checkbox_label {
        font-size: 11px;
        line-height: 11px;
        font-weight: normal;
    }

    .. then, replace it with:

    #top label.input_checkbox_label {
        font-size: 11px;
        line-height: 11px;
        font-weight: normal;
        top: 5px;
        position: relative;
    }
    

    Regards,
    Ismael

    in reply to: Email protection with Enfold #1419537

    Hey!

    You can mask the email using URL shortener like bit.ly or tinyurl, but we are not sure how effective that would be for spammers who already have your email in their list.

    // https://bitly.com/
    // https://tinyurl.com/app

    Cheers!
    Ismael

    in reply to: ‘Read more’ under the member team name #1419530

    Hi,

    Glad to know that @Mike was able to help. If you have more questions about the theme, please don’t hesitate to open another thread.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: No way to modify buttons in pre-existing full width slider. #1419529

    Hi,

    Thank you for the screenshot.

    Would you mind providing a direct link to the portfolio item that you’re trying to modify? In the meantime, please ask your hosting provider to renew or reconfigure the SSL certificate of the site.

    Best regards,
    Ismael

Viewing 30 posts - 7,411 through 7,440 (of 67,463 total)