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)

elmirage001 01-26-2019 07:25 AM

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

Thank you so much! You and reBOOT are always worth the wait :D/

Looking forward for reDUX too!

Thanks for everything you do!

Paul

elmirage001 02-22-2019 07:07 AM

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

Originally Posted by PhilJ
Hi folks, reBOOT has been updated for v4.7.10. Apologies for the delay.
  • Updated for X-Cart v4.7.10
  • Bootstrap and Bootswatch themes updated to v3.4.0
  • Blog addon tested with Wordpress v5.0.3
  • HTML minifier tweaked to ignore JS
  • Improved uploads manager
Download

Demo

Meanwhile development of reDUX continues...

Hi Phil !

Thank you so much for the incredible amount of work and improvements you've made over the versions. We're almost done converting the 4.6.6 version of reBOOT to the new 4.7.10 version and we couldn't be happier with the results. I've done a large number of tweaks over the years and even though I have no background in coding, your clean and organized structure allows me to always accomplish what I'm trying to do. I also see where you put in extra work you didn't have to in order to make areas cleaner and easier for our customers.

Thank you again so much! Again!

Paul

elmirage001 02-28-2019 09:53 AM

Re: X-Cart - reBOOT - Responsive Template
 
Hello fellow reBOOTers!

We're up and running on reBOOT 4.7.10 and PHP 7.2 with no issues. :D

PM me is you'd like to take a look.

What a fantastic template! Thanks Phil!

Paul

1994Z28 03-26-2019 08:55 AM

Re: X-Cart - reBOOT - Responsive Template
 
Is anyone using the Reboot skin (4.7.9) having trouble with canonical link tags? An SEO tool we use reported that:


"Canonical Tag
Importance
Easy to Solve
Webpage and canonical link tag points to different URLs.

Website url:

https://www.company.com/Widgets-and-things/

Url found in the canonical link tag:
https://www.company.com/https://www.company.com/Widgets-and-things/
"


It looks like it is duplicating the main url before the complete page url somehow.


Reading this thread from 2015 Phil said to replace some code in /reboot/custom/reboot_service_head.tpl

The relevant code in our reboot_service_head.tpl file is currently:


{if $homepage}
<link rel="canonical" href="{$current_location}" />
<link rel="prerender prefetch" href="{$current_location}">
{elseif $main eq "reboot_blog"}
<link rel="canonical" href="http://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_ URI}" />
<link rel="prerender prefetch" href="http://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_ URI}" />
{else}
<link rel="canonical" href="{$current_location}/{$canonical_url}" />
<link rel="prerender prefetch" href="{$current_location}/{$canonical_url}" />
{/if}



Any ideas how to fix this with my limited X-Cart knowledge?

PhilJ 03-26-2019 09:01 AM

Re: X-Cart - reBOOT - Responsive Template
 
skin/reboot/custom/reboot_service_head.tpl

Replace...
Quote:

<link rel="canonical" href="{$current_location}/{$canonical_url}" />
<link rel="prerender prefetch" href="{$current_location}/{$canonical_url}" />
with..
Quote:

<link rel="canonical" href="https://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_ URI}" />
<link rel="prerender prefetch" href="https://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_ URI}" />
Check skin/reboot/customer/bread_crumbs.tpl also...

Replace...
Quote:

<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="url" content="{$current_location}/{$canonical_url}"></span><span itemprop="title">{$l.0|amp}</span></li>
With...
Quote:

<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="url" content="https://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_ URI}"></span><span itemprop="title">{$l.0|amp}</span></li>

elmirage001 04-25-2019 08:56 AM

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

Can we go ahead and do the x-cart jquery security update or do we need to wait for any reBOOT updates first?

Thanks!

Paul

PhilJ 04-25-2019 09:48 AM

Re: X-Cart - reBOOT - Responsive Template
 
Hi Paul, you can go ahead and apply the security patch (security-jquery-sql_injection-2019-04-25). I've just applied it on the demo. I can't foresee any issues with jQuery plugins, but let me know if you come across any.

Meanwhile, I'll be updating reBOOT for v4.7.11 when I get chance and let y'all know here.


reDUX is still coming.......

1994Z28 05-08-2019 08:29 AM

Re: X-Cart - reBOOT - Responsive Template
 
Phil, we tried this change you suggested for canonical links, but after replacing the code in skin/reboot/custom/reboot_service_head.tpl the site won't load. Any ideas? Here's the latest relevant code (original code is commented out):



{if $homepage}
<link rel="canonical" href="{$current_location}" />
<link rel="prerender prefetch" href="{$current_location}">
{elseif $main eq "reboot_blog"}
<link rel="canonical" href="http://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_ URI}" />
<link rel="prerender prefetch" href="http://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_ URI}" />
{else}
{* <link rel="canonical" href="{$canonical_url}" />
<link rel="prerender prefetch" href="{$canonical_url}" /> *}
<link rel="canonical" href="https://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_ URI}" />
<link rel="prerender prefetch" href="https://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_ URI}" />
{/if}

PhilJ 05-09-2019 03:52 AM

Re: X-Cart - reBOOT - Responsive Template
 
skin/reboot/custom/reboot_service_head.tpl

This should be sufficient...
Code:

{if $homepage}
<link rel="canonical" href="{$current_location}" />
<link rel="prerender prefetch" href="{$current_location}">
{else}
<link rel="canonical" href="https://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_URI}" />
<link rel="prerender prefetch" href="https://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_URI}" />
{/if}


1994Z28 05-09-2019 05:56 AM

Re: X-Cart - reBOOT - Responsive Template
 
Thanks Phil, that change worked. However, after I also made the other change you suggested to skin/reboot/customer/bread_crumbs.tpl...


<li itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><span itemprop="url" content="https://{$smarty.server.HTTP_HOST}{$smarty.server.REQUEST_ URI}"></span><span itemprop="title">{$l.0|amp}</span></li>



... it won't load. Any thoughts?


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

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