

max.terbeck
Members-
Content count
11 -
Joined
-
Last visited
About max.terbeck
- Birthday 04/01/1971
Profile Information
-
Real Name
Max Terbeck
-
Gender
Male
-
Location
Barcelona. Spain
- Website
-
Thanks for this tip, it worked !!!
-
I used to have the same problem. With this I was able to solve it. Thanks!!!
-
If you are having problems with HTML layout and accents you can replace this in pdf_catalogue.php around line 65 Where it says: $description=rtrim(strip_tags($print_catalog_array[$j]['description'])); replace it with: $description=rtrim(strip_tags(str_replace(' ', '', (str_replace('á', 'á', (str_replace('é', 'é', (str_replace('í', 'í', (str_replace('ó', 'ó', (str_replace('ú', 'ú', (str_replace('ñ', 'ñ', (str_replace('"','"', $print_catalog_array[$j]['description']))))))))))))))))); I don't think this is nice code, but it works for me. Hope it's useful to someone.
-
Hi Jack, I've updated from v. 3.1.3 to 3.1.4 and now I've the following error, when I click on a product. Warning: implode() [function.implode]: Invalid arguments passed in C:\wamp\www\includes\functions\header_tags.php on line 67 What can it be? Regards, Max
-
Hi, Great contribution!!! I only have one problem, it works fine in IE and Firefox, but in Chrome boxes have different sizes. Is there a solution for this? Thanks.
-
Hi Jack! Nevermind, I've found the problem, I didn't have activate the curl extension in wamp server. Thanks anyway. Regards,
-
Hi Jack! Fantastic contribution!!! However I have a problem. I've installed it all correctly, when selecting a box from the dropdown in admin->Sitemap SEO->Box Control, as stated in the instructions, I receive the following message: Fatal error: Call to undefined function curl_init() in C:\wamp\www\catalog\admin\includes\functions\sitemap.php on line 214 I'm using Ultimate SEO Urls and Header Tags Seo. Can you help me please? Regards. Max
-
I've installed Articles Manager 1.57_1 and in the Admin Cross Selling section, this message is displayed and I can't make cross selling work. if (!$add_related_article_ID) if ($_POST && !$sort) { if ($_POST[run_update]==true) { $query ="DELETE FROM " . TABLE_ARTICLES_XSELL . " WHERE articles_id = '".$_POST[add_related_article_ID]."'"; if (!tep_db_query($query)) exit(TEXT_NO_DELETE); } if ($_POST[xsell_id]) foreach ($_POST[xsell_id] as $temp) { $query = "INSERT INTO " . TABLE_ARTICLES_XSELL . " (articles_id, xsell_id, sort_order) VALUES ($_POST[add_related_article_ID],$temp,1)"; //$query = "INSERT INTO " . TABLE_ARTICLES_XSELL . " VALUES ('',$_POST[add_related_article_ID],$temp,1)"; if (!tep_db_query($query)) exit(TEXT_NO_INSERT); } ?> The database has been updated. Click here to sort the products associated with this article. Note: this needs to be done every time a product is added or deleted. Click here to go back to the main page. Any clues???