HELP FILE

Thank you for your purchasing !
Premium quality by Madeon08

Informations

If you have any questions, feel free to email me via my user page with the contact form Here or by email: julien.brion.08@gmail.com

I would answer you as soon as possible ;-)
7/7 and almost 24/24 !

One more time, a big thanks to you to have purchased MUMM ! :-)

Countdown Set your end date

  • 1. Open the file "noirval.js" findable in assets/js/mumm.js
  • 2. On line 72, you will find:
    /* ================================= */
    /* ::::::::: 2. Countdown :::::::::: */
    /* ================================= */
    
    $('#countdown_dashboard').countDown({
            targetDate: {
                'day':      30,
                'month':    12,
                'year':     2015,
                'hour':     11,
                'min':      13,
                'sec':      0
            },
            omitWeeks: true
    });
  • 3. So just set up the date that you want :)

Backgrounds left & right sections

  • 1. Open the file "style.css" findable in assets/css/style.css
  • The system is based on your pictures splitted in two parts.
  • For example, you have a picture of 1920x1080. You just need to cut it in 2 parts of 960x1080
  • 2. On line 174, you will find:
    #left1 {
        background: url('http://placehold.it/960x1080/2B2D35/F8F8F8&text=left+part+of+your+picture+960x1080')no-repeat top right;
        background-size: cover;
    }
    
    #right1 {
        background: url('http://placehold.it/960x1080/404350/F8F8F8&text=right+part+of+your+picture+960x1080')no-repeat top left;
        background-size: cover;
    }
    
    #left2 {
        background: url('http://placehold.it/960x1080/34495e/F8F8F8&text=left+part+of+your+picture+960x1080')no-repeat top right;
        background-size: cover;
    }
    
    #right2 {
        background: url('http://placehold.it/960x1080/34495e/F8F8F8&text=right+part+of+your+picture+960x1080')no-repeat top left;
        background-size: cover;
    }
    
    #left3 {
        background: url('http://placehold.it/960x1080/7f8c8d/333333&text=left+part+of+your+picture+960x1080')no-repeat top right;
        background-size: cover;
    }
    
    #right3 {
        background: url('http://placehold.it/960x1080/7f8c8d/333333&text=right+part+of+your+picture+960x1080')no-repeat top left;
        background-size: cover;
    }
  • 3. So just change the paths :)

contact form write your email

  • 1- Open contact_me.php findable in assets/php/contact_me.php
  • 2- On the line 9, you will find:
    $to = 'myemail@mail.com';
    
  • 3. So just replace "myemail@mail.com" by your mail

Newsletter Mailchimp / File / Email

With this Coming soon, you have the choice between 3 solutions to know the persons wanting to be alerted when your website will be online, the launching of your event etc...

1. Mailchimp - Newsletter service

  • More than 6 million people use MailChimp to create, send, and track email newsletters. Whether you're self-employed, you manage projects for clients, or you work for a Fortune 500 company, MailChimp has features and integrations that will suit your email marketing needs. More informations
  • For the configuration with Mailchimp, you must just to know your API Key and the ID of your list.
  • API Key
  • 1- Click your profile name to open the Account Panel and choose Account Settings.

    Account settings
  • 2- Click the Extras drop-down menu and choose API keys.

    Api keys
  • 3- Copy an existing API key or click the Create A Key button.

    Create a key
  • 4- Label your key to keep your keys organized.

    Label key



  • List ID
  • 1- Navigate to the Lists page on the left of your dashboard.
  • 2- Click the list's drop down menu and select Settings.

    List settings
  • 3- Scroll down to the bottom of the Settings page to find the unique List ID for the list.

    Unique list id



Final step

  • 1- Open the file "notify-me.php" findable in assets/php/notify-me.php
  • 2- From the line 8 to 14, you will find:
    // Set to "mailchimp" or "file"
    $STORE_MODE = "mailchimp";
    
    // MailChimp API Key findable in your Mailchimp's dashboard
    $API_KEY =  "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX";
    
    // MailChimp List ID  findable in your Mailchimp's dashboard
    $LIST_ID =  "XXXXXXXXXX";
    
  • 3- So to finish the configuration:
    • Check if the $STORE_MODE is well "mailchimp"
    • Replace the "XXXXX" by your API key & the ID of your list
  • Don't forget to check the path of MailChimp.php on line 23:
    require('../php-tools/MailChimp.php');
    
  • On line 67 of notify-me.php, you can edit if you want that the subscribers receive a confirmation of their subscription:
    'send_welcome'      => true,
    Set true for the confirmation, or false to send nothing

2. File - Save the emails in a .txt file

  • Second solution offered by noirval, the save of the subscribers's emails in a txt file at the root of your server
  • TXT File
  • 1- Create a .txt file empty or use the file notify-email-list.txt provided in your download pack.
  • 2- Upload the file on the root of your server
  • 3- Open the file "notify-me.php" findable in assets/php/notify-me.php
  • 4- On the line 8 and 17, you must fill in the fields like as below:
    // Set to "mailchimp" or "file"
    $STORE_MODE = "file";
    
    ...........
    
    // After $_SERVER["DOCUMENT_ROOT"]."
    $STORE_FILE = $_SERVER["DOCUMENT_ROOT"]."/subscription-list.txt";
    
  • 5- Don't forget to:
    Change the $STORE_MODE to "file"
    • Let notify-email-list.txt if you use the provided file or change the path to your file

3. Email - Receive in your mail box

  • Third solution offered by noirval, you can receive directly in your mail box, the subscribers's emails
  • notify-me-2.php
  • 1- Open notify-me-2.php findable in assets/php/notify-me-2.php
  • 2- On the line 7, you will find:
    $email_to = "myemail@mail.com";
    
  • 3. So just replace "myemail@mail.com" by your mail
  • 4. Open your index.html, on line approximatively 244, you must have this:
    <form action="assets/php/notify-me-2.php" id="notifyMe" method="POST">

More informations about:

Bootstrap Mailchimp


I wish you all the best !