Forum Replies Created

Viewing 1 replies (of 1 total)
  • @jasodo I have a possible solution for you, just had to do this now as well.

    Look for the following code:

    foreach( $terms1 as $term1 ){
    	$slug	= $term1->slug;
    	$tname	=	$term1->name;
    	$cat_url	=	get_bloginfo('siteurl').'/?wpccategories=/'.$slug;
    };

    And replace it with:

    foreach( $terms1 as $term1 ){
    	$slug	= $term1->slug;
    	$tname	=	$term1->name;
    	$cat_url	=	get_bloginfo('siteurl').'/?wpccategories=/'.$slug;
    	$descrip	=	$term1->description;
    };

    Then to actually display it at the top of your category page, find the following code:

    $return_string .= '  <!--col-2-->
    			<div id="wpc-col-2">
    			<div id="wpc-products">';

    And replace it with:

    $return_string .= '  <!--col-2-->
    			<div id="wpc-col-2"><p>'. $descrip .'</p><div id="wpc-products">';

    These changes are all made to the wpc-catalogue.php file.

Viewing 1 replies (of 1 total)