I want to add ecommerce function to an existing LMS project on top of symfony2. I checked elcodi and sylius. Both seem very complicate and lack good documentation on how to integrate into an existing project. I need only order, payment, maybe cart. Anyone can recommend an ecommerce bundle that fit my need? Thanks!
Try This, Symfony e-commerce bundle and shop components
https://github.com/aimeos/aimeos-symfony
Related
I was wondering if there was any newsletter bundle existing to add to a Sylius (Symfony3) app ? I searched on the net, but only found Symfony2 bundles.
Thanks for your help !
There is no official NewsletterBundle for Sylius. You can try using the Symfony2 solutions, but not guaranteed they will work.
You can of course use SyliusCmsBundle and adjust it to newsletter purposes.
I have ecommerce website in Asp.net. I want to migrate my ecommerce website to Magento.
How can I migrate products and categories from Asp.net website to magento website?
In case you lack the necessary knowledge to do it yourself, I would suggest you try a migration tool. There's a bunch of them on the market and as far as I know the majority offer a free demo option. So, you're not risking anything. My personal preference is Cart2Cart. I used to migrate my stores a couple of times already.
What's great about an automated migration that there's a minimal involvement in the process. You kinda configure the options and that's it. The price is reasonable too
Well, for this you need to hire a magento developer or team, who can migrate your product, services and categories from asp.net to magento store using best magento conversion services.
i want to implement a social share functionality in sonata admin bundle Symfony2. Whenever a editor created an article and published it that will automatically share on facebook or twitter.
Just want to know that is any bundle available which has social share functionality???
Last option
if bundle is not available then i have to made my own bundle
There is no social network API implementation in the Sonata suite at the moment, beside referencing through the SonataSeoBundle (http://sonata-project.org/bundles/seo/master/doc/reference/installation.html).
We are interested in adding this feature in the Sonata bundles, feel free to discuss it with us by creating an issue on github.
Only for Sonata Admin No. specific bundle.
You can try this in your back-end :
Facebook Bundle
Twitter Bundle
Or
try this Bundle :
https://github.com/hwi/HWIOAuthBundle
Maybe this is helpful to you.
There is here an article, maybe it helps: http://obtao.com/blog/2012/11/create-a-social-buttons-bar-for-facebook-twitter-and-google-with-symfony2/
I have been developing plugins for WordPress. Most plugin I have developed with two three classes and not so huge like Buddypress, WooCommerce or etc.
I am planning to make two open source plugins to deliver some sort of complex system (detail can't share you at the moment but later during the development) where other developers can customize functions and system for them need same as Buddypress and WooCommerce.
As I check those plugins files and realize they have register them own action and filters which developers can modify as per them need. But my problem is unable to understand completely how I should write the plugin where other developer have flexibility to override plugin function as well as they can add them own.
I know it is difficult to give definite answer but I need some sort of start-up guide so I can go into right direction. Do I need to register my action and filters? If yes how to do? if not than how can I do?
Your hint will help me a lot... Thanks a lot
You can check WordPress-Plugin-Boilerplate, it should get you started on the right path.
It may be useful to use wp-cli for generate plugin like so:
wp scaffold plugin my-plugin
Or using "WordPress Plugin Boilerplate" for more complex works: https://wpbp.github.io/wiki.html
I'm using Symfony2 and the FOSUserBundle to manage registration and logins. I'd like to add a captcha system. Is there are pre-existing bundle or tutorial on this?
Of course, I could try to roll my own using Google re-captcha. In that case, is Google reCaptcha a good choice, or should I use some other API?
There are indeed a bundles for that, take a look at:
CaptchaBundle
Or
EWZRecaptchaBundle
Both got (most likely) all the documentation you need added in the README.md file or extended documentation.
I just wrote a tiny bundle called caitcha-bundle.
According to this part of the fos user bundle documenation implementation should be quite easy because you only have to activate the caitcha bundle and add $builder->add('caitcha', 'caitcha'); to the form type.
Because captcha images and any other approaches that require some user interaction which is not related to the form itself are very annoying in my optinion, I tried to implement an invisible bot protection by using the honeypot method and a check for the time it took to fill in the form. It works well for my use cases but still has to be extended by more checks I suppose. I would appreciate any suggestions to improve this bundle.