Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Recommended Posts

Posted

Hi:

 

I am skining my oscommerce 2.3 file by file, and I am making a module for am improved cat listing on index (only certain cats).

 

I want to know, if there is a fast way, from a categories ID, to get the full cat for making the URL to it.

 

From a given categories number, IE:

Category id 4817

Full path to 4817 21_29_4751_4746_4817

 

Is there any other way to make the URL link o a given cat? or to generate the full cPath from a cat id?

 

I hope I explained myself correctly.

Posted

Finaly I wrote a quite simple function, with works fine for me.

I only call that function if cPath does not contain "_" string.

 

 

function get_full_cat_from_cPath ($zipote)
{

$query_trabajo_1=tep_db_query("SELECT `parent_id` FROM `categories` WHERE `categories_id` =  '" . $zipote . "'");
$land = tep_db_fetch_array($query_trabajo_1);
$cat_completa = $zipote;
while (! $land[parent_id] == 0) {
$query_ciclica=tep_db_query("SELECT `parent_id` FROM `categories` WHERE `categories_id` =  '" . $land[parent_id] . "'");
$land=tep_db_fetch_array($query_ciclica);
if (! $land[parent_id] == 0) {
$cat_completa = $land[parent_id] . '_' . $cat_completa;
}
}
return $cat_completa;
}

Posted

Wouldn't it be easier to just use

substr(tep_get_path($category_id), 6)

Regards

Jim

See my profile for a list of my addons and ways to get support.

Posted

Documentation on the code? No, you just have to read through it. It gets easier with experience.

 

Regards

Jim

See my profile for a list of my addons and ways to get support.

  • 1 year later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
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...