X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   News and Announcements (https://forum.x-cart.com/forumdisplay.php?f=28)
-   -   X-Cart Mobile module released (https://forum.x-cart.com/showthread.php?t=65246)

Dougrun 01-06-2016 07:44 AM

Re: X-Cart Mobile module released
 
to fix it I did this:
Code:

ul[data-type='products-list'] .product-details .ui-li-desc .price {
  color: #a20505;
  font-size: 2em;
  font-weight: bold;
  text-align:right
}


Also had to add a few <br/> to the tpl file to bump the discount upwards away from the description.

susilosaja 04-06-2016 03:32 AM

Re: X-Cart Mobile module released
 
1 Attachment(s)
seems like the demo is not working?

qualiteam 04-06-2016 09:11 PM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by susilosaja
seems like the demo is not working?


Thank you for letting us know!
We're looking into it.

soldatov 06-03-2016 06:08 AM

Re: X-Cart Mobile module released
 
Hello X-Carters!

We are glad to announce that the brand new version of X-Cart Mobile for Classic (v4) module is released.



We have taken the previous module PHP-core as a base, fixed all the reported issues improved it and created a new design.
The new Mobile module includes:

* Re-designed templates. We've rejected the jQuery Mobile due to often issues with "undefined" blank page. New templates structure is closer to the native X-Cart 4 so it provides more compatibility with the XC4 modules, ex. One Page Checkout and Product Filters. AJAX is also supported now.

* More options at the admin backend to configure.

* One distributive package for the X-Cart versions from 4.4.0 till 4.7.x

Previous X-Cart Mobile module is not supported from now. We are concentrated on improving the new one.
Everyone who purchased previous Module in the 2016 gets the free license upgrade. Others get the 50%-off for the module license exchange.

Check out the DEMO.

Dougrun 06-03-2016 07:52 AM

Re: X-Cart Mobile module released
 
Whats the procedure for upgrading? We bought the old version on Dec 31 2015 01:50. Any chance of getting the free upgrade?

soldatov 06-03-2016 09:12 AM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by Dougrun
Whats the procedure for upgrading? We bought the old version on Dec 31 2015 01:50. Any chance of getting the free upgrade?


I believe, yes. Please drop me a line in the HelpDesk. We will discuss this.

Dougrun 06-07-2016 11:41 AM

Re: X-Cart Mobile module released
 
question: I think i know but does it have its own one page checkout or dies it just reskin the existing one? I use altered carts OPC currently and just wondering if will all play nice with each other.

Phill 06-08-2016 05:22 AM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by Dougrun
question: I think i know but does it have its own one page checkout or dies it just reskin the existing one? I use altered carts OPC currently and just wondering if will all play nice with each other.


Thank you for your question. By default X-Cart Mobile Skin uses Fast Lane Checkout, but you have an ability to chose One Page Checkout instead. As for this 3-rd party checkout module you can try to modify modules/Xcart_Mobile_Skin/customer.php at line 208 and change
HTML Code:

$active_modules['One_Page_Checkout'] = 'Y';
to
HTML Code:

$active_modules['%3rd_Party_Checkout%'] = 'Y';
And after that see what you'll get. Please pay attention, 3-rd party modules layout may not be adapted for the mobile usage.

Dougrun 06-08-2016 10:23 AM

Re: X-Cart Mobile module released
 
thanks, seems to work ok, although theres 2 "Quantity" on the product details page and I'm not sure what their functions are...

I'm tweaking the look to our liking..

The Qty input field really doesnt need to be the entire page width.

Phill 06-09-2016 01:38 AM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by Dougrun
thanks, seems to work ok, although theres 2 "Quantity" on the product details page and I'm not sure what their functions are...

I'm tweaking the look to our liking..

The Qty input field really doesnt need to be the entire page width.


You can change common_files/modules/Xcart_Mobile_Skin/customer/main/product_details.tpl at lines 81-83
HTML Code:


<span class="property-name">
      {strip}<span class="ui-btn-text">{$smarty.capture.qty_title|strip}:&nbsp;</span>{/strip}
</span>

to
HTML Code:


{if not $product.appearance.quantity_input_box_enabled}
    <span class="property-name">
          {strip}<span class="ui-btn-text">{$smarty.capture.qty_title|strip}:&nbsp;</span>{/strip}
    </span>
{/if}


cflsystems 06-09-2016 07:30 AM

Re: X-Cart Mobile module released
 
You really need to fix the DEMO - http://mdemo.x-cart.com/
Links/buttons falling behind the bottom buttons line, quantity box not visible on products with options, etc. There are design/layout issues on this (according to the demo page) version. Also - pages look different on different browsers. For example cart page on IE and FF / Chrome

Dougrun 06-09-2016 07:32 AM

Re: X-Cart Mobile module released
 
thanks. I do not see the mobile icon on the orders admin page anymore, was that removed? Also where is the link to force it to use the desktop version?

Dougrun 06-09-2016 08:50 AM

Re: X-Cart Mobile module released
 
also, can anyone give me an "if" statement I can use that would force the XC checkout if mobile is detected, otherwise proceed as usual (which for me is altered carts OPC).

Thanks.

Phill 06-09-2016 10:06 AM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by cflsystems
You really need to fix the DEMO - http://mdemo.x-cart.com/
Links/buttons falling behind the bottom buttons line, quantity box not visible on products with options, etc. There are design/layout issues on this (according to the demo page) version. Also - pages look different on different browsers. For example cart page on IE and FF / Chrome


Steve, thank you for the feedback. I will contact you personally for the details.

Phill 06-09-2016 10:10 AM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by Dougrun
thanks. I do not see the mobile icon on the orders admin page anymore, was that removed? Also where is the link to force it to use the desktop version?


Mobile icon on the orders should stay the same, please check if mobile_icon.gif is in your root folder.

As for the link "Switch to desktop", it has been removed.

Phill 06-09-2016 10:13 AM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by Dougrun
also, can anyone give me an "if" statement I can use that would force the XC checkout if mobile is detected, otherwise proceed as usual (which for me is altered carts OPC).

Thanks.


Does altered cart OPC override default X-Cart checkout on mobile?

Dougrun 06-09-2016 10:22 AM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by Phill
Mobile icon on the orders should stay the same, please check if mobile_icon.gif is in your root folder.

As for the link "Switch to desktop", it has been removed.


Yes the icon is in my root store folder. Still nothing in admin. Keep in mind I uninstalled the old version before installing the new version.

There really needs to be a link to allow a user to use the desktop version. It should be our choice, not forced on the user.

Dougrun 06-09-2016 10:23 AM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by Phill
Does altered cart OPC override default X-Cart checkout on mobile?


Yes, but i was hoping to override that if theres a smarty mode or other way to have it ignore the AC checkout.

Phill 06-09-2016 10:26 AM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by Dougrun
Yes the icon is in my root store folder. Still nothing in admin. Keep in mind I uninstalled the old version before installing the new version.


I'll check it.

Quote:

Originally Posted by Dougrun
There really needs to be a link to allow a user to use the desktop version. It should be our choice, not forced on the user.


Thank you for your feedback. We will discuss it and can include it in the next version.

Phill 06-09-2016 10:33 AM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by Dougrun
Yes, but i was hoping to override that if theres a smarty mode or other way to have it ignore the AC checkout.


I don't think that there is a possibility to make in smarty. This can be solved within the custom development task. Could you please contact me via the HelpDesk? We will discuss the details.

cherie 06-09-2016 10:59 AM

Re: X-Cart Mobile module released
 
Lots of good feedback for the new module's beta version.

Dougrun 06-09-2016 11:01 AM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by Phill
I'll check it.



Thank you for your feedback. We will discuss it and can include it in the next version.


I see you didn't remove the switch-view.tpl file and it still works as bad as it did in the last version so I have to think thats why it's disabled.

Dougrun 06-09-2016 11:43 AM

Re: X-Cart Mobile module released
 
We really can't use a mobile a version that doesn't allow switching back and forth so i modified the old page to make it work:

in /common_files/modules/Xcart_Mobile_Skin/customer/main/switch_view.tpl replace it with:
Code:

{*
$Id$
vim: set ts=2 sw=2 sts=2 et:
*}
<a class="switch-mobile link-switch" data-theme="b" data-icon="switch"> <i class="fa fa-desktop"></i><h3>{$lng.lbl_switch_to_desktop}</h3>
  <div class="ui-grid-b">
    <div class="ui-block-b">
      <a href="{$php_url.url}?{if $php_url.query_string}{$php_url.query_string}&{/if}switch_view=common" rel="external" data-role="button" data-inline="false" data-theme="b">{$lng.lbl_switch}</a>
    </div>
  </div>


Go to Languages and search for "mobile view",
in txt_mobile_switch_view_dialog_content_original
change wording to how you like but I used:
Code:

<p>
    Switch to the mobile view? Yes = Mobile, No = Desktop main home page. To stay, click &quot;Dont ask again&quot; and the X in upper right. To force back to mobile from desktop, you need to close this browser and re-open (hold finger on URL and copy beforehand so you can re-paste easily).</p>

in/common_files/modules/Xcart_Mobile_Skin/customer/main/more.tpl (or whatever page you want it on)
find
Code:

{capture name=submenu}
below it add:
Code:

{include file="customer/main/switch_view.tpl"}

Freakmode 06-10-2016 12:26 AM

Re: X-Cart Mobile module released
 
Is it worth the upgrade cost of this module or does it still have a few issues? We have used the old mobile module for ages and never had a problem with it, so just checking before I regret it.

soldatov 06-10-2016 05:46 AM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by Freakmode
Is it worth the upgrade cost of this module or does it still have a few issues? We have used the old mobile module for ages and never had a problem with it, so just checking before I regret it.


You can purchase the new version with the 50% off and test it within the month (the moneyback period). For example to perform some A/B tests, check conversions.

If this version doesn't suit you, then we will return your money :)

Dougrun 06-10-2016 08:37 AM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by Freakmode
Is it worth the upgrade cost of this module or does it still have a few issues? We have used the old mobile module for ages and never had a problem with it, so just checking before I regret it.


So far I like it better than the previous version in terms of flow, although I dont use the XC checkout. Security-wise I think its better to have the latest version than the old.

Skot, did you confirm the mobile icon bug?

Phill 06-11-2016 09:40 AM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by Dougrun
Skot, did you confirm the mobile icon bug?


This issue will be fixed in new version. Timeline 1-1.5 week.

cherie 06-17-2016 08:13 PM

Re: X-Cart Mobile module released
 
Here are the issues we ran into with this new module:
  • install hung on creating snapshot
  • customer.php tries to call old function for 2012 issue
  • customer order history daterange picker off screen
  • required payment box is hidden by default (single payment method that requires input [BCSE DPM])

Phill 06-17-2016 10:17 PM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by cherie
Here are the issues we ran into with this new module:
  • install hung on creating snapshot
  • customer.php tries to call old function for 2012 issue
  • customer order history daterange picker off screen
  • required payment box is hidden by default (single payment method that requires input [BCSE DPM])


Thank you for your feedback.
Quote:

  • customer.php tries to call old function for 2012 issue
  • customer order history daterange picker off screen

These issues will be fixed in new version. Release is planned at the beginning of the next week.

Quote:

  • install hung on creating snapshot
  • required payment box is hidden by default (single payment method that requires input [BCSE DPM])

I will contact you personally for the details.

cherie 06-20-2016 08:32 AM

Re: X-Cart Mobile module released
 
When I expand Payment Details at checkout I am left at the bottom with the Submit button and have to scroll back up to the Payment Details section.

Phill 06-20-2016 09:59 PM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by cherie
When I expand Payment Details at checkout I am left at the bottom with the Submit button and have to scroll back up to the Payment Details section.


This issue has been fixed in new version. New version will be available today.

Phill 06-21-2016 03:59 AM

Re: X-Cart Mobile module released
 
I'm glad to inform you that the new module version has been released. Support files are also available.

Here is the changelog:
Quote:

  • Improvments:
    [INNER] Reviews stars has been added to the product listing
    [INNER] Feature Comparison module integration
    [INNER] Banner System module integration

    Bugs:
    [148630] New X-Cart Mobile Skin - Login error (leave HTTPS issue)
    [FORUM] Dublicated "Quantity" label on product details page when "Show quantity selector as input textbox" is enabled
    [FORUM] Missed "Mobile order icon" in admin back-end
    [FORUM] Expanding Payment Details issue
    [INNER] Missed iOS favicon
    [INNER] Thumbnails instead of full size images in detailed images carousel
    [INNER] Janrain Social Login issues
    [INNER] Mobile Firefox layout issues
    [INNER] Special Offer layout overlap issue


Dougrun 06-21-2016 07:34 AM

Re: X-Cart Mobile module released
 
Quote:

2. Apply the SQL changes: select the patch.sql from the x-cart-mobile-skin-patch-x.x.x-y.y.y.tgz archive for the "Apply SQL patch" section.

this file does not exist. Should it?? Just looking at the x-cart-mobile-skin-patch-1.0.0-1.0.1.zip

Phill 06-21-2016 07:39 AM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by Dougrun
this file does not exist. Should it?? Just looking at the x-cart-mobile-skin-patch-1.0.0-1.0.1.zip


It is just common instruction. There were no SQL changes, so there is no patch.sql file in this package.

Dougrun 06-21-2016 08:30 AM

Re: X-Cart Mobile module released
 
blank page. I uploaded a fresh version of all files and i get a blank home page. I aded my error log files to the last ticket i had open for the mobile license upgrade so you can see them. Obviously i have it disabled at the moment until i revert.

Something in the module folder files, uploading old skin files had no effect.

Dougrun 06-21-2016 09:34 AM

Re: X-Cart Mobile module released
 
Your patch does not add missing files. If you look in a full 1.01 download, there is
function.alter_currency.php
function.currency.php
function.get_category_image_url.php

those are missing from the patch download.

cherie 06-21-2016 09:39 AM

Re: X-Cart Mobile module released
 
Those files are already installed with 1.0.0 and not patched with 1.0.1 so no need to include them with the update.

Dougrun 06-21-2016 09:57 AM

Re: X-Cart Mobile module released
 
ok, something is wrong again. I uploaded all fresh 1.01 files. Blank site. I get
[21-Jun-2016 17:57:22 UTC] PHP Fatal error: Can't use function return value in write context in /home/xxxxxx/public_html/store/modules/Xcart_Mobile_Skin/customer.php on line 270

Phill 06-21-2016 03:27 PM

Re: X-Cart Mobile module released
 
Quote:

Originally Posted by Dougrun
ok, something is wrong again. I uploaded all fresh 1.01 files. Blank site. I get
[21-Jun-2016 17:57:22 UTC] PHP Fatal error: Can't use function return value in write context in /home/xxxxxx/public_html/store/modules/Xcart_Mobile_Skin/customer.php on line 270


This error is related to the server PHP version (if it is lower than 5.5).
We've made necessary changes. New version and patch will be available this morning by local time.

Dougrun 06-21-2016 05:45 PM

Re: X-Cart Mobile module released
 
thanks, i updated my easyapache profile so im on 5.6 now.


All times are GMT -8. The time now is 10:53 AM.

Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.