Thanks
]]>In previous versions, it was maximized, but since updating to 7.0.0, I cannot get it to stay open. It’s always minimized when creating a new product.
Any way to fix this?
]]>I have created and maintaining for a year now an E-shop with WordPress&Woocommerce.
I have near 700 products and all of them had product short description. I realized today that non of these descriptions in any of my products are showing. When i open the dashboard and open the products, none of them has any text at Product Short Description Field, but it used to!
Where did it go? I restore an old backup of the website, a version of it a month ago, but none of the Products Short Description returned. It seems like they were deleted and lost.
What happened? Can i somehow retrieve them back?
Please help me, i need to fix that..
Thanks in advance,
Panagiotis
The text I am putting in the ‘Product short description’ works fine, untill I change the Food Store layout from 1 column to 2. The product description is not visible anymore on the front end.
Any tips or suggestions?
Thank you in advance!
]]>in the woocommerce admin part:
* when I open an existing product
* then click on the “arrow up” or “arrow down” for the product description tab (the arrow moves the tab one row higher/lower in the admin page of the product editor)
then the product short description content (text) disappears.I also cannot change it, it is not possible to click in that tab and to edit the text content.
If I save the product (“publish“) or click on “save a draft” button, then the “product short description tab” reappears normally and shows the content it already had, and can be edited as usual.
***
This is a problem for me, as the shop manager is not proficient in technical matters, and it hinders him to work on the products.
]]>Best regards
]]>add_action( 'woocommerce_after_shop_loop_item_title', 'wc_add_short_description' );
function wc_add_short_description() {
global $product;
?>
<div itemprop="description">
<?php echo substr( apply_filters( 'woocommerce_short_description', $product->post->post_excerpt ), 0,150 ); echo '...' ?>
</div>
<?php
}
And it works fine, I can control description char length. But this short description become a hyperlink and it is the same color as title (red) not as usual text (black). I just need this short description to become text, not hyperlink.
You can see how it looks like in the following screenshot: https://i.postimg.cc/vT2xtgw3/screenshot-2940.png
If you have any question, feel free to ask, I will try to provide full answer.