Jump to content

socks

Members
  • Posts

    11
  • Joined

  • Last visited

Profile Information

  • Activity
    Web development agency

socks's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. This link might be of some help. https://www.prestashop.com/forums/topic/202284-how-to-removeedit-powered-by-prestashop-in-facebook-share-link/
  2. This happens in the product management section. When I update the quantity of a product, sometimes it goes to: http://www.example.com/administrator/index.php?controller=AdminProducts&token=randomnumbers&id_product=274 Instead of http://www.example.com/administrator/index.php?controller=AdminProducts&conf=4&token=randomnumbers leading to a 404 error: It looks to me that it could be a server thing, as there were no changes in AdminProductsController.php or any core files.
  3. Noted, assuming those are the correct tables, it shouldn't be too hard to do a quick and dirty php script the duplicate orders using an ID. If it works, I'll just drop the script here for other people to use.
  4. Hi, I'm looking to duplicate an order wholesale, with no changes. I Investigated a little, and it seems like the order details are stored in multiple tables, as shown below: psc_orders psc_order_carrier psc_order_cart_rule psc_order_detail psc_order_detail_tax psc_order_history psc_order_invoice psc_order_invoice_payment psc_order_invoice_tax psc_order_message psc_order_message_lang psc_order_payment Is this correct? If so, then I can probably just do a quick sql command to copy it to a new row. I just need to confirm it. In the meantime, I'll do some testing.
  5. I absolutely missed this topic. I do have coding knowledge, and am comfortable poking around the code. I appreciate any assistance.
  6. Hey, I'm looking for a module that can replicate the functionality found here: http://www.muakids.com/ironondots_order.htm Specifically, the custom text (with different fonts) on an image. The specific requirement is that the text cannot be moved around. I've tried a few t-shirt modules, but none really seem to have the features I need. Any help is greatly appreciated.
  7. We are looking to allow our customers to purchase more items than we have: An example would be: When customers order more than what we have in stock (X), we will have a message to notify them that they can order up to X qty of the items. If they want to purchase extra items, they can send in an enquiry to our store staff. We will get back to them with the lead time. If they are agreeable and commit to the purchase, they can activate the pre-order function and pay for the pre-order items before our store staff places the order for them. Any thoughts?
  8. That module looks pretty good. I'll investigate it further. Many thanks.
  9. Hey, I'm trying to filter items for vehicles based on year/make/models, kinda like http://www.carid.com/ . The idea I have right now is to have the products in categories relating to the criteria. So for example, an exhaust can be in the categories: Year: 2007 Make: Audi Model: R8 This would be the easy part. The question now is, is there an easy way to filter it from a dropdown? I've built the dropdown, I just need the logic to correctly pull that product based on the dropdown selection. Note that I am more of a programmer, so I can poke around the code if needed. I just need a pointer in the right direction. If I somehow manage to solve it, I can post the solution here so that others may benefit.
  10. Hi, I'm attempting to make it so that the dropdown for the "Top Horizontal Menu" module shows horizontally, rather than vertically. I noticed that it uses the superfish method, so I tried adding in sf-navbar into the parent ul, without working. Anyone have any thoughts on how I could achieve it? Thanks.
  11. I know this is an old topic, but MisterPresta pointed me in the right direction. Until this is fixed, edit the file "AdminCustomerThreadsCOntroller.php" line 407. Change: $from_name = $contact->name[(int)$ct->id_lang]; To: $from_name = $contact->name; //[(int)$ct->id_lang]; commented out just in case. Should fix it.
×
×
  • Create New...