I would like to recommend my new ideas in this topic. 🙂
Other customers can list their ideas in here too.
Some of them could be done maybe by a short code or something else and some of them could be available hopefully in the next update by you guys in the JanStudio. 🙂
This topic could be pinned by you to be reachable much easier for others.
Whenever a product quick shop popup opens in the pages, the title of the product can have the url of the product. So whenever a user wants to access the page of the product, doesn’t have too close the popup and click on the image or link of the product in that page.
In product quick shop popup the badges of the product can be shown too. Badges like : New, Sale, Discount percent or Sold out on the top left of the product image to have the better UX for the user.
Thank you. I appreciate your taking care of your customers. 🙂
Recommendation :
There is a blog slider in the bottom of the page. under the title of a post, there is a phrase like : ” By rahim on Dec 24, 2017 ” , the word ” rahim” here can have a link with the target=https://look.ir/author/rahim. And beside this you can develop your own author box that comes on the top of the all post from rahim. There is a Plugin that I am using for this pursuit. And I can put that author box according to the author’e help in the files of : single.php or author.php to do what I mean and want. But much better if the theme had this option itself. 🙂
For better UX : I recommend to add target=”_blank” for the link of terms and conditions in the ckeckout page. So the user will not miss this page. Or even it could be like a pop up page by a pop up plugin.
Is there any chance to select the product images without any click on them as a customer like Amazon?
You know? when you go to a product page in Amazon, if you want to see other photos of the product
you don’t have to click on them, just hover is fine!
I think this make the site more pretty and better UX!
In the product listing for variable product, it’s better that the selected swatch has a circle on the value for color.
I mean like the time you go to the page of a variable product you see a black circle around the color value.
You can add it in the product listing too for variable products.
If it can be happen via a css we will be happy to share that in here with us 🙂
I recommend you to check by default the check box of ” Notify me of follow-up replies via email ” in this forum.
So maybe some users who don’t have rich experience of the forums, will forgot to check this and they will miss your support.
For SEO, the category description is very important. In calue, this section appears in the top and if we add a lot of content (300+ words) the section expands making the page ugly and not user friendly. Also, long text does not align properly. In the future, can we implement a read more button after 2 lines which when clicked will give a popup which will contain the 300 + content. Users scan scroll down to read and close the pop up. Naturally, we trust Harry’s design skills to make the pop up beautiful 😉
Most importantly, this read more content has to be google friendly for SEO.
The main reason is SEO as customers read only 1 line to a maximum of 2 lines.
Woo Total Sales – This plugin facilitates extended overview of WooCommerce dashboard sales status. Additionally, it displays total sales of specific product on shop-archives and respective single product page (Backend and Frontend).
For those who want to hide the coupon code section on the cart page or checkout page this is a usable function to add to your functions.php of your active theme.
Some of you may like to force the customer to apply the coupon just on the cart page, or some others of you like me would like to have only one section for the coupon code at the end on the checkout page.
So for any need just add these to your functions.php.
Hiding coupon code on the cart page:
// hide coupon field on cart page
function hide_coupon_field_on_cart( $enabled ) {
if ( is_cart() ) {
$enabled = false;
}
return $enabled;
}
add_filter( 'woocommerce_coupons_enabled', 'hide_coupon_field_on_cart' );
And Hiding the coupon code on the checkout page (Not Recommended):
// hide coupon field on checkout page
function hide_coupon_field_on_checkout( $enabled ) {
if ( is_checkout() ) {
$enabled = false;
}
return $enabled;
}
add_filter( 'woocommerce_coupons_enabled', 'hide_coupon_field_on_checkout' );
By adding this to your functions.php of your child-theme (if child-theme is active) you can make the customer to double check his password on two places of account creation. on the my-account page & checkout page.
Hope you enjoy. 🙂
The code is this:
// ----- validate password match on the registration page
function registration_errors_validation($reg_errors, $sanitized_user_login, $user_email) {
global $woocommerce;
extract( $_POST );
if ( strcmp( $password, $password2 ) !== 0 ) {
return new WP_Error( 'registration-error', __( 'Passwords do not match.', 'woocommerce' ) );
}
return $reg_errors;
}
add_filter('woocommerce_registration_errors', 'registration_errors_validation', 10,3);
// ----- add a confirm password fields match on the registration page
function wc_register_form_password_repeat() {
?>
<p class="form-row form-row-wide">
<label for="reg_password2"><?php _e( 'Password Repeat', 'woocommerce' ); ?> <span class="required">*</span></label>
<input type="password" class="input-text" name="password2" id="reg_password2" value="<?php if ( ! empty( $_POST['password2'] ) ) echo esc_attr( $_POST['password2'] ); ?>" />
</p>
<?php
}
add_action( 'woocommerce_register_form', 'wc_register_form_password_repeat' );
// ----- Validate confirm password field match to the checkout page
function lit_woocommerce_confirm_password_validation( $posted ) {
$checkout = WC()->checkout;
if ( ! is_user_logged_in() && ( $checkout->must_create_account || ! empty( $posted['createaccount'] ) ) ) {
if ( strcmp( $posted['account_password'], $posted['account_confirm_password'] ) !== 0 ) {
wc_add_notice( __( 'Passwords do not match.', 'woocommerce' ), 'error' );
}
}
}
add_action( 'woocommerce_after_checkout_validation', 'lit_woocommerce_confirm_password_validation', 10, 2 );
// ----- Add a confirm password field to the checkout page
function lit_woocommerce_confirm_password_checkout( $checkout ) {
if ( get_option( 'woocommerce_registration_generate_password' ) == 'no' ) {
$fields = $checkout->get_checkout_fields();
$fields['account']['account_confirm_password'] = array(
'type' => 'password',
'label' => __( 'Confirm password', 'woocommerce' ),
'required' => true,
'placeholder' => _x( 'Confirm Password', 'placeholder', 'woocommerce' )
);
$checkout->__set( 'checkout_fields', $fields );
}
}
add_action( 'woocommerce_checkout_init', 'lit_woocommerce_confirm_password_checkout', 10, 1 );
For sure you can use your own translation on the code.
Thanks to Harry and the JanStudio team for great support.
Apologies if this has already been suggested. Is it possible to display shop name or seller first and last name on category pages so it’s easy to see which shop or person the product is sold by without clicking into the product page?
I previously used BuddyBoss Social Marketplace which had this feature. I’ve attached a screenshot of the feature. Would love if you could add this too. BuddyBoss support was rubbish and their theme slowed my site down, so I much prefer you and your theme 🙂
For my site it would be more useful to have first and last name, rather than shop name if possible.
Could you check this option with plugin multi vendors author. This feature should implement in plugin not on theme because not all shop use for multi vendors.
Regards
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio
For a future update, can you make the size guide and delivery option linked with product category?
If a shop is selling clothes and watches, then size guide and delivery options will need to be different. Right now we can configure per product but that is not efficient compared to setting it up per category.
Also a small bug:
In claue options, woocommerce–>general settings–>Go to ‘page title background’ –>upload image–>select existing image from library and save. It won’t work.
upload new image, it will work. We have to upload a new image and save.
Hi @ArtK those things are related to WCVendors Pro rather than Claue theme as the theme controls the look and feel, whereas WCVendors is a PlugIn that controls the functionality. You can raise a ticket for the WCVendors developer here: https://www.wcvendors.com/submit-ticket/ 🙂 Good idea by the way
Thank you @consciousscarfties for your input 🙂 Normally themes don’t have this as a feature but our dear Harry gave this tiny option 😉 Indeed this feature is best kept to a separate plugin dedicated to the function.
@ Harry: Thanks a lot for the link. I will try it out 🙂
Always glad to help push claue to the no. 1 spot since devs like you deserve 🙂
Hi @artk those things are related to WCVendors Pro rather than Claue theme as the theme controls the look and feel, whereas WCVendors is a PlugIn that controls the functionality. You can raise a ticket for the WCVendors developer here: https://www.wcvendors.com/submit-ticket/ Good idea by the way
@Karen: Thank you for support us. ArtK telling another suggest to improve our theme.
Thank all and have great weekend!
Harry
Premium Wordpress themes and plugins, Best WooCommerce theme https://themeforest.net/user/janstudio/portfolio?ref=janstudio
Hi! I recently find out that successful ecommerces has a “back to the same position you were” function when the user is searching category page, click on a producto, load the product page and then click in Back Button of the browser.
Is really annoying if you were scrolling for a while and then you need to scroll all it again.
I know, that’s why QUICK VIEW is useful but most of users aren’t using that function.
Give the possibility to Enable breadcrumb for:
– Woocommerce shop page
– Woocommerce category
– Blog
– Category Blog
– Post
For SEO, the category description is very important.
Now, this section appears in the top and is not user friendly if you write more than 10 words
It is much better to put it before products list where it’s possible to use h2,h3 bold or other … and a much longer description. (like in shop page)
Thank you
This reply was modified 1 year, 6 months ago by max122.