-
AuthorPosts
-
March 14, 2015 at 9:42 am #227173
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
March 14, 2015 at 8:54 pm #227400Hi Robert,
Thanks for writing in.
You have this css that hides it.
.x-btn, .button, [type="submit"] { display: none; }
Please remove it 🙂
Cheers!
March 15, 2015 at 5:28 am #227571Thank 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
March 15, 2015 at 11:31 am #227693Hello,
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!
March 15, 2015 at 1:36 pm #227735Hi 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!
March 15, 2015 at 3:24 pm #227783Hello,
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
March 16, 2015 at 1:10 am #227945Hi there,
Please try this :
.single-product.woocommerce button.single_add_to_cart_button.button.alt { display: none; }
Thanks.
March 16, 2015 at 12:57 pm #228465Yes it works!
Thanks!
March 16, 2015 at 5:21 pm #228691Great to hear that!
Cheers!
-
AuthorPosts