<?xml version="1.0" encoding="windows-1252"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>Miva Merchant Community Forums - Miva 10</title>
		<link>https://www.miva.com/forums/</link>
		<description>Feedback and questions about Miva 10</description>
		<language>en</language>
		<lastBuildDate>Thu, 30 Apr 2026 18:20:38 GMT</lastBuildDate>
		<generator>vBulletin</generator>
		<ttl>60</ttl>
		<image>
			<url>images/misc/rss.png</url>
			<title>Miva Merchant Community Forums - Miva 10</title>
			<link>https://www.miva.com/forums/</link>
		</image>
		<item>
			<title><![CDATA[Exclude &#8220;Specials&#8221; Category from Sitewide Sale]]></title>
			<link>https://www.miva.com/forums/forum/online-merchants/miva-10/725340-exclude-%E2%80%9Cspecials%E2%80%9D-category-from-sitewide-sale</link>
			<pubDate>Thu, 09 Apr 2026 20:04:23 GMT</pubDate>
			<description><![CDATA[Hi all, 
 
I&#8217;m setting up a sitewide discount (Product Discount price group applied to all products), but I need to exclude items in our &#8220;Specials&#8221;...]]></description>
			<content:encoded><![CDATA[Hi all,<br />
<br />
I&#8217;m setting up a sitewide discount (Product Discount price group applied to all products), but I need to exclude items in our &#8220;Specials&#8221; category so they don&#8217;t get double-discounted.<br />
<br />
I&#8217;ve tried:<br />
- Collections &#8594; only see &#8220;Canonical Category,&#8221; not all assigned categories<br />
- Price Groups &#8594; no clear way to exclude by category dynamically<br />
<br />
Right now the only working option seems to be:<br />
- manually removing Specials from the discounted product list<br />
<br />
Is there a way to automatically exclude products by category assignment from a price group in Miva 10?<br />
<br />
Thanks!]]></content:encoded>
			<category domain="https://www.miva.com/forums/forum/online-merchants/miva-10">Miva 10</category>
			<dc:creator>birdwaves</dc:creator>
			<guid isPermaLink="true">https://www.miva.com/forums/forum/online-merchants/miva-10/725340-exclude-%E2%80%9Cspecials%E2%80%9D-category-from-sitewide-sale</guid>
		</item>
		<item>
			<title>Fragments and Page Builder Visual Editor UI</title>
			<link>https://www.miva.com/forums/forum/online-merchants/miva-10/pagebuilder/725336-fragments-and-page-builder-visual-editor-ui</link>
			<pubDate>Mon, 06 Apr 2026 18:12:21 GMT</pubDate>
			<description><![CDATA[Can the Page Builder visual editor be used to work with Fragments?  I'm using the Flex Component Skill for assistance and wanted to confirm it's...]]></description>
			<content:encoded><![CDATA[Can the Page Builder visual editor be used to work with Fragments?  I'm using the Flex Component Skill for assistance and wanted to confirm it's finding before following it down a rabbit hole:<br />
<br />
**Page Fragments and Custom Flex Components:**<br />
- Custom Basic architecture flex components CANNOT be fully used in Miva Page Builder Fragments<br />
- Fragments require components to implement `ComponentModule_Initialize_Fragment` &#8212; a module-level API only available to Miva-built (managed) components<br />
- The Page Builder settings UI is not accessible for custom components assigned to fragments<br />
- For global template injection (Navigation Bar, Global Header, etc.), use a regular blank Page Builder page instead of a Fragment<br />
- A regular page can be called inline from any template using `&lt;mvt:item name=&quot;{page-code}&quot; param=&quot;instance&quot; /&gt;`<br />
- The Fragment `&lt;mvt:fragment code=&quot;xxx&quot; /&gt;` syntax is only reliable for Miva-native components]]></content:encoded>
			<category domain="https://www.miva.com/forums/forum/online-merchants/miva-10/pagebuilder">PageBuilder</category>
			<dc:creator>delcorsets</dc:creator>
			<guid isPermaLink="true">https://www.miva.com/forums/forum/online-merchants/miva-10/pagebuilder/725336-fragments-and-page-builder-visual-editor-ui</guid>
		</item>
		<item>
			<title>Fixing Spaces in URL Caused by Product Codes with Spaces</title>
			<link>https://www.miva.com/forums/forum/online-merchants/miva-10/725335-fixing-spaces-in-url-caused-by-product-codes-with-spaces</link>
			<pubDate>Thu, 02 Apr 2026 19:41:01 GMT</pubDate>
			<description>Store has almost 500 product codes with spaces in them, and has been stuck using the Legacy SEO Settings after we discovered where the plus marks in...</description>
			<content:encoded><![CDATA[Store has almost 500 product codes with spaces in them, and has been stuck using the Legacy SEO Settings after we discovered where the plus marks in the links were coming from. <br />
<br />
The Legacy SEO Settings use this:<br />
<!-- BEGIN TEMPLATE: bbcode_code -->

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(30 *  + 12px + 20px);">### Begin - Inserted by Miva Merchant

DirectoryIndex /mm5/merchant.mvc

RewriteEngine On

RewriteRule ^mm5/admin.mvc - [QSA,L]

RewriteCond %{REQUEST_FILENAME} !-s
RewriteRule ^product/([^/.]+)\.html$ /mm5/merchant.mvc?Screen=PROD&amp;Product_code=$1 [QSA,L]

RewriteCond %{REQUEST_FILENAME} !-s
RewriteRule ^category/([^/.]+)\.html$ /mm5/merchant.mvc?Screen=CTGY&amp;Category_code=$1 [QSA,L]

RewriteCond %{REQUEST_FILENAME} !-s
RewriteRule ^([^/]+)/([^/.]+)\.html$ /mm5/merchant.mvc?Screen=PROD&amp;Category_code=$1&amp;Product_ code=$2 [QSA,L]

RewriteCond %{REQUEST_FILENAME} !-s
RewriteRule ^([^/.]+)\.html$ /mm5/merchant.mvc?Screen=$1 [QSA,L]

### End - Inserted by Miva Merchant</pre>
</div>
<!-- END TEMPLATE: bbcode_code --><br />
<br />
The URI Management will update the .htaccess file to this:<br />
<br />
<!-- BEGIN TEMPLATE: bbcode_code -->

<div class="bbcode_container">
	<div class="bbcode_description">Code:</div>
	
	<pre class="bbcode_code" style="max-height:calc(30 *  + 12px + 20px);">### Begin - Miva Merchant URI Management: Direct all non-file URIs to Miva Merchant
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-s
RewriteCond %{REQUEST_URI} !^/mm5/.*$
RewriteCond %{REQUEST_URI} !(gif|jpg|jpeg|jpe|xbm|png)$
RewriteRule ^(.*)$ /mm5/uri.mvc? [QSA,L]
### End - Miva Merchant URI Management</pre>
</div>
<!-- END TEMPLATE: bbcode_code -->When the .htaccess file is updated, the plus sign disappears from the links, and they break.<br />
 <br />
I had asked about this in the past, and I'm wondering if I can do an import for the old links needing to be redirected using the /some+old+product+code.html Ron had suggested. <br />
<br />
<a href="https://www.miva.com/forums/forum/general/miva-merchant-dream-features/716345-allow-dots-slashes-and-spaces-in-miva-part-numbers/page2" target="_blank">https://www.miva.com/forums/forum/ge...-numbers/page2</a><br />
<br />
The thread seemed to die out there, and the store owner wasn't really concerned about it. In hindsight, I should have checked the &quot;use strict validation for codes&quot; checkbox at the time. It would have at least reminded the storeowner of the issue.]]></content:encoded>
			<category domain="https://www.miva.com/forums/forum/online-merchants/miva-10">Miva 10</category>
			<dc:creator>lesliekirk</dc:creator>
			<guid isPermaLink="true">https://www.miva.com/forums/forum/online-merchants/miva-10/725335-fixing-spaces-in-url-caused-by-product-codes-with-spaces</guid>
		</item>
	</channel>
</rss>
