Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

[CONTRIBUTION] Subcategory textboxes


chris23

Recommended Posts

Nope...it's there. Tha twas the first place I looked when this problem came up :(

Any other suggestions?

 

If the define is in admin/includes/filenames.php, I can't see why your url is admin/FILENAME_CATEGORIES_EXTRA

 

You haven't put it in catalog/includes/filenames.php? (I'm forever doing this ......)

 

HTH

 

Chris

Please use forum for support rather than PM - PMs unrelated to my contributions will be ignored.

Google Site Search is your friend

My contributions: Tracking Module | PDF Customer Invoice | Subcategory textboxes

Link to comment
Share on other sites

  • Replies 269
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Posted Images

  • 2 weeks later...

Hi Chris

 

Long time no speak - that's because the contrib has been working perfectly since I installed it last november

 

.... but an issue has come up this morning, I suspect it's been triggered from the hosts (not godaddy btw) after they had a server crash yesterday.

 

 

Logging into admin this morning I first spotted the admin area text box line had changed from Subcategory textboxes to FILENAME_blah blah - that was an easy fix. It did make me go through an install verification, checking all the file mods were still in place and that the database was intact.

 

In admin, when I click on Subcats to add/edit a textbox, I get the following error

 

1146 - Table 'gazlanna.TABLE_EXTRA_CATEGORIES' doesn't exist

select categories_description.categories_id, categories_name from categories left join categories_description using (categories_id) left join TABLE_EXTRA_CATEGORIES on TABLE_EXTRA_CATEGORIES.categories_id = categories_description.categories_id where TABLE_EXTRA_CATEGORIES.categories_id is null and categories_description.language_id=1 order by categories_name

[TEP STOP]

 

and it's got me completely stumped.

 

I've been right through this thread with a fine toothcomb and can't see the answer, and I've thoroughly doublechecked everything that should be in the files is there. Maybe I need new specs?

 

The table exists in the database, the category_id is there in configuration_group, it's referenced correctly in the configuration table (all 4 entries present and correct). But for some reason, the products_extra_info table is not being seen. The relevant entries are in filenames and database_tables php's.

 

Can you give me a clue on this?

 

Thanks

Gaz

 

 

:-" Don't worry about it - found it

 

(the old "did you do the database_tables.php file in admin/includes or catalogue/includes before 3rd coffee?" trap)

 

:'(

Edited by totalnumpty

Wearing a seatbelt prevents head injuries when the computer crashes - - - Yeah Right!!! - not in this office.

Link to comment
Share on other sites

I am trying to install this contribution but I cannot find the following line in my catalog/index.php page. I am certain it is not there since I did a search for the exact line:

 

<tr>

<td><?php echo tep_draw_separator('pixel_trans.gif', '100%', '10'); ?></td>

</tr>

 

Is there a workaround for this? Any help would be much appreciated. Thanks!

Link to comment
Share on other sites

I am trying to remove the sub category text links from the center of my video link page I have tried different things and still it won’t disappear. If I click on the text It shows the picture and info so the pics seem to all be there but that’s not what I want. I just want picture links on center of page and the Featured products banner at the top of page not in the middle. This is the link for video page I have milston2.2

 

http://nickelwise.net/index.php?cPath=210

 

Any help would be appreciated and Thank you in advance for your help

 

dtucker40

Link to comment
Share on other sites

Hello Chris,

 

First thanks alot for this fabulous contribution :thumbsup:

 

I have just one question, is it possible to add php codes inside div?

 

I tried to add something like this, but the php scripts are totally ignored

 

<div class="subcats">		
<table width="785" height="300" border="0" cellspacing="0" cellpadding="0" class="index_bg1" >
 <tr>
<td width="360" rowspan="2" valign="top" style="padding-left:40;">
<?php echo '<a href="' . tep_href_link(FILENAME_SPECIALS, 'categories_id=413', NONSSL) . '"><img src="images/design/forside_intro/laptop.png" alt="TOMTOM ONE XLT EUROPE" name="TOMTOM ONE XLT EUROPE" border="0" id="TOMTOM ONE XLT EUROPE"></a>'; ?>
</td>
<td width="425" height="210" valign="top" style="padding-top:30; padding-right:35;">
<div class="main40">Laptops on sale</div>
<div class="main15" style="padding-top:10;">
dummy text dummy text dummy text dummy text dummy text dummy text dummy text dummy text dummy text dummy text dummy text dummy text </div>
<div class="newPrice" style="padding-top:20;">
Some other dummy text dummy text</div></td>
 </tr>
 <tr>
<td height="90" valign="top" style="padding-top:30; padding-right:35;" align="right"><?php echo '<a href="' . tep_href_link(FILENAME_SPECIALS, 'categories_id=413', NONSSL) . '">' . tep_image_button('show_new.gif' ) . '</a></p>'; ?></td>
 </tr>
</table>
</div>

 

Regards

Adam

?,???`???,?? God must love stupid people, he made so many ??,???`???,?

Link to comment
Share on other sites

I have just one question, is it possible to add php codes inside div?

 

I tried to add something like this, but the php scripts are totally ignored

 

This was answered in a PM so I'm posting the solution here if anyone else wants PHP code in a a text box parsed:

 

First, you MUST have valid PHP syntax within the textbox or the whole page will fail

 

That said, if you want to try parsing the PHP, you can use eval() (see php.net for gory details):

 

EDIT includes/modules/products_extra_category.php

 

FIND:

 

echo ("<tr><td class=\"main\"><div class=\"cat_info_box\">".$category_info_text['categories_description']."</div></td></tr>");

 

REPLACE WITH:

 

eval("?><tr><td class=\"main\"><div class=\"cat_info_box\">" . $category_info_text['categories_description'] . "</div></td></tr>");

 

EDIT admin/products_extra_category.php

 

 

REPLACE THE FUNCTION tep_display_truncated with the following:

 

 

function tep_display_truncated($string, $length = CAT_TEXT_PREVIEW, $suffix = TRUNC_TEXT) {

	ob_start(); // eval returns null, so send eval'd output to buffer ..
	eval("?>$string");
	$string = ob_get_contents(); // capture evaled output to $string and process as before
	ob_end_clean();
	$string = strip_tags($string); // remove any html (eg if using TinyMCE)

	if (strlen($string) > $length) {
		return substr($string, 0, $length).$suffix;
	} else {
		$reslt = $string;
	}
	return $reslt;
}

 

CAVEATS:

 

- I've tested this successfully on some basic PHP code snippets both shop side and admin side

- The shop side php includes should function but admin side preview may fail. If this happens revert to the old tep_display_truncated function. You just won't get a preview

- eval() ing PHP code is considerably slower that normal execution (the page is effectively parsed twice). You'll need to see if this is a significant issue.

- BACK UP THE TWO FILES FIRST

 

HTH

Please use forum for support rather than PM - PMs unrelated to my contributions will be ignored.

Google Site Search is your friend

My contributions: Tracking Module | PDF Customer Invoice | Subcategory textboxes

Link to comment
Share on other sites

I recently installed your contribution. Adding to my site and files went quite smoothly. Thank you for the clear and simple instructions.

 

I also have the Graphical Borders contribution in place on my site.

 

Can you help me modity yours a bit to work with my graphical borders?????

 

When I installed your contrib. it shows up as a seperate box below or above my categories... This is fine. I want the border to match the rest of my site. I tried deleting the border from the css part of your contrib. but I don't like having it float... Prefer it be bordered.

 

I don't know how to make the css part work with the css part of the other contrib.

 

 

<?php

// category textbox mod

if (DISPLAY_EXTRA_CATEGORIES == 'true' && DISPLAY_CATS_ON_PROD_LISTING == 'true'){

if ($product_check['total'] >= 1) {

// now get textbox description for this *product* and display

$query = tep_db_query("select categories_description from " . TABLE_EXTRA_CATEGORIES . " left join " . TABLE_PRODUCTS_TO_CATEGORIES . " using (categories_id) where " . TABLE_PRODUCTS_TO_CATEGORIES .".products_id=" . (int)$HTTP_GET_VARS['products_id'] . " and " . TABLE_EXTRA_CATEGORIES .".language_id = '" . (int)$languages_id . "'");

while($category_info_text = tep_db_fetch_array($query)){

if(!empty($category_info_text['categories_description'])){ // prevent output where description not set for particular language

echo ("<tr><td colspan=\"2\"><div class=\"cat_info_box\">".$category_info_text['categories_description']."</div></td></tr>");

}

}

}

}

?>

 

Here the echo part refers to the stylesheet. Your part of the contrib.

 

The products_extra_category.php in the modules part of your contrib has a similar css reference.

 

Here is my stylesheet showing the Graphical Border mod with your mod just below it...

 

/* Graphical Borders - boxes main modules and file-pages - Star */

.mws_boxTop_main { background: url('images/infobox_main/top.gif');

font-family: Verdana, Arial, sans-serif;

font-size: 14px;

text-align : center;

font-weight: bold;

background-repeat:repeat-x;

vertical-align: middle;

white-space: nowrap; }

.mws_boxLeft_main { background: url('images/infobox_main/left.gif'); }

.mws_boxRight_main { background: url('images/infobox_main/right.gif'); }

.mws_boxBottom_main { background: url('images/infobox_main/bot.gif');

font-family: Verdana, Arial, sans-serif;

font-size: 11px;

text-align : center;

vertical-align: middle;

white-space: nowrap; }

.mws_boxCenter_main { background: #FFFFFF; }

/* Graphical Borders - boxes main modules and file-pages - End */

 

/* category information boxes */

 

.cat_info_box { font-size: 11px; font-family: Verdana, Arial, sans-serif; font-weight: normal; background: #fff6e6; margin-bottom: 10px; padding: 8px; border: solid 1px #063 }

 

How can I combine them... Or make yours have the graphics for the border???

 

I do not know php or css. All I do is cut and paste. Any help would be appreciated.

 

I think both these mods would be excellent together.

Link to comment
Share on other sites

@ timeless

 

I'm just about to try the graphical borbers contrib on a new RC2a site - which version did you put it into?

.... and how did it go? Was it painless?

 

 

I'm also hoping to add the subcat text boxes contrib afterwards (I already have it on an RC1 site and love it - couldn't build sites without it now and reckon it should be added to the core package).

 

 

@ Chris

 

I fixed my issue above by dropping and reinserting the database table, which luckily somehow retained the data (still a total numpty with SQL).

 

I've noticed another issue this last week though (didn't spot it before because wasn't doing the following before)

- If I have a product and duplicate it as a LINKED product (i.e. it's the same product showing in 2 or more categories) the it shows both (or more) sub cat text boxes at the top of the page, but I only want it to show the subcat textbox for the current subcat (or higher).

 

Any clues how to fix this?

 

Gaz

Wearing a seatbelt prevents head injuries when the computer crashes - - - Yeah Right!!! - not in this office.

Link to comment
Share on other sites

  • 3 weeks later...

Okay it took some doing, but I finally managed to get the subcategory text to appear in a graphical border. I wanted something other than a square border.

 

I tried a number of things... I am also using the graphical_borders contribution. I tried putting references to this border in the product_info.php to some degree of success. However it worked for the subcategory text inside the product box but for the box below the category, it kept doing strange things... Hope you all can follow me.

 

Also I had problems getting the graphical border to work... The page kept failing and things ending up where they did not belong. I also had problems with the graphical border showing up on pages with no subcategory - empty box does nothing for me.

 

So I reread your well written instructions again and again... Then it hit me!!! I was making it so hard on myself. I did some googling and found instructions on how to make a graphical border using css and 2 images. So I followed those instructions and pasted the code into the "admin" area of the subcategory text box. The place provided when creating a subcategory. I crossed my fingers and it worked just fine. See examples. I am also including the style sheet I used. I take no credit for this. Visit the website and try it yourself.

 

example_1.jpg

 

example_2.jpg

 

Here is the style sheet...

 

/*

| liquidcorners-extended.css; feel free to adapt the style!

| ================================================

| use: 4 corners with painted border outside a contentbox with class="inside";

| image1 = upper half: top left corner, long top border, top right corner

| under half: bottom left corner, long bottom border, bottom right corner

| image2 = left half: left border; right side: right border

| because repeat-y: image2 can be reduced in height!

| CHANGE = you have to change this for fitting to your image

| YCC = You Can Change (or omit), if wanted

| DNC = Do Not Change

| credits: original by francky kleyneman, see article/tutorial in Francky's Developers Corner:

| http://home.tiscali.nl/developerscorner/li...quidcorners.htm

| adapted

| by.....: ... (your name here http://www.your url here.com)

|

| + please let this text & links intact for a next user +

*/

 

.top-left, .top-right, .bottom-left, .bottom-right {

background-image: url('images/subcat_box/subcat1.gif'); /* CHANGE: path and name of your image1 */

height: 23px; /* CHANGE: replace by the height of one of your corners (= 1/2 height of the image) */

font-size: 2px; /* DNC: correction IE for height of the <div>'s */

}

.top-left, .bottom-left {

margin-right: 23px; /* CHANGE: replace by the width of one of your corners */

}

.top-right, .bottom-right {

margin-left: 23px; /* CHANGE: replace by the width of one of your corners */

margin-top: -23px; /* CHANGE: replace by the height of one of your corners */

}

.top-right {

background-position: 100% 0; /* DNC: position right corner at right side, no vertical changes */

}

.bottom-left {

background-position: 0 -23px; /* CHANGE: replace second number by negative height of one of your corners */

}

.bottom-right {

background-position: 100% -23px; /* CHANGE: replace second number by negative height of one of your corners */

}

.inside {

margin-left: 23px; /* CHANGE: replace by the width of one of your corners */

margin-right: 23px; /* CHANGE: replace by the width of one of your corners */

background: #F8E4CA; /* YCC: background-color of the inside */

color: #421414; /* YCC: default text-color of the inside */

padding-left: 10px; /* YCC: all texts at some distance of the left border */

padding-right:10px; /* YCC: all texts at some distance of the right border */

text-align: justify; /* YCC: position of all texts inside */

}

.notopgap { margin-top: 0; } /* DNC: to avoid splitting of the box */

.nobottomgap { margin-bottom: 0; } /* DNC: to avoid splitting of the box */

.insideleft, .insideright {

background-image: url('images/subcat_box/subcat2.gif'); /* CHANGE: path and name of your image2 */

background-repeat: repeat-y; /* DNC: to pile the image2 as much as needed */

}

.insideright { background-position: 100% 0; } /* DNC: position right corner */

 

/*

implementation in the page:

<head>

<link rel="stylesheet" type="text/css" href="subcat_box.css">

</head>

<body>

<div class="top-left"></div><div class="top-right"></div>

<div class="insideleft"><div class="insideright"><div class="inside">

<p class="notopgap">Your text & other things inside</p>

<p class="nobottomgap">Last paragraph here</p>

</div></div></div>

<div class="bottom-left"></div><div class="bottom-right"></div>

</body>

*/

Link to comment
Share on other sites

Is there an easy way in which I can have the text info on the highest category level, ie cpath=0 ?

 

Alan - short answer is no. cpath=0 is a special case as it doesn't have a parent category

 

The easiest thing to do is hardcode your information in index.php in the "default" code block

Please use forum for support rather than PM - PMs unrelated to my contributions will be ignored.

Google Site Search is your friend

My contributions: Tracking Module | PDF Customer Invoice | Subcategory textboxes

Link to comment
Share on other sites

Hi there, I have been working on this problem for about a week and I am hoping someone can help me.

 

After installing this contribution, my index page as well as my category and subcategory pages have become skewed.

 

The main text areas have centered themselves and the footer has moved itself to the right and the left column has dropped down. I believe it has to do with this contribution (through playing with it a bit) and the code on the catalog/index.php page. I am thinking I am missing the proper formatting of the php (I tried from the instructions, but it just doesn't want to jive it seems). The contribution works great but the formatting is a big issue.

 

As an example please look at http://creationsfromeden.com/store/index.php this is the skewed part (and if I click on a category or subcategory link). I want it to look like http://creationsfromeden.com/store/shipping.php (it did before I installed this contribution).

 

Can anyone help?

 

Thank you,

Randi

Link to comment
Share on other sites

Okay I have the index page fixed, but not the other two...

 

 

Hi Randi,

 

Your formatting issue is most likely caused by the position you've inserted the two textbox code blocks in index.php. As you say you've fixed the position of the textbox code in the "default" block of index.php.

 

The subcategory code simply inserts a table row. This must however be inserted to ensure that valid table markup results. If you've modified your index.php from the vanilla layout, my instructions may not be valid.

 

I notice that "Raw Ingredients" has a textbox and is laid out correctly, but its subcategory "Exfoliants" is broken (right column over on left). However, "Exfoliants" has no textbox so it can't be the subcategory code breaking this particular page. Have you made any other changes recently to index.php?

 

Problems with tables (esp. nested) can be hard to nail. If you have Firefox, get a copy of the "web developer" extension. Use the option "Outline" -> "Tables" or "Table Cells". This will give you a really good idea of where in the flow of tables in index.php you have your error.

 

HTH

 

Chris

Please use forum for support rather than PM - PMs unrelated to my contributions will be ignored.

Google Site Search is your friend

My contributions: Tracking Module | PDF Customer Invoice | Subcategory textboxes

Link to comment
Share on other sites

Hi Randi,

 

Your formatting issue is most likely caused by the position you've inserted the two textbox code blocks in index.php. As you say you've fixed the position of the textbox code in the "default" block of index.php.

 

The subcategory code simply inserts a table row. This must however be inserted to ensure that valid table markup results. If you've modified your index.php from the vanilla layout, my instructions may not be valid.

 

I notice that "Raw Ingredients" has a textbox and is laid out correctly, but its subcategory "Exfoliants" is broken (right column over on left). However, "Exfoliants" has no textbox so it can't be the subcategory code breaking this particular page. Have you made any other changes recently to index.php?

 

Problems with tables (esp. nested) can be hard to nail. If you have Firefox, get a copy of the "web developer" extension. Use the option "Outline" -> "Tables" or "Table Cells". This will give you a really good idea of where in the flow of tables in index.php you have your error.

 

HTH

 

Chris

 

Thank you Chris... yeah I found out one of the other problems (I think) is the alterations in the code for product_info.php evidently I left it all as one LONG string instead of breaking it all up, so I'll try and get that fixed up when I get a chance and see where I am after that.

 

Sometimes just posting it seems to fix it (inspiration perhaps? lol)

 

It is not a vanilla install by any means. I have added quite a few contributions... from teh vanilla was easy... now I'm having the problems. I am amazed I have got this far though being that I knew absoltely nothing of php a month ago :)

Link to comment
Share on other sites

Thank you Chris... yeah I found out one of the other problems (I think) is the alterations in the code for product_info.php evidently I left it all as one LONG string instead of breaking it all up, so I'll try and get that fixed up when I get a chance and see where I am after that.

 

Sometimes just posting it seems to fix it (inspiration perhaps? lol)

 

It is not a vanilla install by any means. I have added quite a few contributions... from teh vanilla was easy... now I'm having the problems. I am amazed I have got this far though being that I knew absoltely nothing of php a month ago :)

 

There I got Firfox and the add-oj you suggested. I'll see where that brings me :)

Link to comment
Share on other sites

  • 4 weeks later...

My version v. 2.0.3 osc. v.2.2 RC2a

I have the following problem; double textbox in product_info.php, only with linked (copy) products, single textbox in not linked products.

 

Situation: products are in different main category's example (my site is in root, not catalog):

  • catalog/hardware/product3 (problem)
    catalog/hardware/product4 (no problem)
  • catalog/others/product3 (problem)
    catalog/others/product5 (no problem)

code from product_info.php

    if (tep_not_null($product_info['products_model'])) {
     $products_name = $product_info['products_name'] . '<br><span class="smallText">[' . $product_info['products_model'] . ']</span>';
   } else {
     $products_name = $product_info['products_name'];
   }
?>

<?php
//  BOF category descriptions
if (DISPLAY_EXTRA_CATEGORIES == 'true' && DISPLAY_CATS_ON_PROD_LISTING == 'true'){
   if ($product_check['total'] >= 1) {
// now get textbox description for this *product* and display
$query = tep_db_query("select categories_description from " . TABLE_EXTRA_CATEGORIES . " left join " . TABLE_PRODUCTS_TO_CATEGORIES . " using (categories_id) where " . TABLE_PRODUCTS_TO_CATEGORIES .".products_id=" . (int)$HTTP_GET_VARS['products_id'] . " and " . TABLE_EXTRA_CATEGORIES .".language_id = '" . (int)$languages_id . "'");
while($category_info_text = tep_db_fetch_array($query)){
   if(!empty($category_info_text['categories_description'])){ // prevent output where description not set for particular language
      echo ("<tr><td colspan=\"2\"><div class=\"cat_info_box\">".$category_info_text['categories_description']."</div></td></tr>");
     }
   }
 }
}
// EOF categorie descriptions
?>  

     <tr>
       <td><table border="0" width="100%" cellspacing="0" cellpadding="0">
         <tr>
           <td class="pageHeading" valign="top"><?php echo $products_name; ?></td>
           <td class="pageHeading" align="right" valign="top"><?php echo $products_price; ?></td>

Perhaps their already is a solution and I missed that, if so sorry.

Link to comment
Share on other sites

  • 2 weeks later...

Hi,

 

Great contribution, it's come in extremely handy in the past and I've been using it for quite a while now, so cheers!

 

Would anyone like to take a guess at how hard it would be to convert this to be used with manufacturers instead of categories? I've just had a quick look and although I don't see any reason why it wouldn't be doable it seems like a lot of work would be involved. Can anyone who knows more about php than I do comment?

 

Thanks,

 

Sam

Link to comment
Share on other sites

My version v. 2.0.3 osc. v.2.2 RC2a

I have the following problem; double textbox in product_info.php, only with linked (copy) products, single textbox in not linked products.

 

Hi,

 

Good pick up. I've tried this with linked products and get the same result. To fix this, edit products_info.php

 

FIND:

 

$query = tep_db_query("select categories_description from " . TABLE_EXTRA_CATEGORIES . " left join " . TABLE_PRODUCTS_TO_CATEGORIES . " using (categories_id) where " . TABLE_PRODUCTS_TO_CATEGORIES .".products_id=" . (int)$HTTP_GET_VARS['products_id'] . " and " . TABLE_EXTRA_CATEGORIES .".language_id = '" . (int)$languages_id . "'");

 

and REPLACE WITH:

 

$query = tep_db_query("select categories_description from " . TABLE_EXTRA_CATEGORIES . " left join " . TABLE_PRODUCTS_TO_CATEGORIES . " using (categories_id) where " . TABLE_PRODUCTS_TO_CATEGORIES .".products_id=" . (int)$_GET['products_id'] . " and " . TABLE_EXTRA_CATEGORIES .".language_id = '" . (int)$languages_id . "' limit 1");

 

Thanks for the post

 

 

Regards,

 

Chris

Please use forum for support rather than PM - PMs unrelated to my contributions will be ignored.

Google Site Search is your friend

My contributions: Tracking Module | PDF Customer Invoice | Subcategory textboxes

Link to comment
Share on other sites

Sorry for my English, but I am very French.

I install the latest version, until the 25 (brilliant contrib) description, after i don't have the possibility of record through the admin.

I was forced to insert all other description categories by the BD. The problem is that I can not even modified in admin.

Someone knows it or has this problem?

 

thank you.

bloness.

bloness

 

oscommerce-2.2RC1-FR-w3c CONTRIB =>Advanced search attributies fullpackage AJAX-AttributeManager-V2.8.3 B2B Product Listing Columns Bbi_v2 CL_summary_info_v1.1 Colissimo_1_2_3_4_5_1 Contrib ExU-1 Dynamic_sitemap_v4.0 Fckeditor-oscommerce_v2.2.1 Featured_products_v1.5.5_1 Header-tags-4-novices-v3.01 InvoicePDF1.5_ LettreMax et Distingo More_Pics_Sur_FCKeditor_1_2_3 Newsletter_report_v1.1_full On-fire-osc PayPal_IPN_v2.3.4.5

Ot discount coupon codes fr PRODUCT QUICK EDIT V2.0 _ Queries_debug-v1.7 Ultimate_SEO_URLs_v2-2.2e virementbancaire1.3

Plus d'autres petites améliorations par ci par la...

Link to comment
Share on other sites

Sorry for my English, but I am very French.

I install the latest version, until the 25 (brilliant contrib) description, after i don't have the possibility of record through the admin.

I was forced to insert all other description categories by the BD. The problem is that I can not even modified in admin.

Someone knows it or has this problem?

 

thank you.

bloness.

 

RE

 

I found this origin of problem. When i changed number of result per page 24 to 40 in my configuration this contrib work again.

 

In fact the problem exists when there is a page 2!

 

Thank you for this contrib. chris.

 

Vanessa

bloness

 

oscommerce-2.2RC1-FR-w3c CONTRIB =>Advanced search attributies fullpackage AJAX-AttributeManager-V2.8.3 B2B Product Listing Columns Bbi_v2 CL_summary_info_v1.1 Colissimo_1_2_3_4_5_1 Contrib ExU-1 Dynamic_sitemap_v4.0 Fckeditor-oscommerce_v2.2.1 Featured_products_v1.5.5_1 Header-tags-4-novices-v3.01 InvoicePDF1.5_ LettreMax et Distingo More_Pics_Sur_FCKeditor_1_2_3 Newsletter_report_v1.1_full On-fire-osc PayPal_IPN_v2.3.4.5

Ot discount coupon codes fr PRODUCT QUICK EDIT V2.0 _ Queries_debug-v1.7 Ultimate_SEO_URLs_v2-2.2e virementbancaire1.3

Plus d'autres petites améliorations par ci par la...

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
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...