BitBug
Forum Replies Created
-
Oh jeez… its always the obvious thing. The keys were correct for the domain except when my client put them into the plugin, they left off the trailing -##### of the secret key.
Really appreciate you taking the time! Thanks much!
Forum: Plugins
In reply to: [Contact Form 7] Contact Form 7 – file size, failed send w/o error msgI’ve brought up this problem with .docx filetypes causing the never ending spinning arrow a few times on this board. I don’t ever get a response from the plugin author for whatever reason.
Recommend you see if only the .docx filetype is causing this problem on your site, as that is the only thing that causes it on sites I manage.
Forum: Plugins
In reply to: [Contact Form 7] Contact form 7 file upload issueI invite the plugin author to test this problem for himself at:
Contact Form 7 is currently set to NOT accept .docx, but if you do try to send one you get the spinning arrow and no error message, and the page locks up for quite a while.
Any other file format NOT allowed that you try to send will successfully give you the error message that the file format is not allowed.
Additionally, if you set Contact Form 7 to accept .docx file types, the same spinning arrow and lock up of the page occurs where as other allowed file types go through just fine.
I have already removed all plugins and used only the WordPress 2016 theme to isolate this and make sure it is not a result of other plugins or my child-theme. The same issue still occurs.
Happy to help trouble shoot this if you tell me what you need.
Would appreciate some movement on this and my client is happy to donate if that’s what it takes to get this resolved.
Thanks!
Forum: Plugins
In reply to: [Contact Form 7] Contact form 7 file upload issueHaving the exact same issue. Have confirmed everything the previous poster says.
I was able to solve my issue. I have Contact Form 7 on this site for other forms used that do not need Salesforce integration.
In the Salesforce Plugin Settings>Settings>Style Settings I had checked “Use WP CF7 CSS integration?”. This is what caused the hang. As soon as I removed that, it started working in the current version 4.5.3
Hope that helps someone.
WordPress 4.5.3. After pressing submit the spinning wheel just hangs and the form never sends.
Forum: Themes and Templates
In reply to: [Virtue] Two Sets of Buttons for Adding QuantityWow. That is weird. I check for updates all the time. Just did it again and it says I am running the latest version, but further research shows I am obviously not…
Installed the latest version and you are correct, that resolves it. The new version did not update my version 12 on the 32 and 64bit versions, but rather created a third install. Having the same issue on the MBA.
Opera must have changed how they are updating when they moved to Chromium.
Anyhow… I greatly appreciate your insight and identifying the problem.
Thanks!
Forum: Themes and Templates
In reply to: [Virtue] Two Sets of Buttons for Adding QuantityNo problem at all. Hannah had let me know you were out of town.
When I look at your link in Opera both the +/- and the Up/Down Arrows show in both Opera and Firefox. Firefox I already know the fix for and have applied it on my site. Opera is all we have left to resolve. In Opera it is especially bad because the Up/Down Arrows obscure the number of products you are selecting to put in the cart.
I am very computer literate and code, so don’t feel like you have to dumb anything down.
Opera Versions I am seeing this issue in is:
12.17 Build 1863 Win32
12.17 Build 1863 x64I am running Windows 7 Pro 64bit on my desktop. The issue is also present in Opera on my MacBook Air running OS 10.8.5
You can visit http://www.roninstore.com and click on the Toshiba drive on the home page to see it on the site I am working on. If you end up needing access, PM through the site contact form and I’ll send you a username & p/w.
Thank you!
Forum: Themes and Templates
In reply to: [Virtue] Two Sets of Buttons for Adding QuantityThanks Hannah. I’ll look to hear from someone sometime next week. Appreciate you help!
Forum: Themes and Templates
In reply to: [Virtue] Two Sets of Buttons for Adding QuantityI’ve been doing some research and from what I am reading the appearance property is not supported by any major browsers and has been dropped from the CSS3 spec. It is only working for -moz- and -webkit- because they supported it in their browsers and haven’t gotten around to removing it, or they are just going to deprecate. I suspect that will change over time as they more firmly adopt the CSS3 spec. Opera is not supporting it at all, thus our current problem. Don’t know if that helps or hurts with resolving this, but there it is.
I’ve been trying to find a work around, but so far no luck. Maybe you folks will have better luck.
Forum: Themes and Templates
In reply to: [Virtue] Two Sets of Buttons for Adding QuantityNo this does not work.
This is also happening in Opera. Is there a fix for that?
Thank you!
Forum: Plugins
In reply to: [WooCommerce] Large Digital Downloads Fail on Windows@rass sorry I dropped off there. I got slammed with work and lost track of this thread. Do you still need some help?
Forum: Plugins
In reply to: [WooCommerce] Large Digital Downloads Fail on WindowsI’ll see if I can help… More info is need first though.
Where have you put your file when you uploaded it through FTP? (i.e what is the path to the file).
Can you see the file when you try to attached it to the product in WooCommerce or is it not listed?
If you can see it, are you saying you are able to attached it to the product page, but you cannot see it to download when accessing it from the front end through a product purchase? I did have some issues with the product not downloading and/or a link not appearing for downloading after purchase.
Let me know and we’ll go from there.
Forum: Plugins
In reply to: [WP-Members Membership Plugin] Redirect if ALREADY logged inThank you Chad, that led me down the right path.
For those interested, the full solution was to put the following code in the header.php. I put mine right above the HTML5 declaration.
<?php if (is_user_logged_in() && is_front_page() ) { wp_redirect('domain.com/pageToRedirectTo'); exit; } ?>So the If statement checks if the user is logged in AND if they are on the front page of the site (which in this case is the login page for WP Members). If they are, then it redirects them to the page specified with my placeholder code of ‘domain.com/pageToRedirectTo’