chayton
Forum Replies Created
-
Forum: Plugins
In reply to: [Comments - wpDiscuz] Bell icon beside submit buttonI figured it was my theme, but the css works perfectly thank you! I also did the lock and the thumbtack and added a width to wpdcom svg.svg-inline–fa to keep them aligned and it’s perfect. Thanks again! 🙂
Thanks, I did try that and it disabled the Pay Later button but also disabled the Venmo button so I just get the PayPal button. I tried it the other way, checking the Venmo option and unchecking the PayPal Credit one and it shows two buttons, PayPal and Buy Later.
And just before I posted this response I tried it again and it WORKED! I don’t know what happened – maybe a glitch from PayPal earlier or something.
Thank you so much for pointing me in the right direction and making me try it again lol. Appreciate the quick response.
Will do, thank you!
Thanks for the info, I was trying to find out how to disable it in PayPal but not finding much help, although I read somewhere that you can disable it by using the disable-funding parameter in the JS. Maybe I misunderstood what I read.
I don’t understand why it’s showing up on a $20 purchase when it’s only supposed to show up on purchases over $30 though.
Forum: Plugins
In reply to: [Classic Editor] P and BR tags for no reasonYou’re right, it’s actually the theme causing it. I’ll have to dig in to their functions and see what’s going on. Thanks for the response though!
Forum: Plugins
In reply to: [Conditional Fields for Contact Form 7] clear_on_hide is there a workaround?Ok I actually added some custom jQuery to make it work correctly so I’m good.
Ali1web I just used
.cc-link {display:none;}ok thank you!
OK perfect! Thanks for the quick response! 🙂
oh thanks, that’s what the problem is – the title of the post is “How to open an account” 🙂
If I click that option to block all urls, then will I still be able to log in?
Forum: Plugins
In reply to: [OnionBuzz] Save button not doing anythingok done, thanks!
Forum: Plugins
In reply to: [WF Magnific Lightbox] Lost descriptions?Thanks for letting me know, I’ll look forward to the update.
Forum: Plugins
In reply to: [SlickQuiz] Disable radio buttons when answers are shown?Actually I figured out a temporary fix and thought I’d post in case anyone else wondered how to do it. I added this line:
$('input').prop('disabled', true);on line 629 in slickQuiz.js so that section reads like this:
$quizArea.fadeOut(300, function() { // If response messaging is set to show upon quiz completion, show it now if (plugin.config.completionResponseMessaging) { $('input').prop('disabled', true); $(_element + ' .button:not(' + _tryAgainBtn + '), ' + _element + ' ' + questionCount).hide(); etc etcWhich may not be the correct way to do this, but at least it works for me.
Forum: Plugins
In reply to: [SlickQuiz] Disable radio buttons when answers are shown?I just noticed that it does disable the radio buttons if you have the “Check my answer” after each question, and that works fine. In my case I was going to display all of the answers at the end, where the radio buttons are still enabled.
Forum: Plugins
In reply to: [WP-Polls] Showing errors onscreen instead of alerts?Thanks for the response!