Navigation
This is archived content. Visit our new forum.
  • Author
    Posts
  • #227173

    roberttuytel
    Participant

    Hello,

    I do have a small question (again). After designing a contact form with Contact Form 7 the submit button is not showing on the website: http://www.artinational.com.

    The standard code for the submit button is used:
    <p>[submit “Submit”]</p>

    Even though this is the standard code the ‘contact us’ page (under about us in the upper navigation menu) does not show the submit button.

    What could cause this problem?

    Many thanks in advance!

    Robert Tuytel

    #227400

    Rad
    Moderator

    Hi Robert,

    Thanks for writing in.

    You have this css that hides it.

    .x-btn, .button, [type="submit"] {
      display: none;
    }

    Please remove it 🙂

    Cheers!

    #227571

    roberttuytel
    Participant

    Thank you for your response!

    How en where do I have to remove that? Or is the word ‘none’ behind display: to be changed in something else?

    Now I have changed it into ‘block’ and that works. What other options are there?

    Many thanks on advance!

    Robert Tuytel

    #227693

    roberttuytel
    Participant

    Hello,

    I am back again. Now the submit button is back again, which is good!

    However, my chart button (which I do not want) is now back as well.

    How do I keep the submit button but remove the chart button?

    The code I used for getting back the submit button is your code and
    the code I used for getting rid of the chart button is as follows:

    /* Cart remove shop*/
    .woocommerce li.product .entry-header .button, .woocommerce-page li.product .entry-header .button {
    display: none;
    }

    And please see also my question in the previous reaction on this topic.

    Could you help me out?

    Thanks a lot again!

    #227735

    Nico
    Moderator

    Hi There,

    Would you mind sending us some screenshot and the link of you concern so that there could be no more confusions and guaranteed answer. You could also share us your admin credentials so we could test it and would not affect other buttons.

    Once we got the information, will be willing to help you.

    Don’t forget to set it as private reply.

    Thank you for understanding.

    Cheers!

    #227783

    roberttuytel
    Participant

    Hello,

    Thank you regarding your response. I do not know how to add screenshots to this forum but I do think that I am able to explain it as follows:

    Submit button situation:
    With the contact forms I would like to have the submit button displayed (obviously). This works fine like now as is visible on the following url:
    http://artinational.com/about-us/contact-us/

    Cart button situation:
    Since the by your team supplied code regarding the submit button the cart button is back at the product specific pages. This button wat first removed but is now back again. You can see this at the following url:
    http://artinational.com/product/tibetan-shanka-from-naval-battle/

    Cart remove code:
    /* Cart remove specific*/
    .x-btn, .button, [type=”submit”] {
    display: none;
    }

    Submit button return code:
    /*Present submit for CF7*/
    .x-btn, .button, [type=”submit”] {
    display: block;
    }

    Hopefully this helps? I do not know what details you mean by admin credentials. I am sorry for that but it just the first time I am building a website. I like building this page a lot but obviously I do have a knowledge gab.

    Many thanks for your help!

    Robert Tuytel

    #227945

    Christopher
    Moderator

    Hi there,

    Please try this :

    .single-product.woocommerce button.single_add_to_cart_button.button.alt {
      display: none;
    }

    Thanks.

    #228465

    roberttuytel
    Participant

    Yes it works!

    Thanks!

    #228691

    Nico
    Moderator

    Great to hear that!

    Cheers!