Okay
  Public Ticket #1459925
image slider (owl carousel)
Closed

Comments

  • Patrick Touchard started the conversation

    I cannot figure out how to get the other images to show on the image carousel. The main image works fine but the others do not. For the second image I just created a blank red image, the third is a repeat of the first.

    I am using uniform-E42242-dark.css theme and I've changed the image code here... but it does not show up.

    }
    #owl-main .item:nth-child(1) {

    }
    #owl-main .item:nth-child(2) {

    }
    #owl-main .item:nth-child(3) {

    }



  •  850
    Jelly replied

    Hello,

    You should add item1, item2, item3 to <div class="item">. Like this:

    <div class="item item1">

    Then change CSS to:

    #owl-main .item.item1 { background: url('http://blareinc.com/cablelock/fq.jpg'); }
    #owl-main .item.item2 { background: url('http://blareinc.com/cablelock/cl1.jpg'); }
    #owl-main .item.item3 { background: url('http://blareinc.com/cablelock/fq.jpg'); }

    Best Regards,
    Jelly Team

  • Patrick Touchard replied

    thanks for the reply.

  •  850
    Jelly replied

    Hi,

    Glad it’s working for you now. Do you still need my help in anything else?

    Best Regards,
    Jelly Team

  • Patrick Touchard replied

    All good at the moment. If I run into anything else I'll send another request. just getting  started.

  •  850
    Jelly replied

    Hello,

    I am currently closing the ticket. Please don’t hesitate to submit a ticket whenever you need help. I will be happy to assist you.

    P.S. I would appreciate if you could please rate the Theme and like the assistance under my support, means a lot to me. Thank you.

    You can rate it with your themeforest account at your downloads page, precisely at this link: http://themeforest.net/downloads and hover over the 5 stars for our theme.

    Thank you so much for all your help!!!

    Best Regards,
    Jelly Team

  • Patrick Touchard replied

    I've changed the mail.php file and the contact form still does not go through. Am I missing anything?  Thanks.


    <?php
    if(isset($_POST['email'])){
            $mailTo = "[email protected]";
            $subject = "mail from web";
            $body = "New message from website
            <br><br>
            FROM: ".$_POST['email']."<br>
            NAME: ".$_POST['name']."<br>
            PHONE: ".$_POST['PHONE']."<br>
            COMMENTS: ".$_POST['message']."<br>";    
                    $headers = "To: uniform <".$mailTo.">\r\n";
                    $headers .= "Content-Type: text/html";
                    //envio destinatario
                    $mail_success =  mail($mailTo, utf8_decode($subject), utf8_decode($body), $headers);
    }
    ?> 


  •  850
    Jelly replied

    Hello,

    In some cases email can go to the email box of your Cpanel. Also email PHP function (SMTP) could be blocked by your hosting provider.

    Could you please contact you hosting provider and ask how to configure it properly?

    I've attached our SMTP settings that we are using.


    Best Regards,
    Jelly Team

  • Patrick Touchard replied

    Do i need to have these files uploaded to the server where the website resides?


    I also checked Cpanel and the email was not there.


    thanks.

  •  850
    Jelly replied

    You should contact your hosting provider so they can tell you how to properly configure SMTP on your server.

    Best Regards,
    Jelly Team

  • Patrick Touchard replied

    I uploaded the site to a test URL www.blareinc.com/cablelock and the map section shows. However, when I uploaded the site to the new hosting server (which is the exact same server as where www.blareinc.com resides) the google map section starts to show and then it goes away. www.cablelockfoundation.com 


    Please take a look and let me know what the cause could be. I moved over the exact files twice.


    Thanks.

  •  850
    Jelly replied

    Hello,

    It shows in console:

    Google Maps API error: MissingKeyMapError https://developers.google.com/maps/documentation/javascript/error-messages#missing-key-map-error

    You should add your own Key to

    <script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?key=YOUR_KEY"></script>

    at the bottom of the page.

    Best Regards,
    Jelly Team