bratimir
Forum Replies Created
-
I just did it.
ThanksHi, it seems that I have a similar problem, but I think that mine is caused because of plugin conflict.
I have a test site up and running. All plugins are up-to-date. The problem I have is:
I have a part of a site that is using images from NextGen gallery. It works as expected. Other part, shop, uses Woo Commerce plugin and its own lightbox feature.
When WooCommerce is activated, when I click on NextGen gallery image thumbnail it opens as a singlepic, meaning as a separate page with no navigation whatsoever. In the moment I disable Woo Commerce, everything works ok.
If those two can not coexist on a single site is there some workaround or can I explicitly tell on which pages/templates Woo Comerce should run or something like that.
The example of what’s happening can be seen hereMany thanks in advance for your help!
Forum: Plugins
In reply to: [Plugin: Woocommerce] Can't update product short descriptionI am not sure if this could be a solution in your case, but it was in mine. Just to make you aware, I am using qTranslate (two languages) and I think it created an issue with product short description field….
In my case I resolved it by putting line of code below into my themes functions.php file.
add_filter( 'wp_default_editor', create_function('', 'return "html";') );
It seems that it would accept changes when default mode is Text (instead of visual). Now I can’t switch between those two modes, but it works. ??