Forum Replies Created

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • in reply to: Change Enfold Contact Form FROM mail address #1036822

    Hi Nikko,

    this code looks exactly what I’m looking for. BUT it doesn’t work in my case.
    I have no idea why?

    Best regards,
    Csaba

    in reply to: NaN/NaN/NaN with DatePicker & Google Translate #1032594

    Hello Victoria,

    It’s weird because I can recreate the error every time.

    Ok., now finally I’m solved!

    ​
    //Disable Google translator
    add_action('wp_head', 'notranslate');
    function notranslate(){
    ?>
    <meta name="google" content="notranslate">
    <?php
    };
    

    This disables the translator on every page.

    Thanks,
    Csaba.

    in reply to: NaN/NaN/NaN with DatePicker & Google Translate #1031624

    Hi Basilis,

    sure, here it is:

    View post on imgur.com

    To reproduce:
    Load the site first: https://hungarikumbisztro.hu/it/prenotazioni/
    Translate with Google to your language
    Pick a date from datepicker

    Sadly the user can send the whole form without date after that.
    We have around 20 problematic cases per day.

    Thanks,
    Csaba.

    • This reply was modified 6 years ago by Nagytalp.
    in reply to: Set datepicker input field to read only #1021265

    Hi Mike,

    thank You for the solution!
    Basically I was late with the answer because I’m solved with a small script.

    But without the CSS or jQuery snippet the field is writeable. This looks a small thing but in reality some guest are gaves it’s own birth date. And they cannot realize in the restaurant why don’t have a free table?

    <script>
    jQuery("#avia_5_1").prop("readonly", true);
    </script>

    I like the CSS way so now I learned a new thing from You.

    Thank You for the time & your energy!
    Cheers,
    Csaba.

    • This reply was modified 6 years, 1 month ago by Nagytalp.
    in reply to: Set datepicker input field to read only #1020335

    Hello Rikard,

    Here You can directly write to the Date* field.
    I wanna disable the direct writing -or as I mean set the the field to read-only- and left the calendar as only option to choose the right date.

    Thanks,
    Csaba

    • This reply was modified 6 years, 1 month ago by Nagytalp.
    in reply to: Contact form not sending auto-reply emails #1018216

    Datepicker problem solved. I found the solution on this link: Datepicker, only allow Dates in the Future

    in reply to: Contact form not sending auto-reply emails #1018205

    Hi Ismael,

    I have SMTP already setted up. But form mailing is didn’t works without your code. WP Mail SMTP can send the test mail successfully
    I’m using Zoho mail for company mailing and a VPS so I making every changes.

    Plus I wanna ask You, how to disable the “today” in the forms date picker?

    Thanks,
    Csaba.

    in reply to: Contact form not sending auto-reply emails #1017450

    Hi,

    Ismael’s code works perfectly, I had the same problem.

    Only one annoying thing still a problem in my case:
    Sender in my incoming box is “Me” not the field email address or user email address. So if I pushing the reply button I’m sending reply to my self not for the user.

    Have any idea how to solve that?

    Thnks,
    Csaba.

    in reply to: Burger menu not loads menu items #943498

    Hi,

    I’m narrowed the problem. First of all thank you for the feedback about the admin side menu error. It causes the payment gateway plugin. But it’s independent about the burger menu problem.

    Seems like burger menü doesn’t works because of style.css and I think it’s maybe related to the script which is changing some elements on scroll.

    I found this on the forum and expanded:

    // header transparency logo switch
    function add_custom_script(){
    	?>
    	<script>
    	(function($){
    		var win = $(window);
    		win.on('scroll', function() {
    			if(win.scrollTop() == 0) {
    				$(".av_header_top:not('av_header_transparency') .logo img").css({
    					'display' : 'block',
    					'transition' : 'ease-in 0.9s'
    				});
    
    				$(".av_header_top:not('av_header_transparency') .subtext img, #menu-item-474 , #menu-item-475, #menu-item-476, .responsive #top .cart_dropdown, #menu-item-search").css({
    					'display' : 'none',
    					'transition' : 'cubic-bezier(0.15, 0.47, 0.45, 0.94) 0.9s'
    				});
    			} else {
    				$(".av_header_top:not('av_header_transparency') .logo img").css('display', 'none');
    
    				$(".av_header_top:not('av_header_transparency') .subtext img , #menu-item-474 , #menu-item-475, #menu-item-476, .responsive #top .cart_dropdown, #menu-item-search").css({
    					'display' : 'block',
    					'transition' : 'ease-in 0.9s'
    				});
    			}
    		});
    	})(jQuery);
    	</script>
    	<?php
    	}
    	add_action('wp_footer', 'add_custom_script');

    How can I define the max width where script is runing? I’m tried few solutions what found it on Stack Overflow but nothing works well.
    So I think burger menu problem is related to this code’s CSS part.

    Best regards,
    Csaba

    • This reply was modified 6 years, 7 months ago by Nagytalp.
    in reply to: Burger menu not loads menu items #940474
    This reply has been marked as private.
    in reply to: Create Sample Data from PSD file #928488

    Hello Vinay,

    thank You for your reply! I wanna make this. As best as I know it is possible to convert PSD to XML or Json.

    Best Regards,
    Csaba.

    in reply to: Enfold light box not working on product lists #762427

    Hi Yigit,

    thank You for the answer. seems like my purchase code already registered. Sadly I have only 1 day support left and maybe I registered with another mail address (I don’t remember). I really need the support ASAP. The cart problem solved, but the lightbox doesn’t works on product list home page listed products!

    And I wanna change image image overlay arrow to a magnifier icon in product lists.

    Thank You!

Viewing 12 posts - 1 through 12 (of 12 total)