<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0">
<channel>
<title><![CDATA[BCS Engineering]]></title>
<link><![CDATA[https://support.bcsengineering.com/]]></link>
<description />
<generator><![CDATA[Kayako case v4.66.2]]></generator>
<item>
<title><![CDATA[My Mobile Mod won't checkout and keeps looping or doesn't show pa...]]></title>
<link><![CDATA[https://support.bcsengineering.com/index.php?/Knowledgebase/Article/View/28]]></link>
<guid isPermaLink="false"><![CDATA[33e75ff09dd601bbe69f351039152189]]></guid>
<pubDate><![CDATA[Tue, 02 Mar 2010 23:03:00 -0500]]></pubDate>
<dc:creator><![CDATA[Carrie Saunders]]></dc:creator>
<description><![CDATA[This is a known issue with 4.1.9 and earlier 4.1.x versions due to the significant changes between versions of 4.1.x.  

X-cart's cart.php file operates differently between the 4.1.x branches.  The fix is simple though.

For issues with payment method...]]></description>
<content:encoded><![CDATA[This is a known issue with 4.1.9 and earlier 4.1.x versions due to the significant changes between versions of 4.1.x.  <br />
<br />
X-cart's cart.php file operates differently between the 4.1.x branches.  The fix is simple though.<br />
<br />
<b>For issues with payment methods not showing up do the following</b><br />
<br />
Open up cart.php<br />
<br />
Find this code you inserted:<br />
<br />
# BCSE Begin - Mobile Mod #	<br />
if ($isMobile){		<br />
func_display("customer/mobile_checkout.tpl", $smarty);		<br />
exit;	<br />
}	<br />
# BCSE End   - Mobile Mod #<br />
<br />
<br />
Change it to:<br />
<br />
# BCSE Begin - Mobile Mod #<br />
	if ($isMobile){<br />
		$smarty->assign("payment_methods",$payment_methods);<br />
		func_display("customer/mobile_checkout.tpl", $smarty);<br />
		exit;<br />
	}<br />
	# BCSE End   - Mobile Mod #<br />
<br />
<b>For cart looping issues at the payment method selection step:</b><br />
<br />
Open up skin1/customer/mobile_checkout.tpl<br />
<br />
Find:<br />
<br />
{elseif $login && $smarty.get.paymentid eq ""}<br />
					&lt;form action="cart.php?mode=checkout" method="post" name="cartform"&gt;<br />
<br />
<br />
Change it to:<br />
<br />
{elseif $login && $smarty.get.paymentid eq ""}<br />
					&lt;form action="cart.php?mode=checkout" method="get" name="cartform"&gt;<br />
]]></content:encoded>
</item>
<item>
<title><![CDATA[We have installed 'one-step checkout' and I think it might be cau...]]></title>
<link><![CDATA[https://support.bcsengineering.com/index.php?/Knowledgebase/Article/View/170]]></link>
<guid isPermaLink="false"><![CDATA[149e9677a5989fd342ae44213df68868]]></guid>
<pubDate><![CDATA[Thu, 15 Apr 2010 15:53:42 -0400]]></pubDate>
<dc:creator><![CDATA[Nick Poindexter]]></dc:creator>
<description><![CDATA[The mobile mod will not work with One Page Checkout mod.  The one-page checkout will work on your regular site, but the mobile mod has it's own checkout.

The mobile code you insert for the mod needs to go before the following code when using checkout o...]]></description>
<content:encoded><![CDATA[The mobile mod will not work with One Page Checkout mod.  The one-page checkout will work on your regular site, but the mobile mod has it's own checkout.<br />
<br />
The mobile code you insert for the mod needs to go before the following code when using checkout one:<br />
<br />
if ($active_modules['Checkout_One'])<br />
require $xcart_dir."/modules/Checkout_One/checkout_one_cart.php";<br />
// End Checkout One // ]]></content:encoded>
</item>
<item>
<title><![CDATA[Display static pages using our mobile mod]]></title>
<link><![CDATA[https://support.bcsengineering.com/index.php?/Knowledgebase/Article/View/340]]></link>
<guid isPermaLink="false"><![CDATA[40008b9a5380fcacce3976bf7c08af5b]]></guid>
<pubDate><![CDATA[Mon, 25 Feb 2013 11:59:51 -0500]]></pubDate>
<dc:creator><![CDATA[Gary Jolley]]></dc:creator>
<description><![CDATA[You can have static pages show up. You'd just need to link to them in the skin. We can't guarantee if they would look OK though because it depends on the content and how wide it is.
]]></description>
<content:encoded><![CDATA[You can have static pages show up. You'd just need to link to them in the skin. We can't guarantee if they would look OK though because it depends on the content and how wide it is.<br />
]]></content:encoded>
</item>
<item>
<title><![CDATA[ iPad would go to the regular site rather than the mobile site]]></title>
<link><![CDATA[https://support.bcsengineering.com/index.php?/Knowledgebase/Article/View/341]]></link>
<guid isPermaLink="false"><![CDATA[3dd48ab31d016ffcbf3314df2b3cb9ce]]></guid>
<pubDate><![CDATA[Mon, 25 Feb 2013 12:08:08 -0500]]></pubDate>
<dc:creator><![CDATA[Gary Jolley]]></dc:creator>
<description><![CDATA[Edit the detect_class.php in the modules/BCSE_Mobile_Mod folder to add or remove devises from being recognized.

Open init.php file and add this in:
 
 if (preg_match('/ipad/i', $this->userAgent)) {
 $this->isMobile = false;
 }
 
 at the bottom of...]]></description>
<content:encoded><![CDATA[Edit the detect_class.php in the modules/BCSE_Mobile_Mod folder to add or remove devises from being recognized.<br />
<br />
Open init.php file and add this in:<br />
 <br />
 if (preg_match('/ipad/i', $this->userAgent)) {<br />
 $this->isMobile = false;<br />
 }<br />
 <br />
 at the bottom of the __construct() function]]></content:encoded>
</item>
<item>
<title><![CDATA[View full website link using our mobile mod]]></title>
<link><![CDATA[https://support.bcsengineering.com/index.php?/Knowledgebase/Article/View/342]]></link>
<guid isPermaLink="false"><![CDATA[58238e9ae2dd305d79c2ebc8c1883422]]></guid>
<pubDate><![CDATA[Mon, 25 Feb 2013 12:10:58 -0500]]></pubDate>
<dc:creator><![CDATA[Gary Jolley]]></dc:creator>
<description><![CDATA[www.yourdomain.com/home.php?mobile_display=N]]></description>
<content:encoded><![CDATA[www.yourdomain.com/home.php?mobile_display=N]]></content:encoded>
</item>
</channel>
</rss>