> ## Documentation Index
> Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Rule Conflict Resolution

> Predictive Merchandiser

export const LwTemplate = ({title = "Key questions to get you started", icon = "sparkles", cta = "Powered by Agent Studio", linkHref = "https://lucidworks.com/demo/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta_ai"}) => {
  const [isLoaded, setIsLoaded] = useState(false);
  useEffect(() => {
    const timer = setTimeout(() => {
      setIsLoaded(true);
    }, 500);
    return () => clearTimeout(timer);
  }, []);
  return <div className="lw-template-container">
      <Card title={title} icon={icon}>
        {isLoaded && <span dangerouslySetInnerHTML={{
    __html: `<lw-template id="a029c1a9-28be-427e-b0e1-5d918920246a"></lw-template
            >`
  }} />}
        <Link href={linkHref} className="agent-studio-link text-left text-gray-600 gap-2 dark:text-gray-400 text-sm font-medium flex flex-row items-center hover:text-primary dark:hover:text-primary-light group-hover:text-primary group-hover:dark:text-primary-light">Powered by Lucidworks Agent Studio</Link>
      </Card>
    </div>;
};

export const InlineImage = ({src, alt = '', height = '2em'}) => {
  return <img src={src} alt={alt} style={{
    display: 'inline',
    verticalAlign: 'start',
    height: height,
    margin: '0'
  }} />;
};

[localhost link]: http://localhost:3000/docs/5/fusion/getting-data-out/curating-your-search-experience/predictive-merchandiser/rule-conflict-resolution

[mintlify link]: https://doc.lucidworks.com/docs/5/fusion/getting-data-out/curating-your-search-experience/predictive-merchandiser/rule-conflict-resolution

[old doc.lw link]: https://doc.lucidworks.com/fusion/5.9/598

Sometimes, rules created in the [Rules Editor](/docs/5/fusion/getting-data-out/query-enhancement/rules-editor) and Predictive Merchandiser conflict with each other. For example, if you have three rules to boost, bury, and block the same product, Predictive Merchandiser highlights these conflicting rules so you can address them.

<LwTemplate />

To highlight conflicting rules, the **Rules Fired** section displays a red warning icon next to the dominant rule and a red flag on the conflicting rules.

<img src="https://mintcdn.com/lucidworks/3Ch7Gf3ey98GnjMH/assets/images/predictive-merchandiser/rules-conflict-resolution-01.png?fit=max&auto=format&n=3Ch7Gf3ey98GnjMH&q=85&s=8c16284d863a60981b6ab415ddc648c8" alt="Highlighted Conflicting Rules" width="1612" height="865" data-path="assets/images/predictive-merchandiser/rules-conflict-resolution-01.png" />

Click the **Edit** button to view the details of the conflicting rules and resolve the conflict.

<img src="https://mintcdn.com/lucidworks/3Ch7Gf3ey98GnjMH/assets/images/predictive-merchandiser/rules-conflict-resolution-02.png?fit=max&auto=format&n=3Ch7Gf3ey98GnjMH&q=85&s=28cea5eee4fafbd9b6725751e306e031" alt="Edit Conflicting Rules" width="1712" height="875" data-path="assets/images/predictive-merchandiser/rules-conflict-resolution-02.png" />

The details of the conflicting rules affecting specific products are found in the details panel. Click the **Start Task** button <InlineImage src="/assets/images/predictive-merchandiser/buttons/pm-task-start.png" />, hover over a product, and click the **Details** button <InlineImage src="/assets/images/predictive-merchandiser/buttons/pm-product-details.png" />.

<img src="https://mintcdn.com/lucidworks/3Ch7Gf3ey98GnjMH/assets/images/predictive-merchandiser/rules-conflict-resolution-04.png?fit=max&auto=format&n=3Ch7Gf3ey98GnjMH&q=85&s=cc0b3c18d25fa67c631569ce2b8b8877" alt="Edit Conflicting Rules" width="1273" height="857" data-path="assets/images/predictive-merchandiser/rules-conflict-resolution-04.png" />

<Card title="Predictive Merchandiser: Rules Manager" class="note-image" href="https://academy.lucidworks.com/predictive-merchandiser-rules-manager" cta="Take this course on the LucidAcademy." icon="graduation-cap" iconType="duotone">
  The course for **Predictive Merchandiser: Rules Manager** focuses on how to create and utilize business rules to create more relevant search results for your users.
</Card>
