kls
Forum Replies Created
-
Having the same issue. Two active forms on my site with the same info in To field (default) and one works, the other displays this error message when users try to submit. Changed the problem form to my real email address and still get the message. Help please!
- This reply was modified 7 years, 10 months ago by kls.
Same issue. Following.
- This reply was modified 7 years, 11 months ago by kls.
Forum: Plugins
In reply to: [WooCommerce] Reset Password Loopm1k3k, I could kiss you right now. Good grief- I spent hours plugging and unplugging every single plugin on my complicated, very live commerce site. Plus you must test this live in the wee hours because you can’t try to recover a password with a coming soon curtain up, and, since WPEngine does not do the caching on their staging platform, it wasn’t even happening there. What a cluster! I really love WPEngine, but I feel they should have been on top of this one. Thank you so much for posting this!!!!
Forum: Plugins
In reply to: [WooCommerce - Gift Cards] Throwing Error MessageA little more info…
I am debugging the site and here is my entire debug log, all relating to your plugin (which is working awesomely but I don’t want anything that could open the site up to vulnerability when I hand it off to my client). Can you direct me as to how to fix this?
[13-May-2016 17:02:22 UTC] PHP Warning: Missing argument 2 for rpgc_add_card_data() in /nas/content/live/mysitename/wp-content/plugins/gift-cards-for-woocommerce/includes/giftcard-product.php on line 188
[13-May-2016 17:02:22 UTC] PHP Warning: Missing argument 3 for rpgc_add_card_data() in /nas/content/live/mysitename/wp-content/plugins/gift-cards-for-woocommerce/includes/giftcard-product.php on line 188
[13-May-2016 17:02:22 UTC] PHP Notice: Undefined variable: product_id in /nas/content/live/mysitename/wp-content/plugins/gift-cards-for-woocommerce/includes/giftcard-product.php on line 191
[13-May-2016 17:02:26 UTC] PHP Warning: Missing argument 2 for rpgc_add_card_data() in /nas/content/live/mysitename/wp-content/plugins/gift-cards-for-woocommerce/includes/giftcard-product.php on line 188
[13-May-2016 17:02:26 UTC] PHP Warning: Missing argument 3 for rpgc_add_card_data() in /nas/content/live/mysitename/wp-content/plugins/gift-cards-for-woocommerce/includes/giftcard-product.php on line 188
[13-May-2016 17:02:26 UTC] PHP Notice: Undefined variable: product_id in /nas/content/live/mysitename/wp-content/plugins/gift-cards-for-woocommerce/includes/giftcard-product.php on line 191
[13-May-2016 17:02:33 UTC] PHP Warning: Missing argument 2 for rpgc_add_card_data() in /nas/content/live/mysitename/wp-content/plugins/gift-cards-for-woocommerce/includes/giftcard-product.php on line 188
[13-May-2016 17:02:33 UTC] PHP Warning: Missing argument 3 for rpgc_add_card_data() in /nas/content/live/mysitename/wp-content/plugins/gift-cards-for-woocommerce/includes/giftcard-product.php on line 188
[13-May-2016 17:02:33 UTC] PHP Notice: Undefined variable: product_id in /nas/content/live/mysitename/wp-content/plugins/gift-cards-for-woocommerce/includes/giftcard-product.php on line 191Forum: Plugins
In reply to: WooCommerce Subscriptions Plugin Very SlowFollowing – having the same issue with Woocommerce Memberships. Drastically slowing down page load.
I think I figured it out. Went to woocommerce/includes/class-wc-cart.php and changed:
` public function needs_payment() {
return apply_filters( ‘woocommerce_cart_needs_payment’, $this->total > 0, $this );
}`
to
`public function needs_payment() {
return apply_filters( ‘woocommerce_cart_needs_payment’, $this->total >= 0, $this );
}`Saved the edited file in the Woocommerce folder of my child theme but I’d prefer to do this with some code in the child theme functions file if anyone knows how.
Resolved!
Oh good grief, of course.
For anyone else having this problem who is not familiar with CSS, this means I should have used THIS code:
#ninja_forms_field_13_label {background-color:blue;}
The hash tag is used for id elements, not the period.
Snow on the first day of Spring scrambling my brain. Thanks!Forum: Themes and Templates
In reply to: [Twenty Eleven] Mobile Screen Issue – 50% width on one pageThanks – it looks like I might need to have started with one of the Agent Evolution themes vs. Twenty-Eleven to use this but maybe next time ?? Anyway, using Twenty-Eleven was a good education, as this was my first WP website.
Again, thank you very much for your help – this was a big problem and you saved me hours of trying to figure it out!
Forum: Themes and Templates
In reply to: [Twenty Eleven] Mobile Screen Issue – 50% width on one pageWeirdly, it is working for me now too – even without “important-ing” it. Maybe it was cache-ing or something. Thank you so much, Jack, you are my hero. Have a great night (or day or whatever it is where you are right now ??
Forum: Themes and Templates
In reply to: [Twenty Eleven] Mobile Screen Issue – 50% width on one pageJack Saat, you are an absolute rock star! I still have some css customizing of the IDX fields to make the pages display better, but this 50% business was my biggest issue and I was tearing my hair out trying to figure out how to fix it – that overflow hidden part would have evaded me for sure. THANK YOU!!!
PS I was not able to target only id-page-0 and so the fix applied to my whole site and I have started tweaking css for rest of site pages, which display a bit differently (nothing tragic) with this fix…I know I can make the site look good this way but I guess while I have your attention, do you know why .page-id-0 #primary {your css;} doesn’t work for me?
Forum: Themes and Templates
In reply to: [Customizr] Breadcrumbs to nowhere?Thanks – this almost gets me there, except I don’t want to deactivate the first link (Home) I want to deactivate the middle link (top nav menu item). Sorry, should have been clearer in my description above. Is there a way to get at that middle guy? It does not seem to have its own css class — can we create one ? I think a class that applied only to breadcrumb #2 would work but I’m not sure what the best way to do that would be.
Forum: Themes and Templates
In reply to: [Customizr] logo and navbar over sliderHi Ryan,
Class style should be:
.home .tc-header
NOT .home .tcheaderI apologize, I made a mistake when I typed in my code above – it was late!
That change should make it work for Safari and Firefox … interestingly, it still won’t work in Google Chrome and I need to dig into that a bit.
I also decided to take out the float right navbar code and the code to move navbar up a bit and use the relevant code from this snippet.
Worked beautifully – I may have added some margin between each menu item too.
And now I am using the following media queries – when the screen shrinks below 979 I don’t want the image under the header stuff anymore, it just stacks like the demo site. Have not tested on all devices but it’s a start.
(This time I will cut and paste!):/*slider responsiveness */ @media (max-width: 1200px) { .carousel-inner { margin-top: -112px; } } @media (max-width: 979px) { .carousel-inner { margin-top:0px; } }
If anyone knows how to make this work in Chrome please post…and I am afraid to check IE!! I considered hooking the slider to the top of the page and then putting the header items in that div but I don’t want them in there when I resize it for small devies so wasn’t sure if that would be more trouble than not (although I suspect it would solve the Chrome issue).
Good one! That worked, thanks!
Since it took me a bit of time to get it just right, here’s my code for the benefit of others:
Add the following to your Child Theme’s functions.php:
//add link in tagline add_filter( 'tc_tagline_display' , 'my_link_in_tagline'); function my_link_in_tagline() { global $wp_current_filter; ?> <?php if ( !in_array( '__navbar' , $wp_current_filter ) ) :?> <div class="container outside"> <h2 class="site-description"> <?php bloginfo( 'description' ); ?> <br> <a href="https://mywebaddress/"class="btn-donate-media btn-large">Donate</a> </h2> </div> <?php else : //when hooked on __navbar ?> <h2 class="span7 inside site-description"> <?php bloginfo( 'description' ); ?> <br> <a href="https://mywebaddress/" class="btn-donate-media btn-large">Donate</a> </h2> <?php endif; ?> <?php }
It’s pretty much the code from the snippet but I added a break before the link so the button would go below the Site description and I added my button class.
Then create a css class for btn-donate-media to style how you want it to look. It will override whatever you wish from btn-large. I used the following to create a nice yellow button with a gradient:
/*style for button when screen reduced*/ .btn-donate-media { background-color: hsl(43, 97%, 45%) !important; background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#fcd46d", endColorstr="#e2a203"); background-image: -khtml-gradient(linear, left top, left bottom, from(#fcd46d), to(#e2a203)); background-image: -moz-linear-gradient(top, #fcd46d, #e2a203); background-image: -ms-linear-gradient(top, #fcd46d, #e2a203); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fcd46d), color-stop(100%, #e2a203)); background-image: -webkit-linear-gradient(top, #fcd46d, #e2a203); background-image: -o-linear-gradient(top, #fcd46d, #e2a203); background-image: linear-gradient(#fcd46d, #e2a203); border-color: #e2a203 #e2a203 hsl(43, 97%, 38.5%); color: #333 !important; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.42); -webkit-font-smoothing: antialiased; position: relative; line-height: 16px; vertical-align: middle; margin-top: 0px; margin-left: 0px; padding-top:5px; padding-bottom:5px; }
Unless your button is super small, you will also need to change the following CSS so the button does not end up on top of the tagline:
h2. site-description { line-height: 35px; }
Finally, if you have this button in your navbar already (because of the way I’m styling my page I do) use this CSS to hide the new button:
.navbar-wrapper .btn-donate-media { display: none; }
Thanks Tomaja!
Forum: Themes and Templates
In reply to: [Customizr] logo and navbar over sliderA clarification: it’s not really the nav bar that is wrapping wrong – it’s just a responsiveness issue stemming from the top margin adjustment. I am now in the painstaking process of manually adjusting it based on the queries set out here:
https://www.themesandco.com/snippet/media-queries-responsiveness/I think this method works for getting the logo and nav on top of the slider, but if there is a simpler or more elegant way to do it, I’m all ears (or eyes, more accurately).
I’d also be interested in the code for the styles of the Unity nav bar if you get there.