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 - reBOOT - Responsive Template (https://forum.x-cart.com/showthread.php?t=66570)

xcesiv 11-25-2015 06:12 PM

Re: X-Cart - reBOOT - Responsive Template
 
I am having a slight issue with the Google Maps Location Map

If you go to maps.google.com and type in my business name you get the marker to the right location and can get the correct directions

If you type in my physical address into Google maps 157-161 Beresford Road, Lilydale, Victoria your directed to the back of the factory estate and the directions to our location is wrong

Google has been less than helpful in rectifying the issue so i need to make a work around.
I think the map is a good addition to the page, but until i can get this sorted i have to leave it off.

Freakmode 11-26-2015 09:07 AM

Re: X-Cart - reBOOT - Responsive Template
 
Phil - how exactly does the countdown work? If I put in
2015,11,26,23,59,59 which is end of play today it tells me I have 4 weeks and 2 days etc.

Have I misunderstood how this works?

futurac 11-26-2015 09:09 AM

Re: X-Cart - reBOOT - Responsive Template
 
HA HA, had same issue
check carefull, January is NOT 01, but 00, so november will be 10 and not 11.. this will solve the issue

PhilJ 11-27-2015 04:42 AM

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

I have been working on the front page layout and having issues with bottom banners not bring responsive on my Samsung Note 3. Using Chrome simulation mode it does the same thing and is not responsive
If you're adding custom banners, add class="img-responsive" to the IMG tag to make responsive. If using the QT banners module, then images should be responsive out of the box.

Quote:

I am having a slight issue with the Google Maps Location Map
Your address in general settings > company should be as accurate as possible.

By enlarge, the map displays locations accurately, but occasionally if an address shares post/zip code with close addresses, the map pin will not be accurate also.

Alternatively, you can just embed a custom Google map with more precise longitude/latitude coordinates, by replacing this code in skin/reboot/customer/help/location_map.tpl ...
Code:

<div class="google-map"
    data-address="{$config.Company.location_address} {$config.Company.location_city} {$config.Company.location_state_name} {$config.Company.location_zipcode} {$config.Company.location_country}"
    data-height="{$config.Reboot.reboot_contact_map_height}px"
    data-type="{$config.Reboot.reboot_contact_map_type}"
    data-zoom="{$config.Reboot.reboot_contact_map_zoom}"
    data-lang="{$shop_language|lower}"
    data-width="100%">
</div>


netmagik 12-01-2015 01:18 AM

Re: X-Cart - reBOOT - Responsive Template
 
I am having an issue where xBanners is preventing the share buttons from displaying (all buttons except Facebook) - does anyone else experience this? Phil says its xBanners and when I disable xBanners indeed the sharing buttons come back. The xcart store think the conflict relates to the sharing buttons ...but it would be great to use xBanners with this theme so banners can be scheduled automatically.

Any tips / ideas would be much appreciated!

xcesiv 12-01-2015 12:54 PM

Re: X-Cart - reBOOT - Responsive Template
 
On certain screens and browsers the top website banner doesn't go completely across the browser


https://www.pureimage.com.au/

Is there an easy way to make this happen. Either create the background to always be full size and have the logo separate or edit the template so it resizes the header bar to match the screen

Thanks

Warren

xcesiv 12-01-2015 01:03 PM

Re: X-Cart - reBOOT - Responsive Template
 
I have used the Category page to make a detail page about my product.

I was wondering if there is an easy way to create a slider, or similar form of Gallery, of random images that are already uploaded in the Image Gallery
Grabs Images randomly or say grabs the newest 6 images from the Gallery. Save me updating the page every time i want to make it look fresh

Page: https://www.pureimage.com.au/Vehicle-Paint-Protection/
Image Gallery of photos i wish to include: https://www.pureimage.com.au/Image-Gallery.html#Vehicle Paint Protection

Thanks

PhilJ 12-02-2015 12:52 AM

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

Is there an easy way to make this happen. Either create the background to always be full size and have the logo separate or edit the template so it resizes the header bar to match the screen
In skin/reboot/css/reboot.css replace...
Code:

.header-logo { max-width: 100%; height: auto; }
with...
Code:

.header-logo { max-width: 100%; width: 100%; height: auto; }
Quote:

I was wondering if there is an easy way to create a slider, or similar form of Gallery, of random images that are already uploaded in the Image Gallery
Assuming your page is a static page, in pages.php add this code before ?> ...
Code:

# Get Random Gallery Images from a Specific Folder
$rgidir = "uploads/Gallery/Vehicle Paint Protection/";
$rgi = glob($rgidir . "*.jpg");
shuffle($rgi);
$smarty->assign(rgimages, $rgi);

Then use this code in your static page...
Code:

<div class="carousel-images">
{foreach from=$rgimages item=image name=image}
{if $smarty.foreach.image.iteration lt 4}
<div><p><a class="lbox" href="{$image}"><img class="img-responsive" src="{$image}" alt="{$image}"></a></p></div>
{/if}
{/foreach}
</div>

The above will display 3 random images. May need tweaking depending on the size of your images.

If you want a different style carousel, replace...
Code:

<div class="carousel-images">
with...
Code:

<div class="carousel-main">

xcesiv 12-04-2015 01:43 PM

Re: X-Cart - reBOOT - Responsive Template
 
Hi Phil.

I had a client submit a testimonial. When they did i received the email asking to approve. This is a great feature except when you click the "HERE" button in the email the link is wrong

I beleive it should be "/admin/reboot_testimonials_admin.php" but goes to "/admin/reboot_testimonials.php"

Can you direct me to where this can be fixed

Thank you

PhilJ 12-05-2015 01:31 AM

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

This is a great feature except when you click the "HERE" button in the email the link is wrong
Thanks for reporting. Edit lines 237 & 276 of testimonial_send.php - Replace reboot_testimonials.php with reboot_testimonials_admin.php


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

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