gradgraph
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] remove coupons on checkout page (WC 2.0)This section and others are being generated from the woocommerce-hooks.php file in the plugin directory. Another way to remove this functionality from the checkout page would be to de-register the action hook being used to generate the content.
You would simply need to place the following code at the top of the form-checkout.php page (just under global $woocommerce to remove the coupon form call:
remove_action( 'woocommerce_before_checkout_form', 'woocommerce_checkout_login_form', 10 );That should do the trick!
Forum: Plugins
In reply to: Woocommerce Price filter slider not showingYou are missing the CSS code for the slider that will style it.
If you have “Enable WooCommerce CSS” checked in the General WooCommerce settings page, it should show up.
If you are doing custom CSS styling, you need to style the slider elements.
Here is a slightly modified version of the WooCommerce default price filter CSS:
/* =Price Filter Widget -------------------------------------------------------------- */ .widget_price_filter .price_slider { margin-bottom: 1em; } .widget_price_filter .price_slider_amount { text-align: right; line-height: 2.4em; font-size: 0.8751em; } .widget_price_filter .price_slider_amount .button { font-size: 1.15em; } .widget_price_filter .price_slider_amount .button { float: left; } .widget_price_filter .ui-slider { position: relative; text-align: left; } .widget_price_filter .ui-slider .ui-slider-handle { position: absolute; z-index: 2; width: 0.9em; height: 0.9em; -webkit-border-radius: 1em; -moz-border-radius: 1em; border-radius: 1em; border: 1px solid #141741; cursor: pointer; background: #2d338e; outline: none; top: -0.2em; } .widget_price_filter .ui-slider .ui-slider-handle:last-child { margin-left: -0.5em; } .widget_price_filter .ui-slider .ui-slider-range { position: absolute; z-index: 1; font-size: .7em; display: block; border: 0; background: #c0132c; -webkit-border-radius: 1em; -moz-border-radius: 1em; border-radius: 1em; } .widget_price_filter .price_slider_wrapper .ui-widget-content { -webkit-border-radius: 1em; -moz-border-radius: 1em; border-radius: 1em; background: #d5d5d5; } .widget_price_filter .ui-slider-horizontal { height: .5em; } .widget_price_filter .ui-slider-horizontal .ui-slider-range { top: 0; height: 100%; } .widget_price_filter .ui-slider-horizontal .ui-slider-range-min { left: -1px; } .widget_price_filter .ui-slider-horizontal .ui-slider-range-max { right: -1px; }That should get you started!
Forum: Plugins
In reply to: [Contact Form 7] [Contact Send Mail] ProblemAre you using WordPress Multisite?
That most likely has to do with conflicts with scripts or other plugins…I would recommend opening up Firebug or something simlar and tracking down which scripts may be interfering or causing errors that are preventing portions of the AAM to work correctly.
You may want to try deactivating all other plugins to see if that removes the conflict and if it doesn’t, try switching your theme back to twentyten, twentyeleven, or twentytwelve to see if it is possible that your theme is causing the error.
Hope that helps!
You might be having conflicts with other plugins or scripts running on your theme. Open up an in-browswer inspector (Firebug, Chrome’s Inspector, or IE’s Development Tools) and take a look at the code on the white page that you are getting and see if you have any javascript errors or if any of the div’s are being hidden in the stylesheets for the plugin that are preventing the Access Manager from being displayed.
I have found a workaround that will at least allow you to use the plugin again with WP 3.5. If you are receiving a white page when trying to access the Access Manager, try the following:
Open up Plugins > advanced-access-manager > view > css > wpacess_style.css and remove the display:none; from #aam_wrap.
That did the trick for me and I was off and running again.
Hope this helps
Forum: Fixing WordPress
In reply to: [WP-PageNavi] WP-PageNavi and Custom post TypesHey paulmitchellkelly!
All you need to do is go to your permalinks page, change the structure back to the default, save, change it back to what you want it to be, save again and everything should work just fine!
Worked for me using the method above.
Good luck!