Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Dj-Viper

Members
  • Posts

    221
  • Joined

  • Last visited

  • Days Won

    1

Everything posted by Dj-Viper

  1. @@raiwa Fixed the problems with alignment i think.. need to add the produkt-info page edit for the those pages. But i have watermarks on my images now. It's oke, but is there a way to get them out. And do i need to do a reset then. Greetings, Anne
  2. For people that want to know. For 2.3.4BS Gold http://addons.oscommerce.com/info/8561 After a hour or so thinking and trying. I have managed to upgrade the Enhanced Categories Contribution to 2.3.4BS Gold. Made a template enhanced_categories.php with <div class="panel panel-default"> <div class="panel-heading"><?php echo MODULE_BOXES_ENHANCED_CATEGORIES_TITLE; ?></div> <div class="panel-body"><?php echo $categories_string; ?></div> </div> and in the module file bm_enhanced_categories.php i changed the divclass calls, and added the template call. $output = '<div class="panel panel-default">' . ' <div class="panel-heading">' . MODULE_BOXES_ENHANCED_CATEGORIES_BOX_TITLE . '</div>' . ' <div class="panel-body">' . $categories_string . '</div>' . '</div>'; ob_start(); include(DIR_WS_MODULES . 'boxes/templates/enhanced_categories.php'); $data = ob_get_clean(); Greetings, Anne
  3. @@raiwa thanxs will give it a whirl... will fix one problem than already on my site, 10 more to go... Greetings, Anne
  4. Hi, If i install this contribution. will the following alignment problem be solved. ? http://www.fotomeinema.nl/shop/catalog/filters-c-332.html Greetings, Anne
  5. @@greasemonkey The following at the moment : // include the language translations $_system_locale_numeric = setlocale(LC_NUMERIC, 0); require(DIR_WS_LANGUAGES . $language . '.php'); // Ultimate SEO URLs v2.2d if ((!defined(SEO_ENABLED)) || (SEO_ENABLED == 'true')) { include_once(DIR_WS_CLASSES . 'seo.class.php'); if ( !is_object($seo_urls) ){ $seo_urls = new SEO_URL($languages_id); } } setlocale(LC_NUMERIC, $_system_locale_numeric); or better to place the seo urls under like this. // include the language translations $_system_locale_numeric = setlocale(LC_NUMERIC, 0); require(DIR_WS_LANGUAGES . $language . '.php'); setlocale(LC_NUMERIC, $_system_locale_numeric); // Ultimate SEO URLs v2.2d if ((!defined(SEO_ENABLED)) || (SEO_ENABLED == 'true')) { include_once(DIR_WS_CLASSES . 'seo.class.php'); if ( !is_object($seo_urls) ){ $seo_urls = new SEO_URL($languages_id); } } In the setup of Ultmate SEO Urls stands find // include the language translations require(DIR_WS_LANGUAGES . $language . '.php'); and place after the seo urls stuff. but i have two instances of LC Numeric stuff Greetings, Anne
  6. Hi, Question, i have in Application_top.php this // include the language translations $_system_locale_numeric = setlocale(LC_NUMERIC, 0); require(DIR_WS_LANGUAGES . $language . '.php'); // Ultimate SEO URLs v2.2d if ((!defined(SEO_ENABLED)) || (SEO_ENABLED == 'true')) { include_once(DIR_WS_CLASSES . 'seo.class.php'); if ( !is_object($seo_urls) ){ $seo_urls = new SEO_URL($languages_id); } } setlocale(LC_NUMERIC, $_system_locale_numeric); Is it good placed or need it to be under setlocale. btw. using 2.3.4. bootstrap. Greetings, Anne
  7. Hi, Fixed Tagcloud problem.. Line would be : $content .= '<span class="' . $class . '"><a class="' . $class . '" href="' . $hstLink . '">' . ucwords(stripslashes($kword['keyword'])) . '</a></span> '; Missing a ' after the second $class. Greetings, Anne
  8. Hi, Thank you.. This seems to work.. have the editor back and so far no errors. Tackling a new problem. when i activate tagcloud. I know heavy modified shop. Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in/catalog/includes/headertags_seo_tagcloud_footer.php on line 55 Greetings, Anne
  9. Hi, Jack So line that gives error Line is : echo tep_draw_textarea_ckeditor('products_description[' . $languages[$i]['id'] . ']', '70', '10',(isset($products_description[$languages[$i]['id']]) ? stripslashes($products_description[$languages[$i]['id']]) : tep_get_products_description($pInfo->products_id, $languages[$i]['id'])),'id = products_description[' .$languages[$i]['id'] . ']'); To the Line that you mention. ? Greetings, Anne Thanxs in advance.
  10. Update Error exactly is Fatal error: Call to undefined function tep_draw_textarea_ckeditor() in admin/categories.php on line 643 Line is : echo tep_draw_textarea_ckeditor('products_description[' . $languages[$i]['id'] . ']', '70', '10',(isset($products_description[$languages[$i]['id']]) ? stripslashes($products_description[$languages[$i]['id']]) : tep_get_products_description($pInfo->products_id, $languages[$i]['id'])),'id = products_description[' .$languages[$i]['id'] . ']'); Line was i believe <td class="main"><?php echo tep_draw_textarea_field_ckeditor('products_description[' . $languages[$i]['id'] . ']', 'soft', '70', '15', (empty($pInfo->products_id) ? '' : tep_get_products_description($pInfo->products_id, $languages[$i]['id']))); ?></td> Greetings, Anne
  11. Hi, Question, i have installed this contribution.. Works as far no errors, but only one at the moment.. The CKeditor that i have installed is not working anymore under de products description. Error : undefined call to etc. in categories.php Categories was : //--></script> <?php for ($i=0, $n=sizeof($languages); $i<$n; $i++) { ?> <tr> <td class="main" valign="top"><?php if ($i == 0) echo TEXT_PRODUCTS_DESCRIPTION; ?></td> <td><table border="0" cellspacing="0" cellpadding="0"> <tr> <td class="main" valign="top"><?php echo tep_image(tep_catalog_href_link(DIR_WS_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], '', 'SSL'), $languages[$i]['name']); ?> </td> <td class="main"><?php echo tep_draw_textarea_field_ckeditor('products_description[' . $languages[$i]['id'] . ']', 'soft', '70', '15', (empty($pInfo->products_id) ? '' : tep_get_products_description($pInfo->products_id, $languages[$i]['id']))); ?></td> </tr> </table></td> </tr> <?php } ?> is now after install of header tags. //--></script> <?php /*** Begin Header Tags SEO ***/ ?> <?php for ($i=0, $n=sizeof($languages); $i<$n; $i++) { ?> <tr> <td class="main" valign="top"><?php if ($i == 0) echo TEXT_PRODUCTS_DESCRIPTION; ?></td> <td><table border="0" cellspacing="0" cellpadding="0"> <tr> <td class="main" valign="top"><?php echo tep_image(DIR_WS_CATALOG_LANGUAGES . $languages[$i]['directory'] . '/images/' . $languages[$i]['image'], $languages[$i]['name']); ?> </td> <td class="main"> <?php if (HEADER_TAGS_ENABLE_HTML_EDITOR == 'No Editor' || HEADER_TAGS_ENABLE_EDITOR_PRODUCTS == 'false') echo tep_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '70', '15', (isset($products_description[$languages[$i]['id']]) ? stripslashes($products_description[$languages[$i]['id']]) : tep_get_products_description($pInfo->products_id, $languages[$i]['id']))); else { if (HEADER_TAGS_ENABLE_HTML_EDITOR == 'FCKEditor') { echo tep_draw_fckeditor('products_description[' . $languages[$i]['id'] . ']', '600', '300', (isset($products_description[$languages[$i]['id']]) ? stripslashes($products_description[$languages[$i]['id']]) : tep_get_products_description($pInfo->products_id, $languages[$i]['id']))); } else if (HEADER_TAGS_ENABLE_HTML_EDITOR == 'CKEditor') { echo tep_draw_textarea_ckeditor('products_description[' . $languages[$i]['id'] . ']', '70', '10',(isset($products_description[$languages[$i]['id']]) ? stripslashes($products_description[$languages[$i]['id']]) : tep_get_products_description($pInfo->products_id, $languages[$i]['id'])),'id = products_description[' .$languages[$i]['id'] . ']'); } else { echo tep_draw_textarea_field('products_description[' . $languages[$i]['id'] . ']', 'soft', '70', '15', (isset($products_description[$languages[$i]['id']]) ? stripslashes($products_description[$languages[$i]['id']]) : tep_get_products_description($pInfo->products_id, $languages[$i]['id']))); } } ?> </td> </tr> </table></td> </tr> <?php } ?> I believe this is only the part for the enable/disable and setting of the editor. Can it also be just removed and if so, how. Greetings, Anne
  12. Hi, Is there a good news blog or latest news infobox around, that works with 2.3.3 Have tried a few even de new ones, but nothing works apperently. Greetings, Anne
  13. Hi, Question.. I have set auto backup every 10 minutes when i'm working in admin. All good. Set Backup delete for 200 hours, but every time it's makes a backup the last backup made of 10 minutes ago is getting deleted. ? Where is the problem. Greetings, Anne
  14. Hi, I have OSC 2.3.3.3 installed there are already some header tags modules in it. Which version are those ? Or can i overwrite them with these files from the contribution. ? Greetings, Anne
  15. Hi, Tried version 3.2.9 fill tag file.. got this.. 299 Empty Category tags have been filled. 65 Empty Manufacturer tags have been filled. 5301 Empty Product tags have been filled. Should be working ? Other question.. when i add a product there is a big box of the header tags seo in the middle of the screen called Header Tags SEO Meta Tag Data Is it possible to hide that one because as far as i understand it would auto fill. Or put that box totally at the bottom of that screen ? Greetings, Anne
  16. I'm using dutch as language.. havent altered anything... The addon changes for english i put them in the dutch language files.. Mvg, Anne
  17. Hi, A new installation... If i go to a edit page the seo stuff is empty.. but if i click on save and open it again it is filled for a part.. except the meta description.. Greetings, Anne
  18. Hi, Did the test in Header Tags SEO Configuration - Test Got this.. Duplicate title found: explain for Nederlands exists more than once. Duplicate meta description found: explain for Nederlands exists more than once. Missing Title and/or descriptions: explain Products Hama Achtergrond 135cm x 11m Beige Greetings, Anne
  19. Hi, I installed the contribution, did everthing in de install files... sql, php changes... etc.. Also no error.. But when i want to fill tags... i get this message in the box.. No Category tags have been filled. No Manufacturer tags have been filled. No Product tags have been filled. Using 3.3.2a and osc 2.3.3.4 Greetings, Anne
  20. Hi, When generating a feed i'm getting this error.. The field products_id specified in the google-product-search.txt feed does not exist in any of the queried tables. Please ensure you have entered the correct field name and that it exists in one of the tables queried in $master_query (see code) Greetings, Anne
  21. Hi, Ok thanxs for the info... was asking because another contri was also before and after 2.3 and the after 2.3 didn't work there.. So was asking to make sure.. Greetings, Anne
  22. Hi, Forgot a few things in my post.. Correct question : I have OSC 2.3.3.3 installed and in the contri pack of Header Tags SEO there are two versions before en after 2.3 which one is the best to install.. on 2.3.3.3 i don't use sts or bts Greetings.. Anne
  23. Hi, I have OSC 2.3.3.3 installed and in the contri pack there are two versions before en after 2.3 which one is the best to install.. i don't use sts or bts Greetings.. Anne
  24. Hi, I have a little issue.. When inserting a 4700 items csv file with EP i get this error 1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'jpg, manufacturers_id = NULL, ' at line 12 UPDATE products SET products_price='maar zeer doeltreffend. Verwen uzelf en krijg het ook het Oranje Gevoel! Waterdicht 13cm"', products_image='discreet', products_weight='12.73319328', products_tax_class_id='', products_date_available='1970-01-01 00:00:00', products_date_added='1970-01-01 00:00:00', products_last_modified='2010-11-04 13:15:59', products_quantity = 1109-43.jpg, manufacturers_id = NULL, products_status = 1 WHERE (products_id = 1633) LIMIT 1 EP Settings : EP vers: 2.76i-MS2 osCommerce Online Merchant v2.2 RC2a OS: HTTP: Apache DB: MySQL 5.0.51a-24+lenny4-log PHP: 5.3.3 (Zend: 2.3.0) Temp Directory: blabal/temp/ Temp Dir is Writable Magic Quotes is: off register_globals is: off Split files on: 300 records Model Num Size: 30 Price with tax: false Calc Precision: 4 Replace quotes: false Field seperator: comma Excel safe output: true Preserve tab/cr/lf: false Category depth: 7 Enable attributes: true SEF Froogle URLS: false Other Support: MVS Support: false Additional Images: false More Pics: false UltraPics Pics: false HTC: false SPPC: false Extra Fields: false PDF Upload: false Yes model number size and calc i already have changed because of some other issue. Some of my jpg files are like 55449-8.jpg maybe something with the - Anybody know what it is.. Greetings, Anne
  25. Hi, Rocaholic My enginering of php etc is not very good, but no it doesn't conflict. Sitemonitor is direct on the server of the website, htaccess is only access to the website outsite the admin. Greetings, Dj Viper
×
×
  • Create New...