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

Monday, 28 March 2016

Wordpress Column Hover Effect

There are cases where Wordpress Themes or visual composer doesn't allow to add hover effect on columns. Suppose you have divided your row in 3 different section and now you want when user will put mouse on a column it will change its background color.


To do this we need to add a class in the columns. When you click on the edit column icon from the visual composer at the bottom you can see a text box labeled "Extra Class name". Just put a name over there which you need to call later on in the custom css.

Now in theme custom css, call the class as ".column1" (i have used column1 as the class name )

Now here is the code you need to use

.column1:hover {
    background-color: rgba(61,118,41,0.4);
}

Ready to go, Just save it and refresh you page . Let me know if you have any question