Forum Replies Created

Viewing 15 posts - 1 through 15 (of 26 total)
  • Author
    Posts
  • in reply to: class-smtp.php error received #18021
    tampalab
    Participant

    Hello Ally,

    I just contacted the host company and they increased the stram_set_timeout limit. Form is woring now but it is not redicting to page. I am using following code in my function.php .

    If different value is choosen, link goes to different url.

    function mytheme_conditional_form_redirect($url, $form)
    {
    //buradan tablo tipi seçildiğinde gelen değer (value) alınıyor. “tabloTipi” idsini sende olan ile değiştirirsin

    $tabloTipi = $form->getValue(‘iphorm_6_22’);

    //Tek Resim Kanvas Tablo seçildiyse
    if($tabloTipi == ‘Tek Resim’)
    {
    //Burada Tek Resim Kanvas Tablo seçildiğinde gelen tablo boyutlarının olduğu elemanın idsi olacak (iphorm_3_1)
    $tabloBoyutu = $form->getValue(‘iphorm_6_407′);
    if($tabloBoyutu ==’40×60 cm – (59 TL)’)
    {
    $url = ‘http://www.kanvashikayeleri.com/magaza/biz-tasarlayalim/tek-resim-kanvas-tablo-40×60-cm/checkout/?add-to-cart=6914′;
    }
    elseif($tabloBoyutu ==’50×50 cm – (59 TL)’)
    {
    $url = ‘http://www.kanvashikayeleri.com/magaza/biz-tasarlayalim/tek-resim-kanvas-tablo-50×50-cm/checkout/?add-to-cart=6917′;
    }
    elseif($tabloBoyutu ==’60×60 cm – (75 TL)’)
    {
    $url = ‘http://www.kanvashikayeleri.com/magaza/biz-tasarlayalim/tek-resim-kanvas-tablo-60×60-cm/checkout/?add-to-cart=6918′;
    }
    elseif($tabloBoyutu ==’50×80 cm – (79 TL)’)
    {
    $url = ‘http://www.kanvashikayeleri.com/magaza/biz-tasarlayalim/tek-resim-kanvas-tablo-50×80-cm/checkout/?add-to-cart=6919’;
    }

    in reply to: class-smtp.php error received #18020
    tampalab
    Participant

    Hello Ally,

    Host company refused to enable the “stram_set_timeout”, so as you mentioned I chose PHP mail() but form is not working. I am getting success message but I don’t see any entry from backend.
    Actually I don’t need to receive emails for this form because customer is redirecting to checkout page and I check the form from backend after purchase completed.

    Waiting for your help. Thank you

    in reply to: Error occured during submitting form #9257
    tampalab
    Participant

    Hi Ally,

    Yes, my customer still complaining about form. They are saying that when they hit submit button, error message is showed up and all entries are lost. So they are getting angry and I am losing my customers :((

    Is there another way to find the reason of this error message?

    in reply to: Error occured during submitting form #8940
    tampalab
    Participant

    Hi Ally,

    I have checked everything as you mentioned in related guide but my customers still having trouble to submit form.
    I have created debug.log file but I don’t understand what problem is. Could you please check it? How can I send it to you?

    When my customers complain about submitting problems, I was suggesting them to use chrome and many of them achieved by using chrome but now I got complain from customers who are having problems even if they use chrome.

    Thank you

    tampalab
    Participant

    Thank you. It is just redicting to 2 different pages but I need to set options to 20 different pages. Sorry for confusing?

    in reply to: Using Filter to only accept digits #8500
    tampalab
    Participant

    Hi, I used “Adding a masked input field” feature and problem solved :))

    Thank you

    in reply to: Active Radio Button Styling #8434
    tampalab
    Participant

    Hi Allan,

    Unfortunatelly, it is not working either. You realized exactly what I am trying to do. I want to change image background color and dimension when it is checked. Sorry for confusing you 🙁

    in reply to: Active Radio Button Styling #8400
    tampalab
    Participant

    Hi Allan,

    I am using code below to add images to multiple choice element. I simply modified hover section in this code by adding this:

    .iphorm-inner .iphorm_3_22-input-li label:hover,
    .iphorm-inner .iphorm_3_22-input-li label:active { ... }

    Now hover is working but active is not working 🙁


    /*Add styles for all option labels*/
    .iphorm-inner .iphorm_5_1-input-li label {
    position: relative;
    padding: 64px 10px 10px 10px;
    min-width: 77px;
    border: 1px solid #000;
    text-align: center;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    }
    /*Add styles hovering all labels*/
    .iphorm-inner .iphorm_5_1-input-li label:hover {
    border: 1px solid #E3CE1C;
    background-color: #111;
    }
    /*Optional - Have the CheckBox or Multiple Choice box positioned top right. */
    .iphorm-inner .iphorm_5_1-input-li div.radio, .iphorm-inner .iphorm_5_1-input-li div.checker, .iphorm-inner .iphorm_5_1-input-li input {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    }
    /*Optional - Extra space between Options */
    .iphorm-inner .iphorm_5_1-input-li {
    padding-right: 15px;
    }
    /*SEQUENCE*/
    /*First option label - add Background image here*/
    .iphorm-inner label.iphorm_5_1_1_label {
    background: #222 url(https://www.quform.com/wp-content/themes/quform/images/facebook-logo.png) no-repeat center 5px;
    }
    /*Second option label - add Background image here*/
    .iphorm-inner label.iphorm_5_1_2_label {
    background: #222 url(https://www.quform.com/wp-content/themes/quform/images/twitter-logo.png) no-repeat center 5px;
    }
    /*Third option label - add Background image here*/
    .iphorm-inner label.iphorm_5_1_3_label {
    background: #222 url(https://www.quform.com/wp-content/themes/quform/images/envato-logo.png) no-repeat center 5px;
    }

    in reply to: Mozilla Firefox browser Photo Upload Problem #7675
    tampalab
    Participant

    Ok Ally, Thank you very much

    in reply to: Photo Upload Required is not working for some conditions #7673
    tampalab
    Participant

    Hi Ally,

    Thank you. After disabled flash uploader, problem is solved 🙂

    in reply to: Mozilla Firefox browser Photo Upload Problem #7672
    tampalab
    Participant

    Hi Ally,

    As you mentioned, after I disabled flash uploader, problem is solved. But “Choose File” and “No file is chosen” messages are in turkish even if I translated them. I am not using Uniform style. Is there a way to translate them?

    Tolga

    in reply to: Default values mess up the required fields? #7656
    tampalab
    Participant

    Hi Ally,

    How can be “place holder” aligned vertically in single line text element? I placed placeholder as you mentioned as above but it is aligned top now. I want it to be aligned middle vertically

    in reply to: Dropdown menu options appear at out of box #7555
    tampalab
    Participant

    Hi Ally,

    I have followed to instructions and tried some different methods but couldn’t achieve it 🙁

    I just want to add simply popup image link to form. How can I do it.

    Thank you

    in reply to: Simple Math Jquery Script #7526
    tampalab
    Participant

    Thank you very much Ally

    in reply to: Simple Math Jquery Script #7517
    tampalab
    Participant

    Hi Ally,

    Is it possible to show this message in “html element” so I can move where I want.

    Thank you

Viewing 15 posts - 1 through 15 (of 26 total)
Be inspired. © 2024 ThemeCatcher Ltd. 20-22 Wenlock Road, London, England, N1 7GU | Company No. 08120384 | Built with React | Privacy Policy