Viewing 9 posts - 1 through 9 (of 9 total)
  • Posted in: Atelier
  • #321147
    torqbolt
    Member
    Post count: 29

    hi,
    1.) just like there is a news letter bar on the bottom
    i need 3 different slots email contact & enquiry.
    inshore i want to convert newsletter bar to an enquiry form.

    2.) apart from that there is a purchase atelier badge on the bottom
    we need to change it to an email id on the right & a phone number on the left.

    please let us know the shortcode and which settings does this belong to.

    #321329
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Hi,

    1) try to place your contact form shortcode in the Newsletter/Subscribe Bar option.

    2) Can you provide a screenshot and url?

    Thanks

    -Rui

    #321374
    torqbolt
    Member
    Post count: 29
    This reply has been marked as private.
    #321381
    torqbolt
    Member
    Post count: 29
    This reply has been marked as private.
    #321386
    Rui Guerreiro – SUPPORT
    Keymaster
    Post count: 25779

    Regarding 1 you need to create one using the contact form 7 plugin or any other form plugin.

    Regarding 2, that isn’t part of the theme functionalities it’s custom code only for the demo site so people can press that buy button.

    What’s the url for the latest screenshot?

    -Rui

    #321392
    torqbolt
    Member
    Post count: 29

    1.)check torqbolt.staging.wpengine.com
    i did it but it’s not clear
    also i am using gravity forms.
    2.) i think that’s not correct
    see its implemented here http://mjpiping.com/
    3.) https://torqbolt.staging.wpengine.com/suppliers/904l-stainless-steel-fasteners/

    #321652
    David Martin – Support
    Moderator
    Post count: 20834

    1) A contact form in the newsletter bar is not supported. Only a newsletter sign form is as per the demo. You could add the form to a footer widget area?


    2)
    Correct, this is not part of the theme as standard, we added it to our demo site only. As the code is available to see in the source people do copy it and use it on their site.

    Please add this to Theme Options => Custom CSS:

    #sf-buy-button {
        position: fixed;
        bottom: 0;
        left: 0;
        width: auto;
        height: auto;
        z-index: 9999;
        background-color: rgba(0,0,0,0.8);
        padding: 30px 30px 20px 20px;
        display: none;
    }
    #sf-buy-button p {
        text-align: center;
        font-weight: bold;
        color: #fff;
        margin-bottom: 10px;
    }
    #sf-buy-button a.sf-button {
        margin: 0;
    }
    #sf-buy-button a.sf-buy-button-close {
        color: #fff;
        font-size: 26px;
        position: absolute;
        top: 10px;
        right: 10px;
    }
    
    @media only screen and (max-width: 767px) {
    #sf-buy-button {
        display: none!important;
    }
    }

    Please add this to Theme Options => Custom JS:

    jQuery(window).load(function() {
        
        jQuery('body').append('<div id="sf-buy-button"><a href="#" class="sf-buy-button-close">×</a><a href="http://swiftideas.com/purchase-atelier" class="sf-button rounded white">PURCHASE ATELIER</a></div>');
        jQuery('#sf-buy-button').fadeIn(400);
        
        jQuery(document).on('click', 'a.sf-buy-button-close', function(e) {
            e.preventDefault();
            jQuery('#sf-buy-button').fadeOut(400);
        })
        
    });

    3) Use this CSS:

    @media only screen and (max-width: 767px) {
    .woocommerce table.shop_attributes th {
        padding: 11px;
    }
    .woocommerce table.shop_attributes td {
        padding: 11px;
    }
    }
    #321663
    torqbolt
    Member
    Post count: 29
    This reply has been marked as private.
    #321900
    David Martin – Support
    Moderator
    Post count: 20834

    1) It’s not possible within the newsletter bar, only within the footer widget area.

    From what you describe it sounds like you may want to consider one of the many popup plugins to display the contact form or work with a developer to help integrate your request.

    Thanks.

Viewing 9 posts - 1 through 9 (of 9 total)

You must be logged in to reply to this topic.