Contact form & app button

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #21899
    Adzy5
    Member

    Hi there,

    I am using the Appdev theme and I have two issues which I hope you could help me with as below:

    1) I would like to change the “get this app” button in the header to two separate buttons being the standard apple app store and google play store badges / buttons each with their own link to download the app. Please could you advise how I would do this?

    2) I have contact form 7 in the footer of my site implemented through a widget and shortcode. The contact form appears to work fine and I get a success message but it does not actually send the emails?

    Thanks,
    Adam

    #21911
    Veena
    Moderator

    1.
    Pls try inserting the below piece of code into header.php at line no:73 (immediately after the closing of the wrap div) and see if that works .

    
    <div class="app-download-buttons">
            <a href="'. $google_play_url . '"><img src="https://www.livemeshthemes.com/appdev/wp-content/uploads/sites/7/2013/07/btn-googleplay.png" alt="btn-googleplay" width="192" height="63" /></a>
            <a href="'. $itunes_url . '"><img src="https://www.livemeshthemes.com/appdev/wp-content/uploads/sites/7/2013/07/btn-appstore.png" alt="btn-appstore" width="192" height="63" /></a>
            </div>
     </div>
    

    And also have this custom CSS in themeoptions –

    /* Hide the existing get app button */
    #header .button.get-app { display: none; }
    
    .app-download-buttons img { margin: 15px 10px 0 0; max-width: 140px;}
    
    .app-download-buttons { display: inline-block; width: 300px; float: right;}
    
    .play-button img { border: 1px solid #aaa;}
    .itunes-button img { border: 1px solid #252525; border-radius: 4px;}
    
    #header.sticky .app-download-buttons img { margin-top: 5px; margin-bottom: 5px; max-width: 140px; }
    
    /* Mobile layout */
    @media screen and (max-width: 767px) { 
    .app-download-buttons img {
    margin-top:0;
    max-width: 135px;
    margin-right: 5px;
    }
    .app-download-buttons {
    margin: 0 auto;
    width: 280px;
    float: none;
    }}
    
    #21912
    Veena
    Moderator

    2.
    .Can you do a quick check with this plugin and see if emails are being sent –

    https://wordpress.org/plugins/check-email/

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Appdev Theme Support’ is closed to new topics and replies.