Text on category pages under the products

I am using Pro for a large ecommerce site. I want the Category pages to be the landing pages and, for SEO reasons, want to add text to the Category pages. The text will be for the search engines, not the customers, and therefore I want the text to appear below the Products shown in each Category. Problem is the Description appears at the top of the page.

I can’t find a plugin that would enable me to do this. I thought of using the Footer but these can be assigned to Product pages and not Categories.

I could use a Page instead, but then the Products in the relevant Category would not be shown unless I add them individually (a lot of work).

Suggestions welcome.

Hi There,

Thanks for writing in! Custom development is outside the scope of our support. However I can point you to the location where it’s loading currently.

For example if you’re using Integrity stack, locate the following file _landmark-header.php under (x/framwork/legacy/cranium/headers/views/integrity/) and locate the following code.

<?php elseif ( x_is_product_category() ) : ?>

  <?php

  $meta     = x_get_taxonomy_meta();
  $title    = ( $meta['archive-title']    != '' ) ? $meta['archive-title']    : __( 'Category Archive', '__x__' );
  $subtitle = ( $meta['archive-subtitle'] != '' ) ? $meta['archive-subtitle'] : __( "Below you'll find a list of all items that have been categorized as ", '__x__' ) . '<strong>&ldquo;' . single_cat_title( '', false ) . '&rdquo;</strong>';

  ?>

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.