V
V
Vetal2017-05-27 11:06:35
WordPress
Vetal, 2017-05-27 11:06:35

How to make a page with a description for each category in woocommerce??

We have a woocommerce store. For each category, you need to attach a separate page with a description and configured seo. How can this be implemented?
Ps The category and the page have the same links but only the products of the category are opened.

Answer the question

In order to leave comments, you need to log in

2 answer(s)
A
Alexey Sklyarov, 2017-05-27
@0example

Write php code that will do the following:
1. Take the slug of the rubric.
2. If the slug of the page is the same as that of the category (which is what you wrote), then the content of the page is simply displayed by slug.
Here, in general, and all.
How to get the slug of the current category?

<?php 
if ( is_single() ) {
    $cats =  get_the_category();
    $cat = $cats[0];
} else {
    $cat = get_category( get_query_var('cat') );
}
$cat_slug = $cat->slug; // ярлык рубрики
?>

Next, we simply substitute this slug into the page output function (remember that they must be the same for you):
$page = get_page_by_path($cat_slug );
echo get_the_content( $page );

W
WordPress WooCommerce, 2017-05-30
@maxxannik

Take the product category template, copy it into a child theme. For a change to take place.
Next, change the replaced template, add your own do_action to it.
Next, write a plugin that will hang some content on this do_action. For example, it can be pages or make your own post type (CPT). Link by slug or via the product category metafield.
There are many options.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question