Forum Replies Created

Viewing 30 posts - 61 through 90 (of 375 total)
  • Author
    Posts
  • in reply to: Cookies consent modal window – Remove tabs borders #1232458

    Everything is ok for me now.
    This topic can be closed.
    Thanks again ;-)

    in reply to: Cookies consent modal window – Remove tabs borders #1232434

    Hi Jordan,
    It works perfectly.
    Thanks a lot!

    in reply to: Sticky full width menu with columns #1232117

    Oh, really? :-(
    Ok

    in reply to: Search – number of displayed results #1232111

    Hi Ismael,

    I could ask our hosting provider to disable HTTP/2, but I’m not sure I could do it quickly and I’m not sure it gonna solve anything, because everything used to perfectly work before and HTTP/2 protocol had always been installed. Do you really think it could help?

    I tried to deactivate all my plugins one by one and I think I found which one disables my search dropdown menu: WooCommerce plugin.
    When I deactivate it, of course my search doesn’t find products, but it displays results again (see Screenshot 1).
    So I think there is a conflict between WooCommerce plugin content and Enfold theme content…

    I saw you deactivated my Akismet and Autoptimize plugins. Is there a reason?

    About my front page, I thank you for your informations, but I made a test with this website https://tools.pingdom.com/ and the weight of my home page seems to be “only” 21MB (see Screenshot 2)… Which tool did you use to test it?
    Anyway, I followed your advice and I immediately decreased number of displayed products by my products slider. My home page is now 8MB heavy and there are 244 requests (Screenshot 3), but I would like to check with your tool to be sure.

    in reply to: Main menu full width #1232103

    Hi Rikard,
    Thanks for your reply.
    On Screenshot 1, my “NOS UNIVERS” dropdown menu as it used to be without the code above.
    On Screenshot 2, my dropdown menu with the code above.
    So what I’m looking for is what do I need to add to my code to apply it to my menu only, not on my “NOS UNIVERS” dropdown menu.

    in reply to: Shopping cart page – Delivery methods icons #1231897

    Hi Yigit,

    I found the “font-color”, but I can’t find the two other issues…

    I checked a backup of my style.css file from the 14th and there is only one “fixed” term, in this code and it seemed to be ok:

    @media only screen and (max-width: 989px) {
    .responsive #top #wrap_all #header {
    position: fixed!important;}
    }

    To find where the semicolon was missing, I tried to check the same backup of my style.css file with CSS Lint, but I get no errors, only warnings :-S

    in reply to: Add icon next to shopping cart icon #1231883

    Hi Yigit,

    No, this is not related to errors in my style.css file.
    I only move it from its original place using this code:

    #header .widget {
    	position: absolute!important;
    	left: 89%!important;
    	top: 14%!important;
    }

    but this is absolutely not a solution. The icon is never at the same place. It depends on screen size.

    What I need is adding an icon which really belongs to my menu, next to my cart.

    In this thread https://kriesi.at/support/topic/my-account-icon/ I found this code which seems to add an icon before main menu:

    // add account icon
    add_action('ava_after_main_menu', function() {
    	echo '<a class="mobile-account" href="#"><span class="av_font_icon avia_animate_when_visible av-icon-style-  av-no-color avia-icon-pos-left  avia_start_animation avia_start_delayed_animation" style=""><span class="av-icon-char" style="font-size:40px;line-height:40px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span></span></a>';	
    });

    or this code which seems to add an icon after secondary menu:

    // add account icon
    add_action('avia_meta_header', function() {
    	echo '<a class="mobile-account" href="#"><span class="av_font_icon avia_animate_when_visible av-icon-style-  av-no-color avia-icon-pos-left  avia_start_animation avia_start_delayed_animation" style=""><span class="av-icon-char" style="font-size:40px;line-height:40px;" aria-hidden="true" data-av_icon="" data-av_iconfont="entypo-fontello"></span></span></a>';	
    });

    but which function could add an icon before cart icon in the logo area?

    I also found this code in this thread https://kriesi.at/support/topic/extra-icon-next-to-shopping-cart-icon/:

    add_action( 'init', 'avia_woocommerce_cart_placement', 10);
    function avia_woocommerce_cart_placement()
    {
    	$position 	= avia_get_option('header_position',  'header_top') == "header_top" ? "ava_main_header" : "ava_inside_main_menu";
    	if(avia_get_option('cart_icon') == "always_display_menu")
    	{
    		$position = "ava_inside_main_menu";
    		if( strpos( avia_get_option('header_layout'), 'bottom_nav_header') !== false && avia_get_option('header_position') == 'header_top')
    		{
    			$position = "ava_before_bottom_main_menu";
    		}
    	}
    
    	add_action( $position, 'avia_woocommerce_cart_dropdown', 10);
    	add_action( $position, 'avia_woocommerce_quote_dropdown', 10);
    }
    
    function avia_woocommerce_quote_dropdown()
    {
    	global $woocommerce, $avia_config;
    	$output = "Something here";
    	echo $output;
    }

    It seems to add element in the logo area, but it also deals with quote dropdown and so on, and I don’t need all this stuff…

    Which function is the good one to simply add an icon to the shopping cart area?

    Thanks ;-)

    in reply to: Sticky full width menu with columns #1231806

    Hi Guenni,

    Thanks for your feedback and sorry for this confusion.

    If you have any idea, here are the two screenshots:

    Screenshot 1: https://imgur.com/e5BJ13A
    This is how the main menu is displayed with the menu I built and this is exactly what I need for me full width menu.

    Screenshot 2: https://imgur.com/wEegJYb
    This is how the fullwidth sub menu looks like with exactly the same menu building.

    So what I would need to know is how could I make my fullwidth submenu looks exactly like if it was a main menu?

    Best regards.

    in reply to: Shopping cart page – Delivery methods icons #1231804

    Hi Yigit,

    I changed the end of your code with
    top: -3px;
    and it works like a charm. Thanks you very much!

    About errors in my style.css file, could you tell me which ones they were? :-(
    Because it maybe solved some issues I had on my website…

    Also about this, in the last hours, I noticed some changes in this file:
    Indeed I’m used to add some /*CSS titles*/ to identify pieces of code, but I’m also used to write them in French… And all “à”, “é”, “ô” (and so on) had been replaced by special characters.
    Is it possible it happened when you corrected my file?

    in reply to: Unstick topbar on mobile #1231791

    Hi Mike,

    Thank you so much for your work!
    I don’t understand what you mean when you say “your child theme stylesheet needs to include the top header of the file”? :-S

    I made a new video of the menu behavior in private content.
    1) So on desktop nothing changed.

    2) Then on mobile, it seems to be ok. There is only a little jump of the header when it begins to disappear…
    But I have a problem on mobiles, because I’m waiting an answer on another thread which will change the menu appearance: https://kriesi.at/support/topic/add-icon-next-to-shopping-cart-icon/.
    Indeed, I want to hide my secondary menu on mobiles (but keep the phone number area) and add a “My account” icon just next to my shopping cart. So I will have to adjust your function after that, but maybe I could do it by myself…

    3) As you can see, it doesn’t work well on tablets. It cuts my menu in the middle and also makes a jump.

    4) And when I come back to the desktop, it doesn’t work anymore. My main menu is not even sticky anymore…

    in reply to: Search – number of displayed results #1231721

    Hi Ismael,

    I’m not a developer, so I must confess you start talking chinese to me there :-D
    I didn’t configure the Apache server because I don’t even know what an Apache server is.
    The site is not online yet, so if you need to disable some plugins, you can do it. I only hope all plugins settings will be kept…

    I worry a lot about all this, because we wanted to put our site online this week, and there are more and more problems those days :-(
    Today, we found error messages in Products section of the back office (see screenshot in private content).
    I found a post about this on your support: https://kriesi.at/support/topic/enfold-and-woocommerce-erors/.
    I don’t really want to disable the DEBUG mode, because the issue will not really be solved. So I tried to clean my database a little bit, but errors are still displayed. I don’t know how to find this “butterbean” mentioned in this thread…

    in reply to: Sticky full width menu with columns #1231556

    Hi Guenni,
    Thanks for your reply.
    I think I didn’t explain the issue well.
    In fact, I mean the full width menu behavior is not the same than main menu behavior…
    If you could have a look to Screenshot 1 in private content, this is how the main menu is displayed with the menu I built and this is exactly what I need for me full width menu.
    But if you look at Screenshot 2, this is how the full width menu looks like with exactly the same menu building.
    So my question is: how could I make my fullwidth submenu looks exactly like if it was a main menu?
    Thanks a lot!

    in reply to: Search – number of displayed results #1231553

    Hi Ismael,
    For information, I tried to completely delete functions.php and style.css from my child theme, but it still doesn’t work…

    in reply to: Unstick topbar on mobile #1231552

    Hi Mike,
    I understand.
    So if you have any idea to fix those strange behaviors, it would be great! ;-)

    in reply to: Unstick topbar on mobile #1231495

    Hi Mike,
    Thanks for your reply.
    I checked my browser and the result is not exactly what I wanted :-(
    The behavior is very strange on tablets. My main menu goes down or moves alone…
    On mobiles, this is not very beautiful. When scrolling a few pixels down only, menu goes up, so there is white space between my main menu and my slider.
    I added a video in private content.
    In fact when I opened this thread, I thought there would be an easy way to do this. Indeed, this behavior is included in your theme and works perfectly on desktop. Isn’t there an easy way to apply the same code and get EXACTLY the same result and behavior on tablets and mobiles, using your theme content?

    in reply to: Shopping cart page – Delivery methods icons #1231480

    Hi Yigit,
    I found the solution of the displaying issue.
    The only thing I would need is moving icons a little bit to the top, to align them with the text.
    Could you please help me?
    Thanks a lot! ;-)

    in reply to: Search – number of displayed results #1231307
    This reply has been marked as private.
    in reply to: Add icon next to shopping cart icon #1231068

    Hi Nikko,
    Thanks for your reply.
    I followed your link to add a widget area to my header.
    Then I added a widget with some HTML code to display an icon in the zone.
    The icon is correctly displayed, but to the left and top of my header (see screenshot in private content).
    How could I display this widget zone next to my shopping cart icon?
    Thanks a lot! :-)

    in reply to: Header Behaviour on mobile #1231043

    Hi Victoria,
    Everything is ok for me now.
    The topic can be closed.
    Thanks a lot! ;-)

    in reply to: Burger menu on the left on mobiles and tablets #1231036

    Hi Yigit,
    Thanks for your reply.
    It seems to work now.
    Could you help me for my second question :
    How could I switch burger menu icon and search icon? (see screenshot in private content)
    Thanks a lot! :-)

    in reply to: Shopping cart page – Delivery methods icons #1231034

    Hi Yigit,
    Thanks for your reply.
    No, I didn’t change my mind :-)
    In fact, this is a mystery… The code is in the style.css file (line 690) in my enfold-child folder and icons are displayed on my computer, as you can see on the previous screenshot. But they are not displayed on my phone or on another computer (and so not on yours too) and I really don’t understand why…

    in reply to: Secondary menu only one line on tablets #1230986

    Hi Yigit,
    It works correctly!
    Thanks a lot for your help!! :-)

    in reply to: Burger menu on the left on mobiles and tablets #1230923

    Hi Rikard,
    Thanks for your reply.
    This code moves my shopping cart a little bit to the right and it seems to be clickable now.
    But the logo area is still too big and not only on the logo.
    I mean, on the left of the logo it’s ok, but on its right, it could be clicked very far from the logo.
    To be clear, I made a short video in private content to explain.
    What do I need to do to adapt and reduce “logo clickable zone” only on the logo?
    Thanks a lot!

    in reply to: Unstick topbar on mobile #1230912

    Hi Mike,
    Thanks for your reply and your work.
    It seems to work, but the secondary menu behavior is not exactly the same on mobile and tablet than on desktop.
    On desktop, the secondary menu is scrolled up (it slides to the top) and then disappears.
    But on mobile and tablet, it only disappear.
    I’m not sure to be clear at all :-D
    So I made a short video in private content to explain.
    How could I fix this?
    Thanks a lot!

    in reply to: Search – number of displayed results #1230773

    Hi Ismael,
    I understand this and I do not want to use both WooCommerce and the theme’s default search.
    Now my custom searchform.php file is not anymore in my enfold-child folder, so I think searchform.php from the theme’s folder must be the reference now and search must work correctly, but it doesn’t.
    Furthermore, with adding my custom searchform.php file, search used to work perfectly before. I don’t know why it doesn’t work anymore now…

    in reply to: Search – number of displayed results #1230475

    Hi Ismael,
    Thanks for your reply.
    No, I didn’t modify the functions-enfold.php file.
    As I told you before, I only added a searchform.php file in my enfold-child folder, to transform the classic search to WooCommerce search.
    But for now I deleted it to try to find the reason of the display issue. I will put it back in the folder when the issue will be solved.
    Please find FTP details in private content.
    Best regards.

    in reply to: Unstick topbar on mobile #1230279

    Hi Mike,
    Thanks for your reply.
    Maybe you could help me with something else:
    I enabled the third option in Enfold theme options > Header > Header Behaviour to make secondary menu disappear when scrolling down.
    It works on desktop, but not on tablet and mobile.
    What do I need to do to achieve this?
    Thanks a lot!

    in reply to: Burger menu on the left on mobiles and tablets #1230276

    Hi Rikard,
    Thanks for your reply.
    This code works a bit, but the cart area is now too big and can be clicked even if mouse is not on cart…
    In fact, the issue comes from this code I added to place logo in the middle of the screen:

    @media only screen and (max-width: 767px){
    .responsive #top .logo {width: 100%!important;}
    .responsive .logo img {margin: 0 auto!important;}
    }

    and with this code, the logo area is 100% screen sized.
    Is there another way to center the logo, but not increase the hover area??

    in reply to: Unstick topbar on mobile #1229959

    Hi Mike,
    Thanks for your reply!
    Header height seems to be always the same on mobiles (142px) and tablets (122px).
    So I modified your code to this one and it seems to work well on all screen sizes:

    @media only screen and (max-width: 767px) {
    .responsive #top #main {
        padding-top: 142px!important;
    }
    }
    @media only screen and (min-width: 768px) and (max-width: 989px) {
    .responsive #top #main {
        padding-top: 122px!important;
    }
    }

    Do you see any restriction to this code? Could it be ok?

    in reply to: Secondary menu only one line on tablets #1229927

    Hi Rikard,
    Thanks for your reply.
    Sure! So on Screenshot 1 my menu on portrait tablets and what I need to move.
    There is enough space to display phone number area and secondary menu on the same line, like on Screenshot 2 (menu on desktop). So this is what I would like to achieve.

Viewing 30 posts - 61 through 90 (of 375 total)