Title: linesofcodese's Replies | WordPress.org

---

# linesofcodese

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

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

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[License Keys for WooCommerce] How to implement a license into product](https://wordpress.org/support/topic/how-to-implement-a-license-into-product/)
 *  Thread Starter [linesofcodese](https://wordpress.org/support/users/linesofcodese/)
 * (@linesofcodese)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/how-to-implement-a-license-into-product/#post-10905863)
 * Seriously? No response or help?
    I will buy the premium version if someone explains
   this to me first.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Sullivan] Mini Cart Filter](https://wordpress.org/support/topic/mini-cart-filter/)
 *  Thread Starter [linesofcodese](https://wordpress.org/support/users/linesofcodese/)
 * (@linesofcodese)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/mini-cart-filter/#post-10892581)
 * I tried this as well, without luck. I would really appreciate an update from 
   you on this. Thanks!
 * remove_action( ‘woocommerce_widget_shopping_cart_buttons’, ‘woocommerce_widget_shopping_cart_button_view_cart’,
   10 );
    remove_action( ‘woocommerce_widget_shopping_cart_buttons’, ‘woocommerce_widget_shopping_cart_proceed_to_checkout’,
   20 ); add_action( ‘woocommerce_widget_shopping_cart_buttons’, ‘my_woocommerce_widget_shopping_cart_proceed_to_checkout’,
   999 );
 * function my_woocommerce_widget_shopping_cart_proceed_to_checkout() {
    echo ‘[‘ . esc_html__( ‘Instant Checkout’, ‘woocommerce’ ) . ‘](https://wordpress.org/support/users/linesofcodese/replies/&apos; . esc_url( wc_get_checkout_url() ) . &apos;?output_format=md)‘;}
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Sullivan] How to add slider to custom page](https://wordpress.org/support/topic/how-to-add-slider-to-custom-page/)
 *  Thread Starter [linesofcodese](https://wordpress.org/support/users/linesofcodese/)
 * (@linesofcodese)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/how-to-add-slider-to-custom-page/#post-10868154)
 * Hi again,
 * I added a new section to the registration without success. Is this the wrong 
   way to add additional support for another page? The page name is Home and Home
   has been set as the frontpage.
 *  // If the home term doesn’t exist, create it
    $home_term = get_term_by( ‘slug’,‘
   home’, $taxonomy );
 *  if ( ! $home_term ) {
 *  wp_insert_term( __( ‘Home’, ‘sullivan-compatibility’ ), $taxonomy, array(
    ‘
   description’ => __( ‘Slides to display on the Home page.’, ‘sullivan-compatibility’),‘
   slug’ => ‘home’, ) );
 *  // If it does exist, but its name doesn’t match the translation, update it
    }
   elseif ( $home_term && $home_term->name != __( ‘Home’, ‘sullivan-compatibility’)){
 *  wp_update_term( $home_term->term_id, $taxonomy, array(
    ‘name’ => __( ‘Home’,‘
   sullivan-compatibility’ ) ) );
 *  }
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Sullivan] Customizer Error](https://wordpress.org/support/topic/customizer-error-3/)
 *  Thread Starter [linesofcodese](https://wordpress.org/support/users/linesofcodese/)
 * (@linesofcodese)
 * [7 years, 7 months ago](https://wordpress.org/support/topic/customizer-error-3/#post-10868146)
 * thanks, it’s fixed now with 1.13
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Koji] Customizer options for search](https://wordpress.org/support/topic/customizer-options-for-search/)
 *  Thread Starter [linesofcodese](https://wordpress.org/support/users/linesofcodese/)
 * (@linesofcodese)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/customizer-options-for-search/#post-10766193)
 * I do! Love it.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Koji] Customizer options for search](https://wordpress.org/support/topic/customizer-options-for-search/)
 *  Thread Starter [linesofcodese](https://wordpress.org/support/users/linesofcodese/)
 * (@linesofcodese)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/customizer-options-for-search/#post-10766177)
 * Hi Anders,
 * I mean options to style the search itself.
    There are three different “headings”.
   I thought it would be nice to be able to customize the content of the search 
   and its result via the customizer.
 * One example would be to make the “black box” smaller, with or with out border
   radius and so forth.
 * Again, just an idea. This theme truly is awesome. Never before has so few CSS
   fixes gone into a theme as with this.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Approve User] Admin Account Locked Out](https://wordpress.org/support/topic/admin-account-locked-out/)
 *  Thread Starter [linesofcodese](https://wordpress.org/support/users/linesofcodese/)
 * (@linesofcodese)
 * [7 years, 8 months ago](https://wordpress.org/support/topic/admin-account-locked-out/#post-10753509)
 * Hi,
 * It is me who should apologize. I added a feature via my functions.php file but
   never actually considered that to affect the way it did. So, I am sorry.

Viewing 7 replies - 1 through 7 (of 7 total)