Email defaulting to mailchimp

Support Forums Gris – HTML Template Email defaulting to mailchimp

Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #4928
    joe
    Participant

    Hello,

    Two questions:

    1) I changed the email in sendmail.php, yet when I enter an email on the main page, it still says it’s a subscriber email. I just want a simple email with the email, and the default subject. I removed the menu and maps as I don’t need them.

    2) Is there a better way to add more visible play, mute buttons on a youtube at index_video2.html? I tried the showControls: true but the small text is not good and I also tried your suggestion <button onclick="$('#bgndVideo').muteYTPVolume()">mute</button> but it doesn’t do anything. I just need a large stop/play/mute buttons.

    • This topic was modified 7 years, 10 months ago by joe.
    #4930
    CreaboxThemes
    Keymaster

    Hi,

    1. About the first point, I don’t understand good the problem. Can you explain it better? And please, can you sen me your url to check it?

    2. If you want to add buttons to control the video, you have to follow the next steps:

    • In the file video_youtube.js, you have to add the next code after the line jQuery("#bgndVideo").mb_YTPlayer();:
      jQuery("#stop_video").click(function(){
           jQuery("#bgndVideo").pauseYTP();
      });		
      jQuery("#play_video").click(function(){
           jQuery("#bgndVideo").playYTP();
      });
      jQuery("#mute_video").click(function(){
           jQuery("#bgndVideo").muteYTPVolume();
      });
      jQuery("#unmute_video").click(function(){
           jQuery("#bgndVideo").unmuteYTPVolume();
      });
    • Then, add the next code in your main file index.html, after the video is loaded <a id="bgndVideo" ...></a>:
      <!-- ==============================================
      CONTROL VIDEO
      =============================================== -->
      <div id="control_video">
           <button id="stop_video"><span aria-hidden="true" data-icon="&#x60;"></span></button>
           <button id="play_video"><span aria-hidden="true" data-icon="&#x45;"></span></button>
           <button id="mute_video"><span aria-hidden="true" data-icon="&#x78;"></span></button>
           <button id="unmute_video"><span aria-hidden="true" data-icon="&#x7a;"></span></button>
      </div>
    • At the end, add the next code in the css file:
      #control_video{
           position: absolute; 
           z-index: 10;
           bottom: 20px;
           right: 20px;
      }
      
      #control_video button{
           width: 40px;
           height: 40px;
           line-height: 40px;
           background: none;
           border: 1px solid #fff;
           color: #fff;
           border-radius: 50%;
           font-size: 1em;
           text-align: center;
           padding: 0px;
           margin: 0px 5px;
           opacity: 0.5;
           cursor: pointer;
           -webkit-transition: all 0.35s ease-out;
           -moz-transition: all 0.35s ease-out;
           -ms-transition: all 0.35s ease-out;
           -o-transition: all 0.35s ease-out;
           transition: all 0.35s ease-out; 			
      }
      
      #control_video button:hover{
           opacity: 1;
      }
      
      #control_video button#stop_video,
      #control_video button#play_video {
           font-size: 1.5em;
           vertical-align: bottom;
      }

    Regards

    • This reply was modified 7 years, 10 months ago by CreaboxThemes.
    • This reply was modified 7 years, 10 months ago by CreaboxThemes.
    #4935
    joe
    Participant

    Thanks. Your code works well with the controls. Regarding #1, I don’t want a contact form on index_video2, just a simple subscription email entry like the index.html has. Can it work like that?

    #4937
    CreaboxThemes
    Keymaster

    Hi Joe,

    yes, that is possible. Can you send me your url to check your website?

    Regards

    #5078
    CreaboxThemes
    Keymaster
Viewing 5 posts - 1 through 5 (of 5 total)
  • You must be logged in to reply to this topic.