Monday, 16 May 2016

visual composer not working backend

No matter what theme we are using sometimes it happens that visual composer is not working in back-end mode. Sometimes it working in front-end mode 

Causes :
1) Updated Wordpress but back-dated visual composer
2) Other Composer plugin installed 

To solve this issue, first you need to check if your visual composer is latest and updated. Then check if there are other composer plugin installed, just deactive those plugins . I hope it will solve your issue 

Monday, 9 May 2016

How to limit Product title length

Most of us has faced this issue with woocommerce in different theme


  
You can solve it with simple css code

.woocommerce ul.products li.product h3, .woocommerce-page ul.products li.product h3 {
line-height:1.3em;
over-flow:hidden;
text-overflow:ellipsis;
display:block;
white-space:nowrap;
}

I hope it gonna help you, let me know if you have any problem in comments