OroCRM Placeholders

If you need to change the appearance of your application, or just insert some specific data – you have a few ways to do it. The most popular method is to use native Symfony ways. You can overwrite a part of the logic from a bundle and replace a template with it. You can also overwrite a template by creating a similar template in the app/Resource… Another way is adding extra code to the native template, but it is a really bad practice, so try to avoid it.

Fortunately we have a UI bundle in OroCRM. The UiBundle in OroCRM is very flexible. In this post we want to show you how you can add your own data blocks to the appearance of your application without overwriting any view.

If you have ever developed the bundles for OroCRM, you should know that there is a need to add a button to different places. OroCRM developers can find many ways of adding different types of buttons on the pages. And our article will describe the general button’s types.

View product button on the product edit page in Magento admin

Hello dear friends. While working with Magento, many of you may have noticed that, when you manage products in the admin you need to see how the product looks on the frontend. Of course, you can open a new page, then open frontend search or write direct url address to this product page, as Magento does not have the button or direct link from the admin page to the frontend product page, but it is not very simple way. Let’s create module with this feature.