-
juliabrant
Products in the Sale section are not displayed! Why aren’t they showing up? Where can I edit them? Do I need to install a shortcode plugin?
-
Alvind
Hi there,
The Sale Product shortcode is provided by WooCommerce. Since the other shortcode works, there may be an issue with that one. You’ll need to check with WooCommerce support, as they may have deprecated the shortcode.
-
juliabrant
Thanks! I have solved the problem.
-
Alvind
Glad to hear that! 🙂
-
juliabrant
However, I encountered a new problem: the “Product short description” on the WooCommerce product page is not displaying content.
How to solve it?
-
Alvind
You need to add this snippet to enable the Product Description:
add_action( 'woocommerce_single_product_summary', function() { global $product; echo $product->post->post_excerpt; }, 20 );Adding PHP: https://docs.generatepress.com/article/adding-php/
-
juliabrant
OK, thanks a lot!
-
Alvind
You’re welcome!
-
juliabrant
Where can I edit the copyright information area in the footer? It’s not in the theme’s footer.php file. Do I need to find the corresponding function in the theme’s functions.php file?
-
Alvind
You don’t need to edit any theme files directly.
If you have the GP Premium plugin installed:
1. Go to Appearance > GeneratePress and activate the Copyright module (if it isn’t already).
2. Then go to Customize > Layout > Footer — you’ll see a field there where you can add your custom copyright text at the bottom.
-
juliabrant
Thank you very much!
-
Alvind
You’re welcome!
- You must be logged in to reply to this topic.