RustyBadRobot
Forum Replies Created
-
I am also receiving this error, rolling back to version 3.8.0 resolves the issue for now.
Forum: Plugins
In reply to: [WooCommerce] How to allow subscription payment coupon WITH free trailI need to be able to add a coupon discount after a free trial also, will adding ‘recurring_percent’ to the below if statement break anything?
// prevent subscription coupons from being applied to renewal payments if ( wcs_cart_contains_renewal() && ! in_array( $coupon_type, array( 'recurring_percent', 'renewal_fee', 'renewal_percent', 'renewal_cart' ) ) ) { self::$coupon_error = __( 'Sorry, this coupon is only valid for new subscriptions.', 'woocommerce-subscriptions' ); }
Forum: Plugins
In reply to: [WP-PostRatings] Feature request – Users change their ratingI would love this feature so third this, great plugin!
Forum: Plugins
In reply to: [BuddyPress Follow] Do not send out email notificationFor now I’ve dropped in a new condition to the bp_follow_new_email_notification function
// Is self don't end email if ( $r['follower_id'] === $r['leader_id'] ) return false;
Forum: Plugins
In reply to: [WP-Cycle] Image re-orderGreat Stuff Gyan! This makes a good plugin a much better one!
Forum: Plugins
In reply to: [WP Bootstrap Menu] Active class and dropdowns<div class="navbar"> <div class="navbar-inner"> <div class="container"> <ul class="nav"> <li class="active"> <a href="my-link-with-no-drop-downs">This adds active class when selected</a> </li> <li class="dropdown"> <a class="dropdown-toggle" href="my-link-with-drop-downs">This does not add active class when selected</a> <ul class="dropdown-menu"><li></li></ul> </li> </ul> </div> </div> </div>
Not sure if i’m doing something wrong but if i am I cant see what?
Forum: Plugins
In reply to: [WP Bootstrap Menu] Sub menu are not displayedReaslised that I needed to use Custom Links ??
Still be good if you could include the current_page_item class, anyone know how to do this?
Forum: Plugins
In reply to: [WP Bootstrap Menu] Sub menu are not displayedUseful plug-in! I have the same problem with the dropdowns only appearing if you add in a # as the link. Also the current_page_item class would be useful to be added back in.