Show Posts


Messages - gcleff

Pages: [1]
1
Customization help / Re: product slider extension
« on: March 28, 2017, 04:15:21 AM »
just to add i want a carousel of product list instead of just plain list how do i that

2
Customization help / product slider extension
« on: March 28, 2017, 04:09:59 AM »
Hi im trying to use product_slider extension. if i put the product_slider to content_top layout it doesnt show any images from featured list or product list it just plain blank.


3
Extension Support / Re: Trying to Install Slider
« on: March 05, 2017, 09:42:44 PM »
Sorry i didnt indicate it is the product_slider extension.

4
Extension Support / Re: Trying to Install Slider
« on: March 03, 2017, 01:22:36 AM »
sorry to barge in i used this extension and put it in the content top but when i view it in the page no items is showing even i selected latest products which has many products listed.

5
in final transaction and in the order summary of paypal my preferred currency successfully appeared which is P 3800 PHP.

I guess it will not affect anything because i only made changes inside a specific extension and paypal also supports my currency.

thank you for your prompt reply. it really is tedious if you want to really customize abantecart though i can say abantecart is better than its competitors. :)

6
Yes order summary in paypal
can you correct me if this can affect the payment on paypal.

what i did is dig into the code change the code in config of extension
from name="currency_code" value="?php echo $currency_code; ?"
to value="PHP" <-- i hard coded my prefered currency code

then i test it and to no avail it worked
$ 3800 USD has been change to P 3800 PHP

do you think is this ok?

7
Hi i have set my base currency to PHP and config my payment to papal standard all my products is in php after the checkout my order summary comes back to USD for example i bought 3800 PHP then i checkout paypal page appears with "your order summary" and the details instead of PHP 3800 it became USD 3800. is there a way it can be replaced with PH.

MY currency is supported in paypal which is PHP Philippine Pesos.

i know theres an extension for usd conversion named paypal_usd but i want it straight as PHP as paypal accepts my currency.

8
General Discussion / Re: Electronic Payment & Credit Card Payment
« on: February 05, 2017, 10:17:25 PM »
hi why cant i see 2co? i mean theres no 2co extension

9
i solved it by copying the script from old version of abantecart thanks for the help

10
Installation and Configuration / Shipping Days on Items
« on: January 31, 2017, 03:26:42 AM »
Can you help me i need to add a shipping details under the QTY per product say item 1 ship withn 5-7 days and item 2 ships within 14 days is this possible?

11
Hi Thank you for the help i both used IE and Firefox.

I made the change you gave me the error still persist.

      for ($i = 0; $i < count($browsers); $i++){
         if (strlen(stristr($nua, $browsers[$i])) > 0){
            $agent["browser"] = (string)$browsers[$i]; <--Change
            $n = stristr($nua, $agent["browser"]);
            $j = strpos($nua, $agent["browser"]) + $n + strlen($agent["browser"]) + 1; <--- Line 148

Following error has occurred during installation:
OK: {"ret_code":50}
Name    Info
2::warning
   A non-numeric value encountered in /storage/h3/704/571704/public_html/core/lib/request.php on line 148
2::warning
   A non-numeric value encountered in /storage/h3/704/571704/public_html/core/lib/request.php on line 148
2::warning
   A non-numeric value encountered in /storage/h3/704/571704/public_html/core/lib/request.php on line 148

12
Hi im installing v1.2.9 at lincense ok at compatibility all ok at configuration ok at data load i get this error

Following error has occurred during installation:
OK: {"ret_code":50}
Name
Info
2::warning
A non-numeric value encountered in /storage/h3/704/571704/public_html/core/lib/request.php on line 148
2::warning
A non-numeric value encountered in /storage/h3/704/571704/public_html/core/lib/request.php on line 148
2::warning
A non-numeric value encountered in /storage/h3/704/571704/public_html/core/lib/request.php on line 148\

Can you help me with this thanks a lot.

below is the line 148 of request.php
   private function _detectBrowser(){

      $nua = strToLower($_SERVER['HTTP_USER_AGENT']);

      $agent['http'] = isset($nua) ? $nua : "";
      $agent['version'] = 'unknown';
      $agent['browser'] = 'unknown';
      $agent['platform'] = 'unknown';
      $agent['device_type'] = '';

      $oss = array ('win', 'mac', 'linux', 'unix');
      foreach ($oss as $os){
         if (strstr($agent['http'], $os)){
            $agent['platform'] = $os;
            break;
         }
      }

      $browsers = array ("mozilla", "msie", "gecko", "firefox", "konqueror", "safari", "netscape", "navigator", "opera", "mosaic", "lynx", "amaya", "omniweb");

      for ($i = 0; $i < count($browsers); $i++){
         if (strlen(stristr($nua, $browsers[$i])) > 0){
            $agent["browser"] = $browsers[$i];
            $n = stristr($nua, $agent["browser"]);
            $j = strpos($nua, $agent["browser"]) + $n + strlen($agent["browser"]) + 1; <--Line 148
         }
      }

Pages: [1]

Powered by SMFPacks Social Login Mod