Jump to content
thirty bees forum

M4ketech

Members
  • Posts

    19
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

M4ketech's Achievements

Newbie

Newbie (1/14)

1

Reputation

1

Community Answers

  1. When the Merchant Editions is getting Slack or forums/chat? I vote for Slack channel. @Traumflug
  2. M4ketech

    Goodbye

    Since im doing new store now. Im been doing some search around. Its just strong community or leaders bring more users, like Shopware is even missing some features: https://www.shopware.com/en/roadmap/ seems like its missing even order tracking and even the Stripe payment method and lot of more features what small stores would want. One way when leading is working, is just list what extensions Thirty Bees has and list those in their sites. Like if we get Adyen payment method, then Thirty Bees should be at https://docs.adyen.com/plugins This way more users will find information about the Thirty Bees, like i did find most of platforms that way. If client says "I need use this payment method", i just google "XXX Extensions". There is small bugs what we need fix soon, but some people like me who checks Github pull requests, its not looking good. And there is still stuff like "Donation Miner", what could scary some people away thinking that is some weird scam module (and you cant uninstall and remove it). I must also say im not big fan of Core Updater, because updating core is usually bad if you have custom stuff. Same goes to Community Theme Configuration, if i remember right you need this for something really small (maybe it was something to do with live view so you can get front page working).
  3. M4ketech

    Goodbye

    What? Discord and private forums? 😮 Invite me please. i agree with @musicmaster the name Thirty Bees is a bit of a handicap. There is also Magento, Sylius, Opencart, Prestashop, Shopware, CubeCart etc. most of them have "cart" or "shop", and those names without, those are short ones. Like Sylius and Magento. I did work with Reaction commerce, but i always forgot that project, since name is too hard to remember. Saleor is nice to remember, i think its good name. Saleor has nice website targeted to people moving from Magento.
  4. Oh yeah thanks. It was simple, i didnt see " Tracking number " at that row. Been using platforms where you can enter tracking code same time you change status to "shipped".
  5. Hey, After some sales i did face issue, or not issue but its always taking time to write emails to clients with package tracking code. So i cant find any way at dashboard to just paste the tracking code and press "send". Im missing something, or is this feature something what is not coded to TB?
  6. M4ketech

    Goodbye

    Hello everyone. I agree with "Thirtybees in order to move forward must drop PS compatibility, redesign default theme. It must be attractive." TB is TB, and that is reason why its good. Im been doing code side with Opencart since 1.5.X something, that was years ago. I didnt like Opencart version 3 changes, too big steps and everything was "new". Thirty Bees is fast, but that is true Prestashop 1.7 is more modern and with good host (even like "cheap" root server) its damn good. I was thinking about TB modules, like payment modules (maybe not for free, but dirty cheap) since i need do something and live. I know that Opencart marketplace takes 50% from sales, that is much, but i cant reach 500$/month limit so i need live with that, that only means that extension prices are higher. I cant remember how i did find Thirty Bees, but that wasnt any marketing, maybe is just read something from Quora. I must say its been fun and nice to work with TB store, but sometimes i just feel "Why im using this, this is just fork" and when i need do custom stuff, what keeps me forking something else? Now when im doing new store, i dont know what i pick. I want active community with leader. So if i make custom stuff, modules or find bug fixes i can share those and my time is not going wasted.
  7. You need modify the code side, like here is example: https://github.com/thirtybees/thirtybees/issues/978 I did do that and now its working fine.
  8. Okey, that comes from product.tpl what is included in one folder above /templates/ in niara folder. Fixed now
  9. As i can see from product-wide.tpl: {if !empty($features)} <section id="product-features" class="page-product-box"> <h3 class="page-product-heading">{l s='Data sheet'}</h3> <div class="table-responsive"> <table class="table table-bordered table-condensed table-hover table-data-sheet"> {foreach from=$features item=feature} <tr class="{cycle values="odd,even"}"> {if isset($feature.value)} <td>{$feature.name|escape:'html':'UTF-8'}</td> <td>{$feature.value|escape:'html':'UTF-8'}</td> {/if} </tr> {/foreach} </table> </div> </section> {/if} {if isset($product) && $product->description} <section id="product-description" class="page-product-box"> <h3 class="page-product-heading">{l s='More info'}</h3> <div class="rte">{$product->description}</div> </section> {/if} And i change that to: {if isset($product) && $product->description} <section id="product-description" class="page-product-box"> <h3 class="page-product-heading">{l s='More info'}</h3> <div class="rte">{$product->description}</div> </section> {/if} {if !empty($features)} <section id="product-features" class="page-product-box"> <h3 class="page-product-heading">{l s='Data sheet'}</h3> <div class="table-responsive"> <table class="table table-bordered table-condensed table-hover table-data-sheet"> {foreach from=$features item=feature} <tr class="{cycle values="odd,even"}"> {if isset($feature.value)} <td>{$feature.name|escape:'html':'UTF-8'}</td> <td>{$feature.value|escape:'html':'UTF-8'}</td> {/if} </tr> {/foreach} </table> </div> </section> {/if} Data Sheet is still top of description box.
  10. Okey, now it shows at checkout but i cant see Sofort option, even when its enabled on module settings and in Stripe settings.
  11. So its seems like this https://github.com/thirtybees/stripe/issues/25 is the problem, but i cant get it working no matter what.
  12. No it did go crazy and this happened Seems like there is no way to hook modules New Products to "displayHome". So until i get that fixed home page is empty. Dunno is this bug or ?
  13. I dont know why i didnt work with admin side, but live edit did remove the hook and now its gone. Funny fact, when i see live view / edit, Home page has only: Block Featured Products, Block Bestsellers, Bees Blog Recent Posts and Google Analytics. And Block New Products is missing from Home. Back end shows little different:
×
×
  • Create New...