mingjie0409
Forum Replies Created
-
I have these code work for me now :
// Limit all WooCommerce product titles to max number of characters
add_filter( ‘the_title’, ‘shorten_woo_product_title’, 10, 2 );
function shorten_woo_product_title( $title, $id ) {
if ( is_product_category() && get_post_type( $id ) === ‘product’ ) {
return substr( $title, 0, 80 ); // change last number to the number of characters you want
} else {
return $title;
}
}But how to add WoooCommerce conditional functions to above code ?
Is the below right : change this line ?
if ( is_shop() & is_product_category() && get_post_type( $id ) === ‘product’ ) {Please advance … Thanks
JK
@claudio Sanches
HI Claudio Sanches
thanks for your reply , and How could I change the code ? If I want to short WooCommerce products title in Shop page & category pages & product tags pages ?
Is it possible ?
Thanks
JK
Forum: Plugins
In reply to: [WooCommerce] I want to know how to Create product tags page@claudio Sanches
Hi Claudio Sanches ,
Sorry to trouble you again . Is It possible create a products Product Categories ?
such as mysite.com/Product-Categories
Thanks a lot , and have a good day !
JK
Forum: Plugins
In reply to: [WooCommerce] I want to know how to Create product tags page@claudio Sanches
woooowwwwwooooo ,,,, It works !! So many many thanks for your help …
what’s wrong with BuddyPress Activity Plus when as admin account
Please check the picture ::: https://oi67.tinypic.com/1z5kgw4.jpg
as a admin click the #photos ,,, but nothing to do …
but use other account will be okay , what’s wrong with it please
thanks a lot
jk
We use the vendor role click Product Manager – It will show this ERROR …..
You do not have sufficient permissions to access this page.
What’s wrong with it ?
Thanks
JK
@sandy-wcmp and @dualcube
Great , It is working fine now , after I updated the PHP to 5.4+ , very Nice plugin .
Thanks the Author , I like it very much !
Eric