X-Cart: shopping cart software

X-Cart forums (https://forum.x-cart.com/index.php)
-   Dev Questions (https://forum.x-cart.com/forumdisplay.php?f=20)
-   -   The universal solution "Continue Shopping Button" (https://forum.x-cart.com/showthread.php?t=39603)

imexhouse 09-16-2008 08:46 AM

Re: The universal solution "Continue Shopping Button"
 
Yurij,

I sent you a PM with the hidden product url.

Thanks,

Yurij 09-17-2008 03:00 AM

Re: The universal solution "Continue Shopping Button"
 
Quote:

Originally Posted by imexhouse
Yurij,

I sent you a PM with the hidden product url.

Thanks,


As i told problem was in "DSEFU" mods )))

imexhouse 09-17-2008 03:17 AM

Re: The universal solution "Continue Shopping Button"
 
Thanks for looking into this.
I think it's better for me to give my customers a link that's already converted to an html form. That way, I won't have to deal with the issue.

Jack

imexhouse 09-17-2008 03:27 PM

Re: The universal solution "Continue Shopping Button"
 
Yurij,

I went to skin1/main/product_details.tpl and commented out the part in red:

{if $product.forsale eq 'H'}
<TR>
{if $productids ne ''}<TD width="15" class="TableSubHead"><INPUT type="checkbox" value="Y" name="fields[categoryids]"></TD>{/if}
<TD class="FormButton" nowrap>{$lng.lbl_product_url}:</TD>
<TD class="ProductDetails">{$catalogs.customer}/product.php?productid={$product.productid}{*&cat={$product.categoryid}*}</TD>
</TR>
{/if}

It seems to work well, and I don't end up with the &cat=253 at the end of the url string.

Can anybody see any downside to this modification?

Yurij 09-18-2008 12:16 AM

Re: The universal solution "Continue Shopping Button"
 
Quote:

Originally Posted by imexhouse
Yurij,

I went to skin1/main/product_details.tpl and commented out the part in red:

{if $product.forsale eq 'H'}
<TR>
{if $productids ne ''}<TD width="15" class="TableSubHead"><INPUT type="checkbox" value="Y" name="fields[categoryids]"></TD>{/if}
<TD class="FormButton" nowrap>{$lng.lbl_product_url}:</TD>
<TD class="ProductDetails">{$catalogs.customer}/product.php?productid={$product.productid}{*&cat={$product.categoryid}*}</TD>
</TR>
{/if}

It seems to work well, and I don't end up with the &cat=253 at the end of the url string.

Can anybody see any downside to this modification?



no, because:

product.php?productid=1111
<=>
product.php?productid=1111 &cat=0
<=>
product.php?productid=1111 &cat=0&page=0

imexhouse 09-18-2008 03:56 AM

Re: The universal solution "Continue Shopping Button"
 
So, what you're saying is I shouldn't have any problems?

Yurij 09-18-2008 05:08 AM

Re: The universal solution "Continue Shopping Button"
 
Quote:

Originally Posted by imexhouse
So, what you're saying is I shouldn't have any problems?


Yes. To view the product enough to know his ID.

glsp 09-21-2008 08:02 PM

Re: The universal solution "Continue Shopping Button"
 
I added a file "continue_shopping.tpl" in /skin1/buttons so I could use the Continue Shopping link at the top and bottom of my cart:
PHP Code:

{include file="buttons/button.tpl" button_title=$lng.lbl_continue_shopping href="$back_url"


My store is straight forward, so the only pages a customer could come from that would make sense to return to are category pages and product pages, so in cart.php, I have:
PHP Code:

#
# Continue Shopping link
#
x_session_register("back_url");
$referrer $_SERVER['HTTP_REFERER'];
if (
strpos($referrer"home.php") || strpos($referrer"product.php"))
{
    
$back_url $referrer;
}
else if (!
$back_url) {
    
$back_url 'home.php';
}

$smarty->assign("back_url"$back_url);
# End Continue Shopping 


Yurij 09-22-2008 12:15 AM

Re: The universal solution "Continue Shopping Button"
 
Quote:

Originally Posted by glsp
I added a file "continue_shopping.tpl" in /skin1/buttons so I could use the Continue Shopping link at the top and bottom of my cart:
PHP Code:

{include file="buttons/button.tpl" button_title=$lng.lbl_continue_shopping href="$back_url"


My store is straight forward, so the only pages a customer could come from that would make sense to return to are category pages and product pages, so in cart.php, I have:
PHP Code:

#
# Continue Shopping link
#
x_session_register("back_url");
$referrer $_SERVER['HTTP_REFERER'];
if (
strpos($referrer"home.php") || strpos($referrer"product.php"))
{
    
$back_url $referrer;
}
else if (!
$back_url) {
    
$back_url 'home.php';
}

$smarty->assign("back_url"$back_url);
# End Continue Shopping 



strpos($referrer, "product.php") - will don't work with url rewrite mods (DSEFU, CDSEO and etc).

glsp 09-22-2008 12:49 AM

Re: The universal solution "Continue Shopping Button"
 
Quote:

Originally Posted by Yurij
strpos($referrer, "product.php") - will don't work with url rewrite mods (DSEFU, CDSEO and etc).

Yurij - There has been some discussion in this thread about interoperability with certain mods. I don't see how your comment adds to the the discussion. If this is something that concerns you, you could offer your own clever version.

glsp 09-25-2008 07:54 PM

Re: The universal solution "Continue Shopping Button"
 
My client requested that the visitor be returned to the last category they were viewing, rather than the last product or any other page. I decided to stick this near the bottom of my auth.php file so the last category info would follow the visitor around the site (removing the other code from cart.php):
PHP Code:

#
# Custom code: Continue Shopping link
#
x_session_register("last_cat");
$referrer $_SERVER['HTTP_REFERER'];
if (
strpos($referrer"home.php")) {
    
$last_cat $referrer;
}
else if (!
$last_cat) {
    
$last_cat 'home.php';
}
$smarty->assign("back_url"$last_cat);
# End Continue Shopping 


Yurij 09-26-2008 12:36 AM

Re: The universal solution "Continue Shopping Button"
 
Quote:

Originally Posted by glsp
My client requested that the visitor be returned to the last category they were viewing, rather than the last product or any other page. I decided to stick this near the bottom of my auth.php file so the last category info would follow the visitor around the site (removing the other code from cart.php):
PHP Code:

#
# Custom code: Continue Shopping link
#
x_session_register("last_cat");
$referrer $_SERVER['HTTP_REFERER'];
if (
strpos($referrer"home.php")) {
    
$last_cat $referrer;
}
else if (!
$last_cat) {
    
$last_cat 'home.php';
}
$smarty->assign("back_url"$last_cat);
# End Continue Shopping 



What should happen if the transition to the cart was made from the page - Manufacture, search or etc.?

glsp 09-26-2008 03:50 PM

Re: The universal solution "Continue Shopping Button"
 
In this case, transfers from those pages would not be counted. We don't use Manufacturers, but you could add conditions to check for any page to go back to. In the case of search, the code could be:
PHP Code:

x_session_register("last_cat");
$referrer $_SERVER['HTTP_REFERER'];
if (
strpos($referrer"home.php") || strpos($referrer"search.php")) {
    
$last_cat $referrer;
}
else if (!
$last_cat) {
    
$last_cat 'home.php';
}
$smarty->assign("back_url"$last_cat); 


ewebartist 10-01-2008 06:18 PM

Re: The universal solution "Continue Shopping Button"
 
Yurij,

The code works perfectly in X-cart 4.1.11. Excellent work, thank you for sharing it with the X-cart community!

Best regards,
e-webartist

TanyaG 10-15-2008 03:23 AM

Re: The universal solution "Continue Shopping Button"
 
Great job. Thank you so much for sharing. Is it any chance to send customers back into root directory instead of subcategory?

Many thanks

Yurij 10-15-2008 05:57 AM

Re: The universal solution "Continue Shopping Button"
 
Quote:

Originally Posted by TanyaG
Great job. Thank you so much for sharing. Is it any chance to send customers back into root directory instead of subcategory?

Many thanks


Try change in "cart.php" code for universal solution "Continue Shopping Button" by this:

PHP Code:

#back URL when cont. shoping:

x_session_register("back_url");
if (
$mode == "add")
{
    
$back_url $_SERVER['HTTP_REFERER'];

    
$id intval($productid);
    if (
$id>0) {
        
$cat_path func_query_first_cell("select categoryid_path from $sql_tbl[products_categories]$sql_tbl[categories] where (productid = $id)and(main='Y')and($sql_tbl[products_categories].categoryid=$sql_tbl[categories].categoryid)");
        if (!empty(
$cat_path)) {
            
$cats_path split("/ *",$cat_path);        
            if (!empty(
$cats_path[0])) {
                
$back_url "home.php?cat=".$cats_path[0];
            }
        }
    }
}
$smarty->assign("back_url"$back_url); 


Michael Burns 10-16-2008 09:23 AM

Re: The universal solution "Continue Shopping Button"
 
X-cart total newbie here. PHP, and SQL challenged.. Could someone please post or pm me the files and the edits including making the button, and all things needed to make this work in 4.1.10. I would love the ability to send the user back to the catagory they were viewing just before they hit add to cart. Right now the only thing I can tell thim is hit their backspace key to go back to that position.

Thanks Mike

junaid 10-17-2008 02:16 AM

Re: The universal solution "Continue Shopping Button"
 
Quote:

Originally Posted by Yurij
Try change in "cart.php" code for universal solution "Continue Shopping Button" by this:

PHP Code:

#back URL when cont. shoping:

x_session_register("back_url");
if (
$mode == "add")
{
    
$back_url $_SERVER['HTTP_REFERER'];

    
$id intval($productid);
    if (
$id>0) {
        
$cat_path func_query_first_cell("select categoryid_path from $sql_tbl[products_categories]$sql_tbl[categories] where (productid = $id)and(main='Y')and($sql_tbl[products_categories].categoryid=$sql_tbl[categories].categoryid)");
        if (!empty(
$cat_path)) {
            
$cats_path split("/ *",$cat_path);        
            if (!empty(
$cats_path[0])) {
                
$back_url "home.php?cat=".$cats_path[0];
            }
        }
    }
}
$smarty->assign("back_url"$back_url); 



please let me know can it made with just last category we were on as it seems cart taking more time to load with sql above may be im wrong.

Yurij 10-17-2008 04:30 AM

Re: The universal solution "Continue Shopping Button"
 
Quote:

Originally Posted by junaid
please let me know can it made with just last category we were on as it seems cart taking more time to load with sql above may be im wrong.


Try change in "cart.php" code for universal solution "Continue Shopping Button" by this:

PHP Code:

#back URL when cont. shoping:

x_session_register("back_url");
if (
$mode == "add")
{
    
$back_url $_SERVER['HTTP_REFERER'];

    
$id intval($productid);
    if (
$id>0) {
        
$cat_path func_query_first_cell("select categoryid_path from $sql_tbl[products_categories]$sql_tbl[categories] where (productid = $id)and(main='Y')and($sql_tbl[products_categories].categoryid=$sql_tbl[categories].categoryid)");
        if (!empty(
$cat_path)) {
            
$cats_path split("/ *",$cat_path);        
            if (!empty(
$cats_path[0])) {
                
$last end($cats_path);
                
$back_url "home.php?cat=".$last;
            }
        }
    }
}
$smarty->assign("back_url"$back_url); 


This modification just add one sql query (On load the page X-cart makes 80-140 query to DB :) ).

Michael Burns 10-17-2008 06:12 AM

Re: The universal solution "Continue Shopping Button"
 
Thanks so much Yurij. Works like a charm!

Blazeland 10-17-2008 11:27 AM

Re: The universal solution "Continue Shopping Button"
 
Nice mod, works perfectly. Thanks.

JWait 10-18-2008 09:03 AM

Re: The universal solution "Continue Shopping Button"
 
Quote:

Originally Posted by Michael Burns
X-cart total newbie here. PHP, and SQL challenged.. Could someone please post or pm me the files and the edits including making the button, and all things needed to make this work in 4.1.10. I would love the ability to send the user back to the catagory they were viewing just before they hit add to cart. Right now the only thing I can tell thim is hit their backspace key to go back to that position.

Thanks Mike


Are you using Fast Lane Checkout? If so, there is a "continue shopping" button that will send the customer back to the home page. Much easier than using the backspace key :)

This mod is if you want to send the customer somewhere else, and it gets quite complicated because people want the customer to be returned to different places.

Yurij 10-22-2008 05:57 AM

Re: The universal solution "Continue Shopping Button"
 
Was Updated first page with the latest forum messages from this thread.

Michael Burns 10-22-2008 07:43 AM

Re: The universal solution "Continue Shopping Button"
 
Thanks for the help Yurij. Got it working now.

TanyaG 10-23-2008 02:23 AM

Re: The universal solution "Continue Shopping Button"
 
Thanks a lot for your help Yurij. Great work.

xsurf 11-30-2008 05:02 AM

Re: The universal solution "Continue Shopping Button"
 
Just when you would have thought all permutations have been considered, time for a new challenge :-) .

What I am trying to do is the following: if arrived to the cart by adding an item, then "continue shopping" should return me to the product category.

BUT if someon arrives to the cart in any other way (e.g. clicking on "view cart" from anywhere), then "continue shopping" should return them to the page they were on when they clicked on "view cart".

I tried
PHP Code:

x_session_register("back_url");
if (
strpos($_SERVER['HTTP_REFERER'], "cart.php") == false)
{
    
$back_url $_SERVER['HTTP_REFERER'];
}
if (
$mode == "add")

    
$id intval($productid);
       if (
$id>0
    {
           
$cat_path func_query_first_cell("select categoryid_path from $sql_tbl[products_categories]$sql_tbl[categories] where (productid = $id)and(main='Y')and($sql_tbl[products_categories].categoryid=$sql_tbl[categories].categoryid)");
        if (!empty(
$cat_path)) {
               
$cats_path split("/ *",$cat_path);        
                  if (!empty(
$cats_path[0])) {
                      
$back_url "home.php?cat=".$cats_path[0]; 
            }
        }        
    }
}

$smarty->assign("back_url"$back_url); 


but off course that just always gets me back to the page I was on before, never to the product category page, since every time cart.php?mode=add is called, it is immediately followed by a regular call to cart.php (with the referrer remaining the product detail page)...


Help? :-)

Yurij 12-02-2008 07:02 AM

Re: The universal solution "Continue Shopping Button"
 
Quote:

Originally Posted by xsurf
Just when you would have thought all permutations have been considered, time for a new challenge :-) .

What I am trying to do is the following: if arrived to the cart by adding an item, then "continue shopping" should return me to the product category.

BUT if someon arrives to the cart in any other way (e.g. clicking on "view cart" from anywhere), then "continue shopping" should return them to the page they were on when they clicked on "view cart".

I tried
PHP Code:

x_session_register("back_url");
if (
strpos($_SERVER['HTTP_REFERER'], "cart.php") == false)
{
    
$back_url $_SERVER['HTTP_REFERER'];
}
if (
$mode == "add")

    
$id intval($productid);
       if (
$id>0
    {
           
$cat_path func_query_first_cell("select categoryid_path from $sql_tbl[products_categories]$sql_tbl[categories] where (productid = $id)and(main='Y')and($sql_tbl[products_categories].categoryid=$sql_tbl[categories].categoryid)");
        if (!empty(
$cat_path)) {
               
$cats_path split("/ *",$cat_path);        
                  if (!empty(
$cats_path[0])) {
                      
$back_url "home.php?cat=".$cats_path[0]; 
            }
        }        
    }
}

$smarty->assign("back_url"$back_url); 


but off course that just always gets me back to the page I was on before, never to the product category page, since every time cart.php?mode=add is called, it is immediately followed by a regular call to cart.php (with the referrer remaining the product detail page)...


Help? :-)




I'm not sure, but try used next code (i don't tested this code enough):

PHP Code:

x_session_register("back_url");
x_session_register("skip_one_redirect");

if (
$mode == "add")

    
$id intval($productid);
    if (
$id>0
    {
           
$cat_path func_query_first_cell("select categoryid_path from $sql_tbl[products_categories]$sql_tbl[categories] where (productid = $id)and(main='Y')and($sql_tbl[products_categories].categoryid=$sql_tbl[categories].categoryid)");
         if (!empty(
$cat_path)) {
               
$cats_path split("/ *",$cat_path);        
                  if (!empty(
$cats_path[0])) {
                      
$back_url "home.php?cat=".$cats_path[0];
                
$skip_one_redirect 1
            }
        }        
    }
} else {
    if (
$skip_one_redirect==) {
        
$skip_one_redirect=0;
    } else {
        if (
strpos($_SERVER['HTTP_REFERER'], "cart.php") === false)
        {
            
$back_url $_SERVER['HTTP_REFERER'];
        }
    }
}

$smarty->assign("back_url"$back_url); 


nivag 01-14-2009 11:32 AM

Re: The universal solution "Continue Shopping Button"
 
Does anyone know how to get the same effect in 4.2 ? so that the customer goes back to the products lists and not the main home page ?

Thanks in advance !

zebragrf 02-27-2009 04:41 AM

Re: The universal solution "Continue Shopping Button"
 
I tried each one of those and they did not work for me.

Quote:

Originally Posted by Yurij
UPDATE: 22-10-2008

1. Edit file cart.php, after next lines:

PHP Code:

...........
x_session_register("dhl_ext_country_store");
x_session_register("ga_track_commerce");
x_session_register("initial_state_orders", array());
x_session_register("initial_state_show_notif""Y");
x_session_register("enter_as_anonymous"false); 


add next lines:

a) return to the last page;
PHP Code:

#back URL when cont. shoping:
x_session_register("back_url");
if (
$mode == "add")
{
    
$back_url $_SERVER['HTTP_REFERER'];
}

$smarty->assign("back_url"$back_url); 




b) Is it any chance to send customers back into ROOT directory instead of subcategory? - Yes :)

PHP Code:

#back URL when cont. shoping:

x_session_register("back_url");
if (
$mode == "add")
{
    
$back_url $_SERVER['HTTP_REFERER'];

    
$id intval($productid);
    if (
$id>0) {
        
$cat_path func_query_first_cell("select categoryid_path from $sql_tbl[products_categories]$sql_tbl[categories] where (productid = $id)and(main='Y')and($sql_tbl[products_categories].categoryid=$sql_tbl[categories].categoryid)");
        if (!empty(
$cat_path)) {
            
$cats_path split("/ *",$cat_path);        
            if (!empty(
$cats_path[0])) {
                
$back_url "home.php?cat=".$cats_path[0];
            }
        }
    }
}
$smarty->assign("back_url"$back_url); 


c) Is it any chance to send customers back into PRODUCT category? - Yes :)

PHP Code:

#back URL when cont. shoping:

x_session_register("back_url");
if (
$mode == "add")
{
    
$back_url $_SERVER['HTTP_REFERER'];

    
$id intval($productid);
    if (
$id>0) {
        
$cat_path func_query_first_cell("select categoryid_path from $sql_tbl[products_categories]$sql_tbl[categories] where (productid = $id)and(main='Y')and($sql_tbl[products_categories].categoryid=$sql_tbl[categories].categoryid)");
        if (!empty(
$cat_path)) {
            
$cats_path split("/ *",$cat_path);        
            if (!empty(
$cats_path[0])) {
                
$last end($cats_path);
                
$back_url "home.php?cat=".$last;
            }
        }
    }
}
$smarty->assign("back_url"$back_url); 


2. Edit URL for "Continue Shopping Button", exm. for Fast Lan Check Out:
Edit file: "skin1/modules/Fast_Lane_Checkout/home_main.tpl", change line:
PHP Code:

<td>{include file="modules/Fast_Lane_Checkout/big_button.tpl" button_title=$lng.lbl_continue_shopping style="button" href="home.php"}</td


replaced by this code

PHP Code:

<td>{include file="modules/Fast_Lane_Checkout/big_button.tpl" button_title=$lng.lbl_continue_shopping style="button" href="`$back_url`"}</td





PS. I would be grateful for any comments on that decision. It should almost always work.


zebragrf 02-27-2009 05:26 AM

Re: The universal solution "Continue Shopping Button"
 
For some reason, it does not affect my page. Granted, I am coming from a static page outside of x-cart but why shouldn't it go BACK to that page?

Here is the link: https://www.thinscentsonline.com/store/cart.php?keep_https=yes

balinor 02-27-2009 05:54 AM

Re: The universal solution "Continue Shopping Button"
 
Welcome to the X-Cart forums! Please start by reading the following thread, which will help you get started and hopefully make your experience here a positive one:

http://forum.x-cart.com/showthread.php?t=23970

Please note that this link is not an answer to your question, but we need you to update your signature with your X-Cart version so that we can answer your questions correctly. Thanks! :)

nivag 02-27-2009 07:11 AM

Re: The universal solution "Continue Shopping Button"
 
It does affect your store... I added a product to the basket - clicked on Contineu Shopping and went back to home page instead of previous page ...

zebragrf 02-27-2009 07:25 AM

Re: The universal solution "Continue Shopping Button"
 
Quote:

Originally Posted by nivag
It does affect your store... I added a product to the basket - clicked on Contineu Shopping and went back to home page instead of previous page ...


It was already doing that. The process did not change. What I am looking for is to go back to the custom page where I clicked to add the product(s) to the cart.

I don't want it to go back to the home page of X-Cart. I want it to go back to my page.

Stizerg 04-11-2009 08:10 AM

Re: The universal solution "Continue Shopping Button"
 
If you use CDSEO Pro try this:

open modules/cdseolinks/cdseo_config.php
Find
PHP Code:

/****************************************************************************************
| Function: wcmcdseoType 


Before add
PHP Code:

#back URL when cont. shoping:
x_session_register("back_url");
if (
strpos($wcmcdseoUrlVar"cart.php")==false) {
    
$back_url $wcmcdseoUrlVar;
}
$smarty->assign("back_url"$back_url); 
#--- 


And now doesn't mater on which page you hit 'View Cart', 'Continue shopping' will always push you back to that page.

Try it on my site, I hope you can find some bugs in there.

Those folks who don't use CDSEO Pro, can get this mod for $139.99 O:)

minfinger 04-21-2009 08:54 PM

Re: The universal solution "Continue Shopping Button"
 
Would love to know how to do this in 4.2

minfinger 04-24-2009 05:42 AM

Re: The universal solution "Continue Shopping Button"
 
Victor,

The following does exist in my "skin1/modules/Fast_Lane_Checkout/home_main.tpl" or in the 4.2 zip file.
Code:

<td>{include file="modules/Fast_Lane_Checkout/big_button.tpl" button_title=$lng.lbl_continue_shopping style="button" href="home.php"}</td>


Here is mine:
Code:

{*
$Id: home_main.tpl,v 1.7 2008/09/22 07:31:18 max Exp $
vim: set ts=2 sw=2 sts=2 et:
*}
{if $checkout_step eq 0}
{include file="modules/Fast_Lane_Checkout/checkout_0_enter.tpl"}

{elseif $checkout_step eq 1}
{include file="modules/Fast_Lane_Checkout/checkout_1_profile.tpl"}

{elseif $checkout_step eq 2}
{include file="modules/Fast_Lane_Checkout/checkout_2_method.tpl"}

{elseif $checkout_step eq 3}
{include file="modules/Fast_Lane_Checkout/checkout_3_place.tpl"}

{else}

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

{/if}


Victor D 04-24-2009 07:05 AM

Re: The universal solution "Continue Shopping Button"
 
try
skin1/modules/Fast_Lane_Checkout/home.tpl

{include file="customer/buttons/button.tpl" button_title=$lng.lbl_continue_shopping style="div_button" href="home.php" additional_button_class="flc-1-button"}

TanyaG 04-27-2009 03:05 AM

Re: The universal solution "Continue Shopping Button"
 
Quote:

Originally Posted by Yurij
I'm not sure, but try used next code (i don't tested this code enough):

PHP Code:

x_session_register("back_url");
x_session_register("skip_one_redirect");
 
if (
$mode == "add")

$id intval($productid);
if (
$id>0
{
$cat_path func_query_first_cell("select categoryid_path from $sql_tbl[products_categories]$sql_tbl[categories] where (productid = $id)and(main='Y')and($sql_tbl[products_categories].categoryid=$sql_tbl[categories].categoryid)");
if (!empty(
$cat_path)) {
$cats_path split("/ *",$cat_path); 
if (!empty(
$cats_path[0])) {
$back_url "home.php?cat=".$cats_path[0];
$skip_one_redirect 1
}

}
} else {
if (
$skip_one_redirect==) {
$skip_one_redirect=0;
} else {
if (
strpos($_SERVER['HTTP_REFERER'], "cart.php") === false)
{
$back_url $_SERVER['HTTP_REFERER'];
}
}
}
 
$smarty->assign("back_url"$back_url); 




Hi Yurij, is it any chance you could help me to display just previous main catid?

Many thanks,

Tanya

minfinger 04-27-2009 03:57 AM

Re: The universal solution "Continue Shopping Button"
 
Victor,

Thanks for the help it worked.

I used to go back to category option, works great.

AusNetIT 04-30-2009 09:24 PM

Re: The universal solution "Continue Shopping Button"
 
Hi All,

Like to install but Can i see any store using this mod?

Thanks,


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

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