kullussteve
Forum Replies Created
-
Forum: Plugins
In reply to: [Ivory Search - WordPress Search Plugin] Button in Second rowWorked like a charm, thx!
Forum: Plugins
In reply to: [Ivory Search - WordPress Search Plugin] Button in Second rowHey,
I have the same problem, url: https://sivona.veebilahendus.ee/
On header after click on icon the loupe is on 2nd row and same on footer. How to move it on 1st row?
Thx!
Forum: Plugins
In reply to: [WooCommerce] Logged in info on right corner also for Subscriber and CustomerNow all done.
Forum: Plugins
In reply to: [WooCommerce] How to remove “Billing” from checkout page error messagesfound the solution what works from https://stackoverflow.com/questions/40038028/woocommerce-remove-billing-word-from-the-error-message:
function customize_wc_errors( $error ) {
if ( strpos( $error, ‘Billing ‘ ) !== false ) {
$error = str_replace(“Billing “, “”, $error);
}
return $error;
}
add_filter( ‘woocommerce_add_error’, ‘customize_wc_errors’ );- This reply was modified 4 years, 11 months ago by kullussteve.
Forum: Plugins
In reply to: [WooCommerce] Logged in info on right corner also for Subscriber and Customeror if this is not possible, can also hide “Log out”?
Thx!
Forum: Plugins
In reply to: [WooCommerce] Logged in info on right corner also for Subscriber and CustomerGreat, thnk you! Last question. Is it possible to show different link after visitor logs out, on the moment directs to: https://wp-login.php?loggedout=true&wp_lang=et
but I don′t want to show WP info, can just redirect to homepage?
Thx!
Steve- This reply was modified 4 years, 11 months ago by kullussteve.
Forum: Plugins
In reply to: [WooCommerce] Logged in info on right corner also for Subscriber and CustomerAmazing, it worked like a charm. Not so important, but is it possible to show all options for admin (admin only)?
Do you also offer service if need to make more complex solutions?
Cheers!
SteveForum: Plugins
In reply to: [WooCommerce] Logged in info on right corner also for Subscriber and CustomerExcellent, it worked too, thank you! Almost perfect, but do you know is it also possible to hide on right corner the option “Edit My Profile” and last, but not least, is it also possible to change that then click on name, it would not open the options (profile settings). My goal is to use admin toolbar only to show that you are logged in and option to log out.
Cheers!
SteveForum: Plugins
In reply to: [WooCommerce] Logged in info on right corner also for Subscriber and CustomerHi,
Great it worked, thank you very much! Is it also possible to hide options on left, I only need the user’s name, and links to edit their profile, but on left is also option to go to dashboard. Can hide this option?
Cheers!
SteveForum: Fixing WordPress
In reply to: Logged in option for Subscriber/CustomerHi,
I also use WordPress. I want to use WP basic log in/log out option (on right corner, same style as admin have it), with or without WooCommerce. Is this possible?
P.S This is testsite, will use SSL on main domain.
Forum: Plugins
In reply to: [WooCommerce] WoOCommerce short descriptionYes, thx!
Forum: Plugins
In reply to: [WooCommerce] Product code on cart pageGreat, it worked, thank you!
Forum: Plugins
In reply to: [WooCommerce] Product code on cart pageHi,
sadly no difference, added code to css (below), but still the same: https://sivona.veebilahendus.ee/ostukorv/
add_filter( ‘woocommerce_cart_item_name’, ‘ywp_showing_sku_in_cart_items’, 99, 3 );
function ywp_showing_sku_in_cart_items( $item_name, $cart_item, $cart_item_key ) {
$product = $cart_item[‘data’];$sku = $product->get_sku();
if( empty( $sku ) ) return $item_name;
$item_name .= ‘<br><small class=”product-sku”>’ . __( “SKU: “, “woocommerce”) . $sku . ‘</small>’;
return $item_name;
}Forum: Plugins
In reply to: [WooCommerce] Shipping taxes don′t workShows topic resolved, but still the same problem. Can you check?
Forum: Plugins
In reply to: [WooCommerce] Shipping taxes don′t workHey!
Have added, but still don′t count on shipping. Image: https://prnt.sc/rizgaz