Hi

Have some issues with the display of links via page relationship.

https://www.potencecontrols.com/product-display.php?name=ph-orp

Our website has 3 different product categories & each category has a related parameter. Each parameter has multiple products inside it.

Eg: Water Anaylzer (product category) >> PH/ORP (parameters) >> PC1000 Controller (product).

We want to display the related parameters of each product category when a user navigates to parameters page. Essentially all the parameters of Water Analyzers should be displayed when the user navigates to say the PH/ORP page.

However we are facing a issue where the parameters of all the various product categories are listed. We only wish to display the parameters specific to that product category.

If this sounds confusing I have given the code below.

--------------x---------------------------------x---------------------------------x---------------------------------x-------------------
<aside class="col-sm-3 col-md-3 col-lg-3 col-sm-pull-9 col-md-pull-9 col-lg-pull-9">

<div class="widget widget_categories">
<h3 class="widget-title" style="color:#224c96;">Parameters</h3>
<hr>
<ul class="greylinks list2 checklist">

<cms:pages orderby='weight' order='asc' masterpage='productcategorymaster.php' limit='0'>
<cms:if k_is_page >
<cms:related_pages 'parametermaster_productcategorymaster' >


<cms:form method="post" anchor='0'>

<cms:if k_success >
<cms:redirect "product-display.php?name=<cms:show k_page_name />" />
</cms:if>


<li class="active">

<cms:input name="submit" type="submit" class="content-justify" style="background-color:#FFF; border:none;" value="<cms:show k_page_title />"/>

</li>

</cms:form>

</cms:related_pages>
</cms:if>
</cms:pages>

</ul>
</div>
</aside>
--------------x---------------------------------x---------------------------------x---------------------------------x-------------------

Alok