

ken0306
Members-
Content count
309 -
Joined
-
Last visited
Everything posted by ken0306
-
Hi @gadlol, Do you know which header tag is compatible with it on this? I originally have Ultimate SEO URL 5 with Header Tags SEO V 3.0 install on my site, and I uninstall the Ultimate SEO URL 5 and install upgrade to the SEO Friendly url pro. Now the index page header tag works fine, but the product info page doesn't really work. The header tag will load If the SEO Friendly url is off. So, is there any other Header Tag addon I should use for with SEO Friendly URL Pro? thank you ken
-
Hi there, I change my site from the Ultimate SEO URL 5 to the SEO Friendly urls, so the urls structures are totally changed. my question is how to forward my old urls to the new urls. thank you
-
cool, I will get the pro version and get it a try.
-
HI there, I just test on my site with this add on, the url looks good, but a little bit slow loading compared with the Ultimate SEO URL 5. Is that because it is the free version? thank you ken
-
Hi there, I am trying to setup my shopping cart with table rate and limited by product weight and postcode, and here is so far I can think about. 1. I setup the Table Rate charge by price, 29:8.99,49:6.99,49.01:0.00 so all orders over 49.01 will be free shipping. 2. Because I only want to offer free shipping to a small and medium size package, not the large item. I add the following code to /includes/class/shipping/ table.php change return $this->quotes; to if (($cart->show_weight() < 50 )) { return $this->quotes; } This will limit the shopping cart total weight while they check out. So, how do I change this to each item's weight instant of total cart weight? If customer order 2 x 21 lbs item will give total weight 52 lbs, the free shipping can't apply to order. So how can I change shopping cart total weight to heaviest items on the shopping cart's weight? 3. I also trying to limit the service only available in city area, so I will need to adding the restriction on postcode, if (($cart->show_weight() < 50 ) && $order->delivery['postcode'] != 'v6y 3j8') { return $this->quotes; } so how can I setup multiple valuable for delivery postcode and only check if first 3 characters match? thank you ken
-
Hi FWR Media, I saw your post about the Chinese charterer on url around page 138, do you have solution for that problem on the seo urls 5 pro version? thank you ken
-
HI, I have wishlist 2 installed, I add 1 extra field in my customer_wishlist table call categories_id, I want my customer be able to sort the wishlist by categories. I change the insert query from tep_db_query("insert into " . TABLE_WISHLIST . " (customers_id, products_id) values ('" . $customer_id . "', '" . $wishlist_id . "')"); to tep_db_query("insert into " . TABLE_WISHLIST . " (customers_id, products_id, categories_id) values ('" . $customer_id . "', '" . $wishlist_id . "', '" . $top_category_id . "')"); include/classes/wishlist.php since I only want to insert the top category to wishlist table, I add the following code under product_info.php page to show the category_id $cPath = implode('_', $cPath_array); $top_category_id = strtok($cPath, '_'); echo $top_category_id; before the </form> It does shows the top category id correctly under the products_info.php, but the sql query doesn't insert the $top_category_id to the table. Can somebody tell me how fix this problem? Thank you ken
-
[Contribution] Google Analytice Enchanced ECommerce
ken0306 replied to rudolfl's topic in General Add-Ons Support
Hi, do you have installation instruction for 2.2 version/ -
[Contribution] Products Specifications
ken0306 replied to kymation's topic in General Add-Ons Support
Hi, I have this add on install on my site, and I trying to rewrite my whole site with bootstrap 3.0. While I working on the product_filters.php page, I find out that the CLOSE X on the breadcrmb has the same class close with bootstrap. I trying to find the file under the breadcrmb.php, but don't really see it. Can some one tell me where to find the close class, and change to other clase? it is always floating to right on my page. thank you. ken -
[Addon] Superfish DropDown Menu on TOP header
ken0306 replied to sunrise99's topic in General Add-Ons Support
This is superfish dropdown, you don't really need admin control. -
Hi, I am using the product tab with my osc 2.2 currently. After I upgrade my server to php 5.4, the product tab on admin side will have problem loading the description with " ' " mark. If I have ' in my description, the page will shows blank, without ' it will be fine. Has anyone know how to fix this issues with php 5.4? Thank you Ken
-
Hi, has anyone get it work with php 5.4 yet?
-
Newsletters Subscribers Manager - Oscommerce 2.3 & 2.2
ken0306 replied to sembrouille's topic in Add-Ons Development
Hi, I got a question relate to the duplications on subscriber issues. So, if a customer sign up newsletter before they create an account, it will insert as a new record in the database. So, if they create an account and click on the newsletter subscription under the account section again, it will insert as a second record. However, when customer unsubscribe your newsletter from subscribing link, it only deleted one record from the database. I need to login to customer account to uncheck the box again. So, how do you guys deal with this kind of issues. Thank you ken -
CONTRIBUTION Social Login with Facebook / Google 2.3.1/2
ken0306 replied to thejudge99's topic in Add-Ons Development
That makes sense, thank you for your reply. So here is my ideal of process not sure if that help or not. If customer email doesn't in the database, account create will be processed as what the current add-on does. If customer email already in database, login panel will display an error message and let them know they need to login and link under the account section FB or G account link can be done under the account section (something like Facebook link to Twitter). ken -
CONTRIBUTION Social Login with Facebook / Google 2.3.1/2
ken0306 replied to thejudge99's topic in Add-Ons Development
Hi, I try the add-on and it works with the google and Facebook login. However, if the customer already has an account on the site, the google or Facebook login will not work. The other problem is when they first time logging with Google or Facebook, the system doesn't ask them to create a password even they update their profile. So is that what is supposed to be? -
Help With Product Attribute Pictures Addon
ken0306 replied to broadstreetbully's topic in General Add-Ons Support
you looking at the wrong file, this addon layout control by their own file, I think it should be under /includes/modules/paps_layout/ there maybe few difference layout file under that folder. -
[Contribution] Products Specifications
ken0306 replied to kymation's topic in General Add-Ons Support
Hi, has anyone combine the Utimate SEO with Product specification to rewrite the url yet? thank you ken -
[Contribution] Products Specifications
ken0306 replied to kymation's topic in General Add-Ons Support
Hi, Jim I got another question, I trying to apply manufactures to the filter function, so most of time it works fine, but when the manufactures name come something like * & +, the fuction will not be working properliy. on the filter side works, the manufactures name shows number of products under them. But when I click on the filter the result will not shows at all. so how to fix this problem? thank you ken -
[Contribution] Products Specifications
ken0306 replied to kymation's topic in General Add-Ons Support
wow, I didn't really though about that, cool. I will try to reconfigurate again. thank you Jim ken -
[Contribution] Products Specifications
ken0306 replied to kymation's topic in General Add-Ons Support
Hi, I install the addon and works perfect, but I want to know how to configurate the product_info page layout. I see some people can group the value and shows in the product_info.php here is sample it looks like it can be display mutiple value under one spec header. But when I trying active my spec it looks like this I read though the user manual and I don't really see any example on how to setup and group the spec group in product_info page. thank you ken -
Yes, Jim, I understand that. I want to know if there is way to insert it. Because when people click on the filter, it will direct them to the products_filter.php page, not on the index.php page anymore. So I want to add the category title on the products_filter.php page, and it may looks consistent on the site. Thank you Ken
-
Hi, under the current version, I only can see the category images under the product_filters.php right hand side uper corner, how can I change to category name? thank you
-
Hi, I getting problem when I trying to install the sort order fuction combin with specifictions filter. When my categories doesn't has any specifctions filter, it works fine. When the categories have specifcations filter, it will it will take the last value from the filter. like this index.php?cPath=98_104_111&sort=5a&filter_id=Zutano the zutano is the last value from my specifcation value. Has anyone notice that yet? My other question is, has anyone knows how to may this addon work with SEO URL? thank you ken
-
Hi, I installed version 2.0.7 on my 2.2cr, but recently got pci - compliance issues. The vulnerability they found is "Potential SQL Query Found". here are the url and error message http://www.mywebsite.com/information.php?info_id=x%27;%22,%29%60 error 1054 - Unknown column 'languages_id' in 'where clause' SELECT information_title as iName FROM information WHERE information_id='0' AND languages_id='1' LIMIT 1 http://www.mywebsite.com/information.php?x%27;%22,%29%60=5 1054 - Unknown column 'languages_id' in 'where clause' SELECT information_title as iName FROM information WHERE information_id='0' AND languages_id='1' LIMIT 1 http://www.mywebsite.com/information.php?x%27;%22,%29%60_id=5 1054 - Unknown column 'languages_id' in 'where clause' SELECT information_title as iName FROM information WHERE information_id='0' AND languages_id='1' LIMIT 1 How to fix this problem to meeting the pci compliance again? thank you ken