Title: 's Replies | WordPress.org

---

# herrin

  [  ](https://wordpress.org/support/users/herrin/)

 *   [Profile](https://wordpress.org/support/users/herrin/)
 *   [Topics Started](https://wordpress.org/support/users/herrin/topics/)
 *   [Replies Created](https://wordpress.org/support/users/herrin/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/herrin/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/herrin/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/herrin/engagements/)
 *   [Favorites](https://wordpress.org/support/users/herrin/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 22 total)

1 [2](https://wordpress.org/support/users/herrin/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/herrin/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Flat Rate Shipping Method for WooCommerce] Disable other shipping method](https://wordpress.org/support/topic/disable-other-shipping-method/)
 *  [herrin](https://wordpress.org/support/users/herrin/)
 * (@herrin)
 * [7 years, 2 months ago](https://wordpress.org/support/topic/disable-other-shipping-method/#post-11374975)
 * This is not resolved. I have the same question as it was not answered here.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[JCH Optimize] Google Analytics](https://wordpress.org/support/topic/google-analytics-123/)
 *  [herrin](https://wordpress.org/support/users/herrin/)
 * (@herrin)
 * [10 years, 4 months ago](https://wordpress.org/support/topic/google-analytics-123/#post-6009168)
 * Imm 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Users Ultra Membership, Users Community and Member Profiles With PayPal Integration Plugin] Keep getting locked out of your support site – WordFence plugin I believe](https://wordpress.org/support/topic/keep-getting-locked-out-of-your-support-site-wordfence-plugin-i-believe/)
 *  Thread Starter [herrin](https://wordpress.org/support/users/herrin/)
 * (@herrin)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/keep-getting-locked-out-of-your-support-site-wordfence-plugin-i-believe/#post-5943666)
 * Hey there thanks for your reply
 * really sorry I got the email wrong – it should have been [treasurer@artsconnectinc.com.au](https://wordpress.org/support/users/herrin/replies/treasurer@artsconnectinc.com.au?output_format=md)–
   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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WordPress Backup to Dropbox] Not visible on Dashboard menu](https://wordpress.org/support/topic/not-visible-on-dashboard-menu/)
 *  [herrin](https://wordpress.org/support/users/herrin/)
 * (@herrin)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/not-visible-on-dashboard-menu/#post-4279433)
 * Thanks for following up with the temporary fix for this. Just de-activated WP
   Optimize until a fix comes along.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Events Manager - Calendar, Bookings, Tickets, and more!] Profile pages for artists or speakers for this plugin?](https://wordpress.org/support/topic/profile-pages-for-artists-or-speakers-for-this-plugin/)
 *  Thread Starter [herrin](https://wordpress.org/support/users/herrin/)
 * (@herrin)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/profile-pages-for-artists-or-speakers-for-this-plugin/#post-3996816)
 * Thanks for the reply. Appreciate that.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Problem with page templates](https://wordpress.org/support/topic/problem-with-page-templates/)
 *  [herrin](https://wordpress.org/support/users/herrin/)
 * (@herrin)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/problem-with-page-templates/#post-3428125)
 * It 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Remove fields on Edit Address](https://wordpress.org/support/topic/woocommerce-remove-fields-on-edit-address/)
 *  [herrin](https://wordpress.org/support/users/herrin/)
 * (@herrin)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/woocommerce-remove-fields-on-edit-address/#post-3087218)
 * I 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.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YARPP - Yet Another Related Posts Plugin] YARPP css is delayed or doesn't load](https://wordpress.org/support/topic/yarpp-css-is-delayed-or-doesnt-load/)
 *  [herrin](https://wordpress.org/support/users/herrin/)
 * (@herrin)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/yarpp-css-is-delayed-or-doesnt-load/#post-3282571)
 * 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-55
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Jetpack - WP Security, Backup, Speed, & Growth] Disable Jetpack comments on specific pages](https://wordpress.org/support/topic/disable-jetpack-comments-on-specific-pages/)
 *  Thread Starter [herrin](https://wordpress.org/support/users/herrin/)
 * (@herrin)
 * [13 years, 5 months ago](https://wordpress.org/support/topic/disable-jetpack-comments-on-specific-pages/#post-3238479)
 * Thanks very much Jeremy. Will test that out and give it a spin. Cheers.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Tweetily - Tweet Your Posts Automatically!] Pluing works great but you have an open tag in your code](https://wordpress.org/support/topic/pluing-works-great-but-you-have-an-open-tag-in-your-code/)
 *  Thread Starter [herrin](https://wordpress.org/support/users/herrin/)
 * (@herrin)
 * [13 years, 7 months ago](https://wordpress.org/support/topic/pluing-works-great-but-you-have-an-open-tag-in-your-code/#post-3174806)
 * 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](http://wptribe.net/wordpress-plugins-wptribe-net/)
   running.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Digg Digg] Share button is not aligned](https://wordpress.org/support/topic/share-button-is-not-aligned/)
 *  [herrin](https://wordpress.org/support/users/herrin/)
 * (@herrin)
 * [14 years, 9 months ago](https://wordpress.org/support/topic/share-button-is-not-aligned/#post-2153328)
 * hey 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!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Cart66 Lite :: WordPress Ecommerce] [Plugin: Cart66 Lite] How do you use Manual Checkout?](https://wordpress.org/support/topic/plugin-cart66-lite-how-do-you-use-manual-checkout/)
 *  [herrin](https://wordpress.org/support/users/herrin/)
 * (@herrin)
 * [15 years, 2 months ago](https://wordpress.org/support/topic/plugin-cart66-lite-how-do-you-use-manual-checkout/#post-1958375)
 * It’s encouraging the fact that you have a PDF for the lite version. Looking forward
   to testing this plugin now.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Fotobook] [plugin fotobook] Can’t get albums](https://wordpress.org/support/topic/plugin-fotobook-cant-get-albums/)
 *  [herrin](https://wordpress.org/support/users/herrin/)
 * (@herrin)
 * [15 years, 7 months ago](https://wordpress.org/support/topic/plugin-fotobook-cant-get-albums/page/2/#post-1574738)
 * I 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Ozh’ Admin Drop Down Menu] Don’t push upgrades before WP does](https://wordpress.org/support/topic/plugin-ozh-admin-drop-down-menu-dont-push-upgrades-before-wp-does/)
 *  [herrin](https://wordpress.org/support/users/herrin/)
 * (@herrin)
 * [16 years ago](https://wordpress.org/support/topic/plugin-ozh-admin-drop-down-menu-dont-push-upgrades-before-wp-does/#post-1538096)
 * I 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](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [How to Exclude Pages in Popularity Contest?](https://wordpress.org/support/topic/popularity-contest-1/)
 *  [herrin](https://wordpress.org/support/users/herrin/)
 * (@herrin)
 * [16 years, 4 months ago](https://wordpress.org/support/topic/popularity-contest-1/#post-1249200)
 * 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.

Viewing 15 replies - 1 through 15 (of 22 total)

1 [2](https://wordpress.org/support/users/herrin/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/herrin/replies/page/2/?output_format=md)