Forum Replies Created

Viewing 30 posts - 14,971 through 15,000 (of 66,827 total)
  • Author
    Posts
  • in reply to: Masonry displays all products #1283101

    Hey AFDCO,

    Thank you for the inquiry.

    We are not really sure how the plugin hides the content for a specific user role, but you might be able to use the “avf_masonry_loop_prepare” to adjust the markup of the masonry items and wrap it inside the UM shortcode as shown in their documentation.

    // https://docs.ultimatemember.com/article/226-restrict-content-on-a-page-post-to-specific-users-community-role

    We cannot guarantee that this will work though.

    If the plugin is altering the post or product query, we might be able to use the avia_masonry_entries_query to adjust the default query of the masonry element and only include the items that the current user should see. Unfortunately, we are not really sure how the plugin handles this, so additional assistance from the plugin developers may be needed.

    Best regards,
    Ismael

    in reply to: Single Post Blog Layout #1283096

    Hey rmatus,

    Thank you for the inquiry.

    A full width image for the single blog post should be possible but you have to either modify the template directly as you did previously, or use the Advance Layout Builder (ALB) and add fullwidth elements such as a slider or a color section. However, this means that you will have to manually add the content to the posts including the meta info, the comments area and the social share section, which are all available in the builder as elements.

    Best regards,
    Ismael

    in reply to: Advanced Woo Search #1283094

    Hi,

    The code above should disable the default AJAX search from the theme, but extra modification might be needed if the plugin requires it. If you need more help, please feel free to create a new thread or ticket, and post the details in the private field so that we could check the site properly.

    Best regards,
    Ismael

    in reply to: Backend Menu Drag&Drop broken #1283092

    Hi,

    Thank you for the update.

    Glad to know that you have found a temporary solution. We tested the the issue on our end, and we might have found a working solution using a simple css code. Please remove the css code above, then try this one instead.

    .menu-item-edit-inactive .ui-sortable-placeholder:not(.menu-item-handle) {
        margin: 0 5px;
    }

    Best regards,
    Ismael

    in reply to: Rich MegaMenu possibilities #1283091

    Hi,


    @mattofelki
    : Good to know. Please let us know if you need more help.


    @goldengate415
    : Thank you for the assistance.

    Best regards,
    Ismael

    in reply to: DSGVO Google fonts #1283080

    Hi,

    Thank you for the info.

    The demo is not using a locally hosted font, so it has to get the fonts from Google. We tried to login to the dashboard using the account above, but it seems to be invalid. Please check the login info or create another so that we could access the dashboard and check the settings.

    Best regards,
    Ismael

    in reply to: Post Slider hover transition #1283079

    Hi,

    3.) Alright. We could use this script in the functions.php file to make the whole box or the whole slide entry clickable.

    // a custom script
    function ava_custom_script_mod() {
        if ( wp_script_is( 'avia-default', 'registered' ) ) {
            wp_add_inline_script( 'avia-default', '
    		(function($) {
    			$(".slide-entry").on("click", function() {
    				window.location.href = $(this).find("a").attr("href"); 
    			});
    		})(jQuery);
    	');
        }
     }
     add_action( 'wp_enqueue_scripts', 'ava_custom_script_mod', 9999);
    
    

    Please make sure to add this css code in the Quick CSS field afterwards.

    .slide-entry {
    	cursor: pointer;
    }

    Best regards,
    Ismael

    in reply to: Link to Album Lightbox #1283074

    Hi,

    Alright. Glad to know that you have found a solution that works for you. Let us know in another thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: When I upload images I couldn´t see the thumbnails #1283071

    Hi,

    Great! Glad we could be of help. Please do not hesitate to open a new thread should you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Need some mobile CSS help in my Enfold Startsite #1283069

    Hi,

    Awesome! You are welcome! Please feel free to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Cumulative Layout Shift too high #1283068

    Hi,


    @Swarez
    : On opening the page, I noticed a shift once the first image is loaded, maybe because it is lazy loaded. Are you using lazy loading and/or animations for the columns or sections? Either of the two could contribute to layout shifts, so disabling these options should improve the CLS score.

    Best regards,
    Ismael

    in reply to: Horizontal Gallery Not Mobile Friendly #1283065

    Hi,


    @mattofelki
    Did you define a custom css class name or ID for the horizontal gallery element?

    // https://kriesi.at/documentation/enfold/add-custom-css/#enable-custom-css-class-name-support

    In the following css code, you have to replace “custom-css-class” with the actual class name of the element.

    .responsive .custom-css-class .av-horizontal-gallery-inner {
        min-height: 200px !important;
    }
    
    

    Best regards,
    Ismael

    in reply to: YouTube video embed on mobile #1283064

    Hi,

    We cannot figure out why it is not playing on mobile devices. Temporarily, you may need to disable lazy loading and regarding user privacy, you may need to inform the users through the privacy policy page or the modal popup window that the site contains videos, which may require or store cookies.

    Best regards,
    Ismael

    in reply to: Change featured image size on single posts only #1283063

    Hi,

    Sorry about that. Make sure to check that we are not on the admin page.

    Please put this line before the first conditional.

    if(is_admin()) return;
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    Try to replace the snippet in the functions.php with the following code.

    function ava534345953_init() {
    	add_action( 'woocommerce_after_single_product_summary', 'avia_add_sidebar', 25);
    	add_action( 'woocommerce_after_single_product_summary', 'avia_close_image_div_mod', 20);
    	add_action( 'woocommerce_before_single_product_summary', 'avia_open_image_div_mod', 1 );
    }
    
    function avia_open_image_div_mod() {
    	echo "<div class='product-main-container'>";
    }
    
    function avia_close_image_div() {
    	echo "</div>";
    }
    
    function avia_close_image_div_mod() {
    	echo "</div>";
    }
    
    function avia_add_sidebar() {
    	if(is_product()) {
    		$avia_config['currently_viewing'] = "shop_single";
    		get_sidebar();
    	}
    }
    add_action('init','ava534345953_init', 50);
    

    Then use this css code.

    .product-main-container {
    	width: 70%;
    	float: right;
    }
    
    .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;
    }

    Or post the FTP and WP details so that we could implement the changes.

    Best regards,
    Ismael

    Hi,

    Thank you for the info.

    You may need to adjust the actual sidebar option aside from the layout option above.

    // Layout > Sidebar Settings
    if($element['id'] == 'sidebar')  {
    	$elements[$counter]['std'] = 'Custom Widget Area';
    }

    In the std parameter or key, define the actual name of the widget area.

    It might be a good idea to change the title of the layout settings to “Layout Settings” to avoid confusion.

    Best regards,
    Ismael

    in reply to: Add to Cart Button #1283044

    Hi,

    Thank you for the update.

    The max attribute corresponds to the available stocks but for some reason, it is not working. Please try to edit the themes\enfold\config-woocommerce\woocommerce-mod.js, look for this code around line 72.

    avia_apply_quant_btn();
    

    Below, add this code.

    $(".variations_form").on("woocommerce_variation_select_change", function () {
    		avia_apply_quant_btn();
    });
    

    This should update the quantity buttons after selecting a different variation.

    Best regards,
    Ismael

    in reply to: Widget left – Logo right – Menu below #1283040

    Hi,

    Thank you for following up.

    Try to replace the latest css code with this one to limit the width of main menu.

    .responsive #top #header #header_main .inner-container .main_menu {
    	order: 2;
    	flex-basis: 100%;
    	align-items: center;
    	align-self: center;
    	height: 42px;
    	background: #00607b;
    	justify-content: center;
    	position: absolute;
    	width: 100vw;
    	bottom: -25px;
    	left: 50%;
    	transform: translate(-50%, 0);
    }
    

    Then use this css code adjust the maximum width of the inner container.

    .responsive #top #header #header_main .inner-container .main_menu .avia-menu {
    	max-width: 1600px;
    }

    Best regards,
    Ismael

    in reply to: General Theme Edit Issues #1283034

    Hi,

    Odd. This is how it looks on Firefox Windows 10.

    Screenshot: https://imgur.com/sWuYPty

    Maybe this snippet will help, just add it in the functions.php file.

    function ava_custom_admin_style() {
      echo '<style>
        .title.column-title {
    		min-width: 300px;
    		display: block;
    	}
      </style>';
    }
    add_action('admin_head', 'ava_custom_admin_style');
    
    

    This should apply a minimum width to the title column.

    Best regards,
    Ismael

    in reply to: Enfold Gallery: images at wrong positions – #1283032

    Hi,

    You are very welcome! Could you post the FTP details in the private field so that we could toggle the responsive image option of the gallery element? We may need to test it further and hopefully, we could come up with a better solution. And since the issue is already visible in your site, it would be a lot easier if we could test it there.

    Best regards,
    Ismael

    in reply to: Enfold Menu Accessibility #1282836

    Hi,

    Thank you for the info.

    We created a js folder inside the child theme directory and place the avia-snippet-megamenu.js file inside so that it coincides with the declared path in the functions.php file, or in the wp_enqueue_script function.

    
    add_action("after_setup_theme", function() {
    	wp_dequeue_script('avia-megamenu');
    	wp_enqueue_script('avia-megamenu', get_stylesheet_directory_uri().'/js/avia-snippet-megamenu.js', array('avia-default'), '', true);
    }, 999);
    
    

    You can now tab though the mega menu items to open the sub menu container. Please purge the cache and make sure to do a hard refresh before checking the page.

    Best regards,
    Ismael

    in reply to: DSGVO Google fonts #1282831

    Hi,

    Thank you for the inquiry.

    We cannot reproduce the issue on our end when we used a locally uploaded font. Are you using a layer slider or a Google map element? These elements may still load custom fonts from Google, so you have to make sure that they do not load without user permission.

    Best regards,
    Ismael

    in reply to: Video playback issues – part of slideshow #1282813

    Hi,

    Thank you for the update.

    We cannot reproduce the same issue on IE, but we will forward the issue to our channel. Temporarily, you can keep the filter above and use videos from Youtube, instead of uploading the video to your server. It is much faster and you save a little space in your server.

    Best regards,
    Ismael

    in reply to: Header width scrollin down #1282807

    Hi,

    Sorry about that. In the css code, please look for this part or selector.

    .main_menu li a 
    

    Replace it with:

    .main_menu > li a 
    

    This should exclude the sub menu items.

    Best regards,
    Ismael

    in reply to: Link to Album Lightbox #1282804

    Hi,

    Thank you for the update.

    Would you mind if we check the page where this has been implemented? Did you disable the file compression and purge the cache after adding the recommended css code? It is possible that no images are showing because the opacity of the mfp-container is still set to 0.

    Best regards,
    Ismael

    in reply to: copyright option for Easy Slider (Einfacher Slider) #1282791

    Hi,

    I was just describing the previous modifications that we have done for the color section, which could be implemented for the gallery or the slider elements as well, with some tweaks. Unfortunately, this is not yet available for the sliders and for the gallery. Please contact our partner, Codeable, or a hire a freelance developer to adjust the modification for the gallery and slider elements.

    Thank you for understanding.

    Best regards,
    Ismael

    Hi,

    Thank you for the inquiry.

    You can use the Loco Translate plugin to adjust the existing translation for the theme.

    // https://wordpress.org/plugins/loco-translate/

    Or the PO Edit software to manually adjust the language files.

    // https://poedit.net/

    If you need further assistance, please create a new thread.

    Best regards,
    Ismael

    in reply to: WooCommerce – Product categories #1282786

    Hi,

    Glad to know that you have found a working solution. For the sidebar, this css code should help.

    .container .template-shop.av-content-small.units {
    	width: 100%;
    }
    
    .template-shop .sidebar {
    	display: none !important;
    }
    

    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

    Hi,

    Thank you for the update.

    We were able to update the home page and create another page without encountering any issues. Is this still a problem on your end? (see private field)

    If this continue to be a problem, please disable the cache plugin and set the Enfold > Theme Options > Select Your Editor settings to the second option or the classic editor. Let us know if it helps.

    We will tag Yigit in the thread.

    Best regards,
    Ismael

    in reply to: LayerSlider WP Navigation Visuals Not Right #1282776

    Hey egouldmedia,

    Thank you for the inquiry.

    We see a few syntax errors in the browser console, which is not directly related to the layer slider but it could be causing the issue with the navigation. Do you remember adding this snippet anywhere?

    // your code goes here
     	<link rel="preconnect" href="https://fonts.gstatic.com">
     	<link href="https://fonts.googleapis.com/css2?family=Hammersmith+One&display=swap" rel="stylesheet"> 
    

    This part is not valid.

    // your code goes here
    

    Best regards,
    Ismael

Viewing 30 posts - 14,971 through 15,000 (of 66,827 total)