Jump to content

HellGamer

Members
  • Posts

    26
  • Joined

  • Last visited

Profile Information

  • Location
    UK
  • Activity
    Freelancer

Recent Profile Visitors

317 profile views

HellGamer's Achievements

Newbie

Newbie (1/14)

4

Reputation

1

Community Answers

  1. Ok. I am sorry but my solution I think is not good for your case It seems you have a different issue.
  2. Hi. I can see from your table you should have a template called shipped. Have a look in your mails/ folder there will be folders for your languages and in there are your templates. If there is not a template called shipped then that is your problem.
  3. The solution was simple for me to find. You need to look in your database using phpmyadmin, look for ps_order_state_lang here are the details for all of the possible order states. Mine had several missing including in_transit which is the name of the template in public_html/mails/en See the images it's easier to understand So match them up and it fixes it . Cheers
  4. Ahh sorry, some details. I grabbed the source as 3dsecure was loading and found a link at the bottom that was http://www. So I looked at footer.tpl in my theme folder and sure enough someone had added a link at the bottom http://www. after removing it I tried again and the insecure content was gone so the page loaded. simples really. Thanks
  5. OMG after 5 attempts trying to edit it seems I cannot place http:// anywhere in the line or the forum rejects the entire line
  6. Ahh sorry, some details. So I looked at footer.tpl in my theme folder and sure enough someone had added a link at the bottom http://www. after removing it I tried again and the insecure content was gone so the page loaded. simples really. Thanks
  7. Hi all, My client has paid for the module mentioned above which has stopped working recently on his live site. After entering card details and waiting for the 3dsecure frame to arrive it just dies to the homepage which is loaded in a frame. I tried debugging through the server logs and could not see any connection to sagepay or anywhere. So I setup a spare domain with a fresh install of PS 1.6 and setup a test product and sagepay and everythnig worked ok until I enabled SSL now we get a blank frame. firefox tells me there is insecure content that has been blocked, if I suspend protection in firefox the 3dsecure frame loads and I can checkout. I am told I need SSL to checkout in live mode for Sage (but it worked without ssl ). Why is there insecure content inside the iframe ? during a card transaction ? I can see from the sagepay modules code it checks for SSL and uses https if present. Any ideas Please Thanks Ken
  8. Hi, Does anybody know where the price is calculated in the code of Prestashop ? I need to reverse the specific price rules reduction percentage so it is an increase I've found what I thought was it in price.js curPrice = price.value * (1 - (rpercent.value / 100)); However changing the - to + does not work If anyone can figure it out there is cash on offer I need this so I can sell to non eu countries without bumping up the shipping charges too much
  9. Does anyone know how I would set this up: My client sells some items that are unique, cowhide footstools that are each individual and therefore there is only one. However he does offer a choice of legs, If I set each quantity of leg to 1 Prestashop will happily sell 7 footstools ( one for each leg type ) how do I set the item as out of stock after 1 sale but offer a choice of leg ? Any ideas I would be most grateful, even if it means buying YAM ( Yet Another Mod ) Cheers Ken
  10. Hi all, Hope this is the correct place for this query. Can anyone point me in the right direction to find where Prestashop uses the specific_price so I can reverse the percentage reduction. I need to increase prices for one country by 44% for all combinations and all products. I have purchased Geo Targeting Pro which detects the country ok but specific prices can only reduce by a percentage or use a fixed price. The specific price enters in the DB a reduction 0.44 but where is the maths being done? I did find in public_html/classes/Product.php this section but dont know if this uses the reduction and if it does how to use the 0.44 as an increase. // Reduction $specific_price_reduction = 0; if (($only_reduc || $use_reduc) && $specific_price) { if ($specific_price['reduction_type'] == 'amount') { $reduction_amount = $specific_price['reduction']; if (!$specific_price['id_currency']) $reduction_amount = Tools::convertPrice($reduction_amount, $id_currency); if (!isset($specific_price['reduction_tax']) || (isset($specific_price['reduction_tax']) && $specific_price['reduction_tax'])) $specific_price_reduction = !$use_tax ? $product_tax_calculator->removeTaxes($reduction_amount) : $reduction_amount; else $specific_price_reduction = $reduction_amount; } else $specific_price_reduction = $price * $specific_price['reduction']; } if ($use_reduc) $price -= $specific_price_reduction; // Group reduction if ($use_group_reduction) { $reduction_from_category = GroupReduction::getValueForProduct($id_product, $id_group); if ($reduction_from_category !== false) $group_reduction = $price * (float)$reduction_from_category; else // apply group reduction if there is no group reduction for this category $group_reduction = (($reduc = Group::getReductionByIdGroup($id_group)) != 0) ? ($price * $reduc / 100) : 0; } else $group_reduction = 0; if ($only_reduc) return Tools::ps_round($group_reduction + $specific_price_reduction, $decimals); if ($use_reduc) $price -= $group_reduction;
  11. One of my stores is adding £10 to the price for a Turned Mahogany Leg No Castor and it should not impact the price. I've added a screenie of the combination page for a product. Any ideas anyone ? Thanks
  12. Hi, I fixed this problem by disabling all the added modules and upgrading to 1.6.0.14 and so far all is good again, now to enable modules one by one to see if it breaks. I do have another problem, my top horizontal menu is messed up and opens all sub categories on load please see http://www.cowhide-footstool.com/en/cowhide-footstools/246-medium-brown-cream-cowhide-footstool-cfs0103.html a simple fix I hope anyone ? Solved, after checking the source I could see the css for the menu was not being loaded but it was in the correct place, turned out to be permissions thing on the server ( I'd uploaded as root and not the site owner )
  13. Hi all, If I enable multistore and add a new shop it breaks the inner zoom and large image pop out This is what it should be like http://www.cowhide-footstool.com/en/cowhide-footstools/247-large-square-black-leather-footstool-cfs0114.html Instead I get : Notice the magnifying glass has gone, and you cannot click the picture. There is also a java error Warning: Expected 'none', URL, or filter function but found 'progid'. Error in parsing value for 'filter'. Declaration dropped. Source File: http://www.cowhide-footstool.com/themes/simplio/css/global.css Line: 2001, Column: 12 Source Code: filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#ededed',GradientType=0); } Any ideas where to start ? Thanks Ken
×
×
  • Create New...