Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Alexander75

Archived
  • Posts

    7
  • Joined

  • Last visited

Profile Information

  • Real Name
    Alessandro

Alexander75's Achievements

  1. Hi ;) How change text in upstable module according to the price? Example: <= 20 eur --> priority package >= 20 eur --> quick package This is part of code: $table_cost = split("[:,]" , MODULE_SHIPPING_UPSTABLE_COST); $size = sizeof($table_cost); for ($i=0, $n=$size; $i<$n; $i+=2) { if ($order_total <= $table_cost[$i]) { $shipping = $table_cost[$i+1]; break; } } if (MODULE_SHIPPING_UPSTABLE_MODE == 'weight') { $shipping = $shipping * $shipping_num_boxes; } $this->quotes = array('id' => $this->code, 'module' => MODULE_SHIPPING_UPSTABLE_TEXT_TITLE, 'methods' => array(array('id' => $this->code, 'title' => MODULE_SHIPPING_UPSTABLE_TEXT_WAY, 'cost' => $shipping + MODULE_SHIPPING_UPSTABLE_HANDLING))); Thanks a lot ;)
  2. Hello, why the code don't split page in all articles? This is a page: http://www.eraskor.com/articles_new.php and this my code: The maximum number of New Articles to display in admin panel is on 2. Thanks a lot. Bye ;)
  3. Sorry, how i resolve this problem: http://www.oscommerce.com/forums/index.php?sho...p;#entry1407445 Thanks a lot ;)
  4. Hi, i have Article Manager 1.0 and i have attivated "Location of Prev/Next Navigation Bar", but don't appear link for next and previous page. This is part of code for next and previous page in articles.php: <?php if (($articles_all_split->number_of_rows > 0) && ((ARTICLE_PREV_NEXT_BAR_LOCATION == 'bottom') || (ARTICLE_PREV_NEXT_BAR_LOCATION == 'both'))) { ?> <tr> <td><table border="0" width="100%" cellspacing="0" cellpadding="2"> <tr> <td class="smallText"><?php echo $articles_all_split->display_count(TEXT_DISPLAY_NUMBER_OF_ARTICLES); ?></td> <td align="right" class="smallText"><?php echo TEXT_RESULT_PAGE . ' ' . $articles_all_split->display_links(MAX_DISPLAY_PAGE_LINKS, tep_get_all_get_params(array('page', 'info', 'x', 'y'))); ?></td> </tr> </table></td> </tr> <?php } ?> </table></td> <?php } ?> How i resolve this problem? Thanks a lot. Bye wink.gif
  5. Hi, i have Article Manager 1.0 and i have attivated "Location of Prev/Next Navigation Bar", but don't appear link for next and previous page. How i resolve this problem? Thanks a lot. Bye ;)
×
×
  • Create New...