#21
Posted 19 January 2012 - 09:19 PM
Regards
Jim
Banners Box 2.3.x Support
Categories Accordion Box 2.3.x Support
Categories Images Box 2.2x 2.3.x Support
Closest Shipper 2.2x Support
Document Manager 2.2x Support
Generic Box 2.3.x Support
Get 1 Free 2.2x Support
jQuery Banner Rotator 2.2x 2.3.x Support
Modular Front Page 2.3.x Support
Modular SEO Header Tags 2.3.x Support
MVS 2.2x Support
PDF Datasheet 2.3.x Support
Price Updater 2.2x
Products Specifications 2.2x 2.3.x Development Version Support Bugs/Suggestions
Request a Review 2.2x - 2.3.x Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x Support
#22
Posted 19 January 2012 - 09:33 PM
Becuase that was the only module that didnt worked for me, (im missing price_in_cart_only in my sql)
#23
Posted 19 January 2012 - 09:38 PM
Regards
Jim
Banners Box 2.3.x Support
Categories Accordion Box 2.3.x Support
Categories Images Box 2.2x 2.3.x Support
Closest Shipper 2.2x Support
Document Manager 2.2x Support
Generic Box 2.3.x Support
Get 1 Free 2.2x Support
jQuery Banner Rotator 2.2x 2.3.x Support
Modular Front Page 2.3.x Support
Modular SEO Header Tags 2.3.x Support
MVS 2.2x Support
PDF Datasheet 2.3.x Support
Price Updater 2.2x
Products Specifications 2.2x 2.3.x Development Version Support Bugs/Suggestions
Request a Review 2.2x - 2.3.x Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x Support
#24
Posted 19 January 2012 - 09:46 PM
specification_query_raw:
select ps.specification, s.filter_display, s.enter_values, sd.specification_name, sd.specification_prefix, sd.specification_suffix from products_specifications ps join specification_description sd on (ps.specifications_id = sd.specifications_id) join specifications s on (sd.specifications_id = s.specifications_id) join specification_groups sg on (sg.specification_group_id = s.specification_group_id) join specification_groups_to_categories sg2c on (sg2c.specification_group_id = sg.specification_group_id) where sg.show_products = 'True' and s.show_products = 'True' and sg2c.categories_id = '18' and ps.products_id = '1' and sd.language_id = '1' and ps.language_id = '1' order by s.specification_sort_order, sd.specification_name
So I get the data from the sql, but no display.
I will see if I can find anything..
#25
Posted 19 January 2012 - 09:58 PM
Regards
Jim
Banners Box 2.3.x Support
Categories Accordion Box 2.3.x Support
Categories Images Box 2.2x 2.3.x Support
Closest Shipper 2.2x Support
Document Manager 2.2x Support
Generic Box 2.3.x Support
Get 1 Free 2.2x Support
jQuery Banner Rotator 2.2x 2.3.x Support
Modular Front Page 2.3.x Support
Modular SEO Header Tags 2.3.x Support
MVS 2.2x Support
PDF Datasheet 2.3.x Support
Price Updater 2.2x
Products Specifications 2.2x 2.3.x Development Version Support Bugs/Suggestions
Request a Review 2.2x - 2.3.x Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x Support
#26
Posted 19 January 2012 - 10:17 PM
I will try to reinstall all.
#27
Posted 19 January 2012 - 11:17 PM
(this is a quick and dirty soultion that works on my site, if you want to use it you probably need to change styling on the table.
This code also takes raw price from products description and dosent ads tax, currency etc. It fits my needs.. )
In catalog / includes / modules / pdf_datasheet / pd_description.php
Find:
$pdf->writeHTMLCell( $content_width, 0, PDF_MARGIN_LEFT, $current_y, $html, $border=0, $ln=0, $fill=false, $reseth=true, $align='', $autopadding=true);
After Add:
//START MASTER PRODUCTS - SHOW SLAVES
$slave_query_raw = "select p.products_id, p.products_model, pd.products_name, p.manufacturers_id, p.products_tax_class_id, s.specials_new_products_price, s.status, p.products_price from ". TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_PRODUCTS . " p left join " . TABLE_MANUFACTURERS . " m on p.manufacturers_id = m.manufacturers_id left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id where p.products_id = pd.products_id and p.products_master like '% " .$products_id. " %' and p.products_status = '1'";
$slave_query = tep_db_query ($slave_query_raw);
$count_slave = tep_db_num_rows ($slave_query);
if ($count_slave > 0) {
$html .= '<font size="8"><table border="0" width="100%" cellspacing="0" cellpadding="3"><tr>
<td width="30%"><strong>Art nr</strong></td>
<td width="60%"><strong>Benämning</strong></td>
<td width="10%"><strong>Pris</strong></td>
</tr>
';
while ($slave = tep_db_fetch_array ($slave_query) ) {
$html .= '<tr>
<td>'.$slave['products_model'].'</td>
<td>'.$slave['products_name'].'</td>
<td>'.$slave['products_price'].'</td>
</tr>
';}
$html .= '</table></font>';
}
$pdf->writeHTMLCell( $page_width, 0, PDF_MARGIN_LEFT, $current_y, $html, 0, 1, false, true, '', true );
//STOPP MASTER PRODUCTS SHOW SLAVES
#28
Posted 19 January 2012 - 11:35 PM
kymation, on 19 January 2012 - 09:58 PM, said:
Regards
Jim
I found out why is not working.
Im from sweden and we are using Å Ä Ö as letters in our specifications.
If the result from the query has Å Ä or Ö then the module isnt showing.
When I changed to A A and O it works.
Is it possible to show the specification data as html, as the products_description. Then I think it can be compatible with non US characters.
#29
Posted 19 January 2012 - 11:43 PM
Regards
JIm
Banners Box 2.3.x Support
Categories Accordion Box 2.3.x Support
Categories Images Box 2.2x 2.3.x Support
Closest Shipper 2.2x Support
Document Manager 2.2x Support
Generic Box 2.3.x Support
Get 1 Free 2.2x Support
jQuery Banner Rotator 2.2x 2.3.x Support
Modular Front Page 2.3.x Support
Modular SEO Header Tags 2.3.x Support
MVS 2.2x Support
PDF Datasheet 2.3.x Support
Price Updater 2.2x
Products Specifications 2.2x 2.3.x Development Version Support Bugs/Suggestions
Request a Review 2.2x - 2.3.x Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x Support
#30
Posted 20 January 2012 - 12:22 PM
I have tried some different things.
In all modules, if I enter one of the letter Å Ä Ö, example in the link module I want it to look like this: "Länk: productname". (english: Link: produkcname). If I write Länk, the modules wont show up, but if i write Lank with a normal a it works. It also works if I enter the html code for the letter "
&\auml;" (without the \)
My swedish.php uses
define('CHARSET', 'ISO-8859-1');
instead of
define('CHARSET', 'utf');
Maybye thats the problem?
But the strange thing is that the products_description works without any problem.
Edited by mumme, 20 January 2012 - 12:23 PM.
#31
Posted 20 January 2012 - 08:01 PM
Regards
Jim
Banners Box 2.3.x Support
Categories Accordion Box 2.3.x Support
Categories Images Box 2.2x 2.3.x Support
Closest Shipper 2.2x Support
Document Manager 2.2x Support
Generic Box 2.3.x Support
Get 1 Free 2.2x Support
jQuery Banner Rotator 2.2x 2.3.x Support
Modular Front Page 2.3.x Support
Modular SEO Header Tags 2.3.x Support
MVS 2.2x Support
PDF Datasheet 2.3.x Support
Price Updater 2.2x
Products Specifications 2.2x 2.3.x Development Version Support Bugs/Suggestions
Request a Review 2.2x - 2.3.x Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x Support
#32
Posted 21 January 2012 - 09:41 PM
kymation, on 20 January 2012 - 08:01 PM, said:
Regards
Jim
changed back to:
define('CHARSET', 'utf-8');
in the languages file and now the SQL is in UTF_8..
And now it works perfect! =)
#33
Posted 06 March 2012 - 06:04 AM
This release fixes a number of minor bugs and adds some new modules. Two of those modules work only with the Products Specifications addon, so you can ignore those if you don't have PS. The remaining modules print things that are on the default Product Info page, plus some things that you might want that are not on the stock page.
Regards
Jim
Banners Box 2.3.x Support
Categories Accordion Box 2.3.x Support
Categories Images Box 2.2x 2.3.x Support
Closest Shipper 2.2x Support
Document Manager 2.2x Support
Generic Box 2.3.x Support
Get 1 Free 2.2x Support
jQuery Banner Rotator 2.2x 2.3.x Support
Modular Front Page 2.3.x Support
Modular SEO Header Tags 2.3.x Support
MVS 2.2x Support
PDF Datasheet 2.3.x Support
Price Updater 2.2x
Products Specifications 2.2x 2.3.x Development Version Support Bugs/Suggestions
Request a Review 2.2x - 2.3.x Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x Support
#34
Posted 07 March 2012 - 08:31 PM
First of all, thank you for your great contributions to the Oscommerce community.
Im tryting to add this to a new, modified store and I need some hints on where to look to solves this issues:
Last time i installed this contr it was my store that had some porly written addons,
This time I guess it is the same problem, but I dont know where to start look.
I get this errors on product_datasheet.php
1, Notice: Constant DOCUMENTS_SHOW_PRODUCT_INFO already defined in C:\wamp\www\sknbrgs\pdf_datasheet.php on line 66
2, Notice: Undefined variable: languages_id in C:\wamp\www\sknbrgs\includes\modules\boxes\bm_whats_new.php on line 38
3, Fatal error: Call to a member function store() on a non-object in C:\wamp\www\sknbrgs\includes\modules\ultimate_seo_urls5\main\usu5.php on line 78
Any clue where to start looking on this issues?
row 7 in usu5.php is:
$this->getVar( 'cache' )->store( $this->getVar( 'registry' )->store() );
#35
Posted 07 March 2012 - 09:32 PM
2. That's in includes/modules/boxes/bm_whats_new.php, but the error is not in the stock module, so apparently you've made some changes there. It might be enough to add this line near the top of the method:
global $languages_id;
3. That's a problem with Ultimate SEO URLs 5. The PDF Datasheet modules all use tep_href_link() to generate links, so this should just work. I have no idea why it's failing.
Regards
Jim
Edit: Stupid autocorrect....
Edited by kymation, 07 March 2012 - 09:33 PM.
Banners Box 2.3.x Support
Categories Accordion Box 2.3.x Support
Categories Images Box 2.2x 2.3.x Support
Closest Shipper 2.2x Support
Document Manager 2.2x Support
Generic Box 2.3.x Support
Get 1 Free 2.2x Support
jQuery Banner Rotator 2.2x 2.3.x Support
Modular Front Page 2.3.x Support
Modular SEO Header Tags 2.3.x Support
MVS 2.2x Support
PDF Datasheet 2.3.x Support
Price Updater 2.2x
Products Specifications 2.2x 2.3.x Development Version Support Bugs/Suggestions
Request a Review 2.2x - 2.3.x Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x Support
#36
Posted 09 March 2012 - 12:03 AM
Banners Box 2.3.x Support
Categories Accordion Box 2.3.x Support
Categories Images Box 2.2x 2.3.x Support
Closest Shipper 2.2x Support
Document Manager 2.2x Support
Generic Box 2.3.x Support
Get 1 Free 2.2x Support
jQuery Banner Rotator 2.2x 2.3.x Support
Modular Front Page 2.3.x Support
Modular SEO Header Tags 2.3.x Support
MVS 2.2x Support
PDF Datasheet 2.3.x Support
Price Updater 2.2x
Products Specifications 2.2x 2.3.x Development Version Support Bugs/Suggestions
Request a Review 2.2x - 2.3.x Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x Support
#37
Posted 12 March 2012 - 08:03 PM
I've instaled a few times and days ago this release, but when I access the PDF link, nothing is shown (http://onlinesell.ro/product_info.php/products_id/74584). Could you please have a solution for me? I realy do not know what seems to be the problem.
Thank you!
Regars,
Vicentiu.
#38
Posted 12 March 2012 - 08:24 PM
Regards
Jim
Banners Box 2.3.x Support
Categories Accordion Box 2.3.x Support
Categories Images Box 2.2x 2.3.x Support
Closest Shipper 2.2x Support
Document Manager 2.2x Support
Generic Box 2.3.x Support
Get 1 Free 2.2x Support
jQuery Banner Rotator 2.2x 2.3.x Support
Modular Front Page 2.3.x Support
Modular SEO Header Tags 2.3.x Support
MVS 2.2x Support
PDF Datasheet 2.3.x Support
Price Updater 2.2x
Products Specifications 2.2x 2.3.x Development Version Support Bugs/Suggestions
Request a Review 2.2x - 2.3.x Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x Support
#39
Posted 13 March 2012 - 05:55 AM
I am not ussing any addon for URL rewrite. Is the standard oscommerce (with some addons, of course, but it can not interfier with your).
#40
Posted 13 March 2012 - 06:56 PM
Regards
Jim
Banners Box 2.3.x Support
Categories Accordion Box 2.3.x Support
Categories Images Box 2.2x 2.3.x Support
Closest Shipper 2.2x Support
Document Manager 2.2x Support
Generic Box 2.3.x Support
Get 1 Free 2.2x Support
jQuery Banner Rotator 2.2x 2.3.x Support
Modular Front Page 2.3.x Support
Modular SEO Header Tags 2.3.x Support
MVS 2.2x Support
PDF Datasheet 2.3.x Support
Price Updater 2.2x
Products Specifications 2.2x 2.3.x Development Version Support Bugs/Suggestions
Request a Review 2.2x - 2.3.x Support
Similar Products Box 2.2x
Specials Image Overlay 2.3x Support
Theme Switcher 2.3.x Support
Also tagged with one or more of these keywords: 2.3.1 pdf
osCommerce Online Merchant v2.x →
Installation and Configuration →
HOW DO I UPLOAD AN IMAGE BUTTON FOR MY ONLINE PRINTING. v.2.3Started by doriansuarez, 25 Jun 2012 |
|
|
||
ARCHIVED
osCommerce Online Merchant v2.x →
General Support →
pdf & mp3Started by mailey1974, 10 Mar 2012 |
|
|
||
ARCHIVED
osCommerce Online Merchant v2.x →
General Support →
Problem with creating a pdf with products_options_valuesStarted by IslaCozumelDayPass, 05 Nov 2011 |
|
|









