Jump to content

Just to show you


Guest

Recommended Posts

Keeping CartCart Mods Free

Well as you pointed out in another thread, you are not a "speller". But I think you might want to fix the above title on your page to "CubeCart" B)

Also... I have a request for a mod to your mod... For the Back/Next button, which was changed from the Fist/Last button, could you leave the First/Last buttons and add the Back/Next buttons as well? I haven't looked at any of the code for that, but I wouldn't figure it would be very difficult if you've already done the Back/Next buttons...

Link to comment
Share on other sites

No I have not done this. But I think it will be a easy mod.. I will try it out and if so then I will post it :-)...

Yeah spelling was not my best subject B)

But Programming IS :)

Anyways

Link to comment
Share on other sites

Ok yes it is easy.. here is the new code till i write the file

Follow the next button mod BUT replace with this code

english.inc.php

$la_store_prev = "Back";

$la_store_next = "Next";

$la_store_last = "Last »";  // » is >>

$la_store_first = "&laquo; First"; // &laquo; is <<

Index.php

if($page != 1)

                                        {

                                                $pageprev = $page - 1;

echo"<ahref=\"$PHP_SELFpage=1&cat_id=$cat_id\">$la_store_first</a>&nbsp;");

echo("<ahref=\"$PHP_SELFpage=$pageprev&cat_id=$cat_id\"><b>$la_store_prev</b></a>&nbsp;");

                                        }

{

                                                $pagenext = $page + 1;

echo("&nbsp;<ahref=\"$PHP_SELFpage=$pagenext&cat_id=$cat_id\"><b>$la_store_next</b></a>");

echo("&nbsp;<ahref=\"$PHP_SELFpage=$numofpages&cat_id=$cat_id\">$la_store_last</a>");

                                        }

I will write up the install file soon :-)

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...