Jump to content
thirty bees forum

nickon

Members
  • Posts

    285
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by nickon

  1. Hi all, 

    Fist of all I wish all a happy and healty new year. 

    I followed this whole story and waited to see what will happen in the end, since we also have a PS 1.6 store that will eventually need to be upgraded to something else. 

    I have two feelings about the future of TB 

    1. I am glad that TB is not dead and someone is taking over.

    2. I think TB has a small change to survive.

    This seems to be season 2 of TB fork from PS. But this time with much less passion from the community (@wakabayashi is a good example). When TB was started by @lesleyand micheal, we had the same senario as we have now with @Smile and @datakick , one on the bussiness site and one great dev. Soon micheal stopped working on TB I guess due to the lack of money.  Wrong decissions where made (see elastix search) and with the health issues @lesley had, TB runned on autopilot by the community until now.

    But I think that biggest mistake was that @lesley and micheal where too much focused on the users they could migrade from the PS 1.6 eshops. They failed to understand that the platform alone does not mean much. The biggest issue are the modules and themes the merchands are using. So hours where wasted on fixing other ppl;s modules and themes instead of developing TB.  Keep in mind that back then the whole 1.6 vs 1.7 was in a great debate, now I don't think that it is that much.  Big ecommerce sites that need to be updated regullary have switched and small sites like ours are just waiting until something fails to migrade. Thing is you can't expect much donation money from small sites. So you are basiclly on the same path to failure. 

    What makes things worse is that although the TB transission to the new owners is in the works for months. I was hoping that @Smile would already have a roadmap ready, since (from my understanding) there where two options, buy TB or fork. I sadly didn't see this. 

    My 2c :

    1. Find a way of raising money. Depending on donations won't cut it.

    2. Find a way to bring more devs on the project. Give reasons to activate members that have contributed on the project already. 

    2. Stop depending on PS 1.6 users. Make TB it's own. Like any NEW platform give a basic working version and let other's worry about the themes and modules . If they need a basic module fixed either do it for free if it would not take more than 30min or charge a amount (smallest amount possible )

    3. Don't try to make everyone happy. You can't 

     

    P.S. Sorry for the long post

    • Like 3
  2. 1 hour ago, DRMasterChief said:

    That was my idea with  plain txt  thing,  movieseals was more detailed about this.

    Yeah I missed the database name change. moving on...

    Thanks all

  3. 43 minutes ago, DRMasterChief said:

    Hmm yes, simply export these files via  phpmyadmin  or just safe them as  plain txt,  then import it.  I think CMS sites are not that numerous and big than items ?!? 

     

    Good luck!  Maybe you will let us know when you are finished and 'how to' do this. 

    I was hoping somebody could post a sql query on how to do this 🙂 I could copy paste them as txt but I don't want to risk loosing id's  structure etc.. 

  4. Hi all, 

    A prestashop site is too messed up to migrate. So I was thinking to do a fresh tb install and migrade thing manually. the only thing I don't know how to migrade are the cms pages. I was thinking to export the pages via phpmyadmin and then importing to tb

    Does anyone has an idea on how to do this ?

    Kind Regards

  5. Hi,

    So we have a website deticated to professional services. while reading about seo one thing always comes up. "Content" and I can understand that this is important. so since ps/tb are ecommrece sites there are not many things do do regarding articles etc. So I think about two options. 1. use the cms page to create landingpages/articles or install wordpress on a subdomain and link to the product from there.

    What would be the best solution?

    Kind Regards

  6. What problems did you get with opc. Is there a bug or something else?

    Meanwhile I tried to hide the carrier section by adding under your code 

    $('#order_carrier_content, #order_carrier_content').hide();

    (where order_carrier_content is the carrier section) but it doesn't work

    I must be missing something....

     

  7. The product section is quite nice. I like the product name and price on as the header. I miss the total product quantity.

    One thing I am considering on adding to my mod is to hide the content (not the title) of step 2 and 3 until the user login or sign up. Eg I find the "No carrier available confusing"

  8. Didn,t get an email about the replies...

    Anyway,

    Thanks for the feedback,

    @datakick This has more to do with the cookies part of the gdpr. The gdpr module lists all installed modules and gives you the option to add them to a cookies category and inform the client about the cookie it is creating. If the customer does not select the cookie of that module, the module will be disabled thus removing the cookie. Reinstalling the module worked and since this is a multilanguage site the max_var_inputs where to low to list all the modules. the developer fixed that problem

     

    Thanks again

  9. Hi,

    I had created a module a few years ago and it still is working. Problem is that while trying a gdpr module the module is not listed in the installed modules. After contacting the gpdr module developer he said that it does not show in prestashop core as installed module (although the module is working fine).

    In short the module adds some code to the page so that it can work with a price comparison site.

    The install script is the following.

    <?php
    
    if (!defined('_PS_VERSION_'))
        exit;
    
    class skroutzAnalytics extends Module
    {
    
        protected $_errors = array();
    
    
        public function __construct()
        {
            $this->name = 'skroutzanalytics';
            $this->tab = 'front_office_features';
            $this->version = '1.0';
            $this->author = 'Niktaris Nikos';
            $this->need_instance = 1;
    
    
            $this->bootstrap = true;
    
    
             parent::__construct();
    
            $this->displayName = $this->l('skroutzanalytics');
            $this->description = $this->l('Adds skroutz analytics.');
            $this->confirmUninstall = $this->l('Are you sure you want to delete this module?');
        }
        
        public function install()
        {
            if (!parent::install() OR
                !$this->registerHook('orderConfirmation') || !$this->registerHook('header')
                )
                return false;
            return true;
        }
        
        public function uninstall()
        {
            if (!parent::uninstall())
                return false;
            return true;
        }
    
    
        public function hookDisplayHeader()
        {
    
            return $this->display(__FILE__, 'header.tpl');
    
        }
        public function hookOrderConfirmation($params)
        {
            // var_dump($params['objOrder']);
    
            $order = $params['objOrder'];
            $products = $order->getProducts();
    
    
            // var_dump($products);
            $this->context->smarty->assign(array(
                'order'=> $order,
                'order_products' => $products
            ));
            
            return $this->display(__FILE__, 'confirmation.tpl');
        }
    
        
    }

    Is there an obvius error somewhere that I am missing?

    Would be nice if a dev could help

  10. Hi,

    One minor issue I am facing with my tranformer theme in regards to my modifications is that when I hit the save account button and there is an error in the form, the page does not move enough up to show the error message. Can anyone help. What I basicly need to do it to if an error apears in the opc page instead of moving to the error positon I need to move to the top of the page

  11. 17 minutes ago, danwarrior said:

    Yes, 2 columns is available too 🙂

    Nice! Since we are talking about features. It would be nice if the "save address" button could be skipped and the shipping cost calculated with ajax. Also would be nice if it was not needed to go to payment module to confirm the order..

    Just my 2c

  12. 6 minutes ago, danwarrior said:

    Just today I'm making a webinar (in spanish, and advising people to work with TB, hehe: https://escuela.elplandedan.com/atrapa-al-ladron/), so please give me some hours, I'm working so hard these days, that's why I'm not so active here xD

    My partner @Rafael Calero is helping me with the Easy Checkout module, he will post here later too.

    Here you are, a screenshot of Easy Checkout working on TB. This web is still under construction, so I can't show you the front). We're working on more options of configuration and a few social login buttons. 

    We'll talk today, if we finally decide to donate it it will be the free version and improve another premium, but free is 100% usefull and nice 😉

    I didn't told you that my specialization is just Conversion Rate Optimization 🙂

    Screenshot 2019-01-30 at 23.51.32.png

    Take your time. I don't have  a need for it atm. if a free version is available and functions OK maybe I will use it too on ps 1.6 :-). But please have an option for two column

    • Like 1
  13. 1 minute ago, Smile said:

    I like the idea of buttons that work like here: http://transformer2.sunnytoo.com/thirteenth/module/steasycheckout/default

    I don't think it makes much diffenence. But this is just me. I also don't like the 3 column layout. Keep in mind that this is a ps 1.7 module and 1.7 has a different opc page. In tb/ps 1.6 there a few "must"

    You must save userdata

    You must accept terms (or you should)

    You must go to a diffenent page to complete payment.

    My solution is mostly comsmetic

    So with that in mind maybe @danwarrior or @datakick will come up with a better solution.

     

    • Like 1
  14. 8 hours ago, danwarrior said:

    I'm working to keep it as a premium module, but let me think about it. Is not easy to pay bills if I give away a big part of my work :classic_unsure: 

    I though on 2 versions: one free and another premium, how do you feel with that?

    I'm open to new suggestions. 

    I understand that. I personally don't agree with all beeing free. You have to make a living and pay bills. If the price is low enough I don't see why a mechant should not buy it.

  15. 11 hours ago, Smile said:

    I like the design! Can we get the code somewhere 😉

    What I like a lot is the login/new customer buttons like here: http://transformer2.sunnytoo.com/thirteenth/module/steasycheckout/default 

    Saves space and a lot more clear!

     

    I hope this can be added to the core as well as your changes....

      

    If you give me some time I will try to modify the tb checkout page and post the modified files.

    As for the login/new customer buttons I don't think it look right on the current layout. But feel free to give it a shot 🙂

  16. @Mike1 Thanks for your kind words. The cart column does not follow you down.  I personally do not like it and haven't looked into it. I suppose that could be done with a "sticky" code though. @lesley & co who are more skilled than me could maybe help. As for my layout if @lesleyt or he community likes it I could adapt it to the tb layout and share it if you want. Other that the look of it though there is not else to be done. Since any other change would mean possibly breaking compatability wih other modules.

  17. @DRMasterChief but he started it (just kidding) 

    On a serious note, the main developer should be a bit more carefull when accusing someone of spreading fear. "without any evidence" And since evidence is an issue here are some posts with evidence. Hope this is evedence enough. Damn! I rairly get this upset. Sorry 

     

     

     

    • Like 1
  18. 1 minute ago, wakabayashi said:

    Remember the elasticsearch module, which was crowdfunded? The dev know the system very well and was a talented coder. (Much better than mysel ofc). But who uses the module now in practice? For who is it working?

    TB should IMO not overestimate what ppl are looking for. Simple thing that will help mechants do their jobs easy. The elastic search module is one a the bad examples where it looks better on paper than in reality. Sadly Full Page Cache is also a feature not completly developed as it should. Oh wait... I will stop talking " I am spreading fear"

    • Like 1
×
×
  • Create New...