herrin
Forum Replies Created
-
Forum: Plugins
In reply to: [Flat Rate Shipping Plugin For WooCommerce] Disable other shipping methodThis is not resolved. I have the same question as it was not answered here.
Forum: Plugins
In reply to: [JCH Optimize] Google AnalyticsImm trying to solve this same problem. I can see the exclude section but at a loss as to what to enter into the field. I can see a list of JS files that come up but none seem to signal ga.js files.
Hey there thanks for your reply
really sorry I got the email wrong – it should have been [email protected] – missed the .au at the end.
I also assumed that a members account would be a support account and probably got the lockout for trying to login unsuccesfully.
Got into the support area now will submit my issue there thanks again for following up.
Forum: Plugins
In reply to: [WordPress Backup to Dropbox] Not visible on Dashboard menuThanks for following up with the temporary fix for this. Just de-activated WP Optimize until a fix comes along.
Thanks for the reply. Appreciate that.
Forum: Fixing WordPress
In reply to: Problem with page templatesIt will ignore the template but creating the page is still necessary and designating it in the Settings >> Reading section just tells WordPress what URL that the index.php or blog page should be found at. Keep in mind that the index page most often also determines the archives, categories and tags pages as well.
Forum: Plugins
In reply to: [WooCommerce] Remove fields on Edit AddressI can’t remember where I found this code (it was late) but putting this in your themes functions.php removes all the checkout fields except the email address. Great for digital sales.
/* Remove Checkout Fields */ add_filter( 'woocommerce_checkout_fields' , 'custom_override_checkout_fields' ); function custom_override_checkout_fields( $fields ) { unset($fields['billing']['billing_first_name']); unset($fields['billing']['billing_last_name']); unset($fields['billing']['billing_company']); unset($fields['billing']['billing_address_1']); unset($fields['billing']['billing_address_2']); unset($fields['billing']['billing_city']); unset($fields['billing']['billing_postcode']); unset($fields['billing']['billing_country']); unset($fields['billing']['billing_state']); unset($fields['billing']['billing_phone']); unset($fields['order']['order_comments']); return $fields; } /* Remove Checkout Fields */
To edit Or remove the words “Billing Address’ you need to edit the form-billing.php files (it’s easy to find) and place it into your theme folder inside folders – woocommerce/checkout/
In this example I’ve commented out the word alltogether.
<h3><?php /* _e('Billing Address', 'woocommerce'); */ ?></h3>
Hope that helps.
Having the same issue (not loading CSS for thumbnails) with the latest release version. Using WP 3.5 and Twenty Twelve theme with no other plugins installed.
Tried the beta 4 release and no love. Even tried a different theme (Twenty Eleven).
WP 3.5
OS Linux
Server Apache
PHP v5.2.17
MYSQL v5.5.23-55Thanks very much Jeremy. Will test that out and give it a spin. Cheers.
I have to add also that when I activate this plugin now it also breaks the site. Rather the CSS fails to load. Here is a list of all other plugins I have running.
Forum: Plugins
In reply to: [Digg Digg] Share button is not alignedhey mate
had this problem too with the manual install. Just found the fix for this:
Add this code top your style sheet:
.FBConnectButton_Small, .FBConnectButton_RTL_Small { margin-top: 2px; vertical-align: top; }
Have a good one!
It’s encouraging the fact that you have a PDF for the lite version. Looking forward to testing this plugin now.
Forum: Plugins
In reply to: [Fotobook] [plugin fotobook] Can’t get albumsI just got this working again by unlinking the account from facebook and starting again from the beginning.
Hope this works for you too!
Forum: Plugins
In reply to: [Plugin: Ozh’ Admin Drop Down Menu] Don’t push upgrades before WP doesI agree totally. This is a quick way to lose current fans of a plugin. It also defeats the purpose of having one-click upgrades!
Forum: Plugins
In reply to: How to Exclude Pages in Popularity Contest?Pretty silly really in that typically your pages are some of the most popular landing places but they are already in the top navigation. There really needs to be an easy way to turn them off. Oh well.