X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Third Party Add-Ons for X-Cart 4 (https://forum.x-cart.com/forumdisplay.php?f=45)
-   -   X-Cart - Ultra - Responsive Template (https://forum.x-cart.com/showthread.php?t=74358)

josebueso 06-07-2017 09:57 PM

Re: X-Cart - Ultra - Responsive Template
 
Quote:

Originally Posted by PhilJ
Demo available here.
It's available for v4.7.6 and v4.7.7, but will be updated for v4.7.8 shortly.
Please get in touch so I can see the issue on your store? Ta.


Hello PHil

I reported This search Issue in post #52 It will great to have the search to show the regular price on the product only.
You can try to search in my store to test: www.uncionmusic.com

Regards

Saul

PhilJ 06-08-2017 01:13 AM

Re: X-Cart - Ultra - Responsive Template
 
Hi Saul, I couldn't reproduce that issue. On the demo, this product has wholesale prices (search for 'mini').

What search term(s) produce the issue on your store?

josebueso 06-08-2017 01:30 AM

Re: X-Cart - Ultra - Responsive Template
 
Quote:

Originally Posted by PhilJ
Hi Saul, I couldn't reproduce that issue. On the demo, this product has wholesale prices (search for 'mini').

What search term(s) produce the issue on your store?


Hello Phil
This happen on any item that has whole sale prices, It shows the same item twice, one with regular price and the other one with wholesale price. Obviously regular customer will click on the lower priced product wish is the wholesale price but is redirected to the regular price. whole sale price should show to whole member once they are logged in.

Try keyword:TAMARA you will see $3.99 regular price and $3.49 wish is wholesale price (For wholesaler when log in only)

Hope I explained may self.

Thanks

PhilJ 06-08-2017 01:52 AM

Re: X-Cart - Ultra - Responsive Template
 
In altskin_dynamic_search_queries.php

In line 25, directly after...
Quote:

AND x.`variantid` = '0'
Insert...
Quote:

AND x.`membershipid` = '0'
So it looks like...
Quote:

WHERE p.`forsale` != 'N' AND p.`forsale` != 'H' AND x.`price` != '0' AND x.`quantity` = '1' AND x.`variantid` = '0' AND x.`membershipid` = '0' AND product LIKE '%".$_GET["q"]."%' ORDER BY p.`add_date` DESC
It needs a bit more work to display proper membership prices when wholesaler logged in. I'll work on that...

PhilJ 06-09-2017 11:20 AM

Re: X-Cart - Ultra - Responsive Template
 
=============================
X-Cart Ultra v4.7.7 to v4.7.8
=============================


** UPDATED | altskin_dynamic_search_queries.php

** UPDATED | skin/ultra/customer/bread_crumbs.tpl
** UPDATED | skin/ultra/customer/service_body_js.tpl
** UPDATED | skin/ultra/customer/service_head.tpl

** UPDATED | skin/ultra/js/popup_open.js

** UPDATED | skin/ultra/modules/One_Page_Checkout/address_buttons.tpl
** UPDATED | skin/ultra/modules/One_Page_Checkout/ajax.checkout.js
** UPDATED | skin/ultra/modules/Product_Options/display_options.tpl
** UPDATED | skin/ultra/modules/XPayments_Subscriptions/customer/subscriptions.tpl

** ADDED | altskin_minify.php
** UPDATED | altskin_common.php
** UPDATED | skin/ultra/custom/structured_data_company.tpl
** UPDATED | skin/ultra/custom/structured_data_product.tpl
** +FOLDER | /cache

-------------------
Wordpress v4.8 Blog
-------------------

** UPDATED | blog/wp-includes/script-loader.php

josebueso 06-09-2017 09:59 PM

Re: X-Cart - Ultra - Responsive Template
 
Quote:

Originally Posted by PhilJ
=============================
X-Cart Ultra v4.7.7 to v4.7.8
=============================

** UPDATED | altskin_dynamic_search_queries.phpl

** UPDATED | skin/ultra/customer/bread_crumbs.tpl
** UPDATED | skin/ultra/customer/service_body_js.tpl
** UPDATED | skin/ultra/customer/service_head.tpl

** UPDATED | skin/ultra/js/popup_open.js

** UPDATED | skin/ultra/modules/One_Page_Checkout/address_buttons.tpl
** UPDATED | skin/ultra/modules/One_Page_Checkout/ajax.checkout.js
** UPDATED | skin/ultra/modules/Product_Options/display_options.tpl
** UPDATED | skin/ultra/modules/XPayments_Subscriptions/customer/subscriptions.tpl


-------------------
Wordpress v4.8 Blog
-------------------

** UPDATED | blog/wp-includes/script-loader.php


This will be last version.


Hello Phil

To upgrade Ultra I just need to upload the new files?

Thanks

Saul

Freakmode 06-14-2017 02:44 AM

Re: X-Cart - Ultra - Responsive Template
 
Hi Phil

Is there a way to reorder the modules load order when Ultra goes responsive, could do with the categories and refine filters to load at the top? I know you had a fix for this with Reboot will the same code work? Cheers

Freakmode 06-23-2017 06:01 AM

Re: X-Cart - Ultra - Responsive Template
 
Another daft question Phil, can category descriptions be in a scroll box? Some of ours are quite long which means endless scrolling on a mobile before you get to the products?

Freakmode 07-06-2017 05:58 AM

Re: X-Cart - Ultra - Responsive Template
 
Hey Phil

What CSS would I need to edit to have more static pages shown on one line in the header (using speedbar) Currently if we add another link it drops down to a second line but I think it would not look too squashed up on a single line.

PhilJ 07-08-2017 04:51 AM

Re: X-Cart - Ultra - Responsive Template
 
Quote:

- Is there a way to reorder the modules load order when Ultra goes responsive, could do with the categories and refine filters to load at the top?
- Can category descriptions be in a scroll box?
^ Those were both sorted.
Quote:

What CSS would I need to edit to have more static pages shown on one line in the header (using speedbar)
Re. header, in altskin.conf you could change 'header_lower_cats' to 10.

Then in altskin.css, you'll have to tweak the font-size and percentage widths of the menu items. So you'd change them from 12.5% (8 items across) to 10% (10 items). Eg.

Code:

nav.tile-nav a h2 { display: inline-block; margin: 0; font-size: 1.0em; white-space: wrap; text-overflow: ellipsis; text-transform: none; }

@media all and (min-width: 480px) {
  nav.tile-nav { display: block; text-align: center; }
  nav.tile-nav li { width: 25%; float: left; }
  nav.tile-nav a { text-align: center; padding: 10px; }
}

@media all and (min-width: 768px) {
  nav.tile-nav li { width: 20%; }
  nav.tile-nav a { text-align: center; padding: 15px; }
}

@media all and (min-width: 1200px) {
  nav.tile-nav li { overflow: visible; width: 10%; }
  nav.tile-nav a { text-align: center; padding: 15px; }
}



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

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