Jump to content

benjaminabel

Members
  • Posts

    8
  • Joined

  • Last visited

Profile Information

  • Activity
    Freelancer

benjaminabel's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. I am developing a custom theme for prestashop 1.5.6.2, but the problem is, I need to run it on prestashop 1.5.5. Is there a way to downgrade modules/theme? Where can I look for replaced/deprecated functions? Changelog is not really helpful here. Thanks in advance.
  2. Then, I guess, I need to make them separate. Prestashop theming is one of the most challenging theming I ever experienced. Thanks god prestashop supports smarty... Otherwise it would be nightmare. Thanks a lot for the answers!
  3. Okay, thanks a lot! I think I will just replave the original modules, because its one-time upgrade for the target site. Or there is will be a problem on modules update?
  4. Thank you! By the way, if I modifying any module, do I also need to include Modules folder from root of prestashop folder? If yes, does Theme import will handle replaces of .php files? Yep, I think so.) I started with a basic prestashop css and it was really horrible experience. Thanks god I had a great idea to install Foundation SASS and use its own grid.)
  5. Hi, everyone, Currently I am developing theme for Prestashop based on Foundation 5. Theme is almost ready, but I am facing one big problem now. My theme uses custom hooks and module positions. The problem is, I need to parse this theme to the existing shop. This shop has its own positions/modules, etc. As I guess, just uploading theme folder (with modified templates) and modules folder (with modified modules) will not give the exact result. How can I pass my own modules positions (but not settings! Because this shop have its own settings, like carers, payment systems and other useful data) to the existing install? Is there some configuration file that I can compile for theme? Thanks!
  6. Hm, nice idea. What if I will load the page in regular iframe? It's not a crossdomain call, so I can even style it whatever I want. As I remember, fancybox with 'iframe: true' opens a modal window. But how can I open this window inside the page itself? In slide down menu or something.
  7. I'm familiar with JS and AJAX itself (PHP, I guess, is still my trouble), but, looks like there is something more in Prestashop, that I should know about that to do so. First, I am sending $.post to order-opc.php. Then, I am getting response like this: url: '{$base_dir}modules/order-opc.php', type: 'get', data: 'ajax=true', success: function(data) { //Append order-steps to current page body $('body').append(data); But, as I see, this approach isn't working here.
  8. The thing I want to accomplish is making order on the site by loading the order "Order steps" page in modal window or slide down block. I've been reading about AJAX in Prestashop, but still, didn't understand how this should work. Can anyone explain how can I properly call the other page with AJAX in Prestashop? Thank you in advance.
×
×
  • Create New...