linesofcodese
Forum Replies Created
-
Forum: Plugins
In reply to: [License Keys for WooCommerce] How to implement a license into productSeriously? No response or help?
I will buy the premium version if someone explains this to me first.Forum: Themes and Templates
In reply to: [Sullivan] Mini Cart FilterI 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’ ) . ‘‘;
}Forum: Themes and Templates
In reply to: [Sullivan] How to add slider to custom pageHi 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
In reply to: [Sullivan] Customizer Errorthanks, it’s fixed now with 1.13
Forum: Themes and Templates
In reply to: [Koji] Customizer options for searchI do! Love it.
Forum: Themes and Templates
In reply to: [Koji] Customizer options for searchHi 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
In reply to: [WP Approve User] Admin Account Locked OutHi,
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.