Missing form fields for titles - sylius

I've installed Sylius (http://docs.sylius.org/en/latest/book/installation.html) and form fields for category and product title are missing. It is missing from HTML. Someone please help :)

Related

How to insert custom code on Collections List in the products Shopify

I'm Building a custom collection page in shopify, I want to show some custom code between products it can be pictures or text. How do I achieve that? can anyone help out?
Example with picture and the link here,
This is where I want to apply a similar layout. https://junghans.com.my/collections/best-selling-collection (Pass: 12345)

Please specify the product for which this rule should be applied

Hi I want to ask about odoo sales module, when i want to create a pricelist they showed up like this
enter image description here
Does anyone here know how to solve this issue?
Thank you

Prestashop How to show another field in informations about customer in BO

I use prestashop 1.7, I am stuck in the display of a field 'hobbies' which is the phoneNumber in back office prestashop with others fiels like in this image:
enter image description here
enter image description here
i'm new in prestashop and i can't found the files to edit.
I would be grateful if you help me
This place is not available to alter without modification of order view. There's no hook available in this place. You have two choices:
you can override back-office view
you can hook into displayBackOfficeHeader, check if current controller is this one related to Orders, and if so, load your data to JS variable with Media::addJsDef and insert it with JS too
If you need further assistance, let me know.

adding custom tag to order in shopify based on a checkbox in product

I made an html checkbox in my product template, now i need to add it to order whether it's checked or not(sorry i don't know liquid and search a-lot about it)
any help will be great.
Is the checkbox related to the product itself? If so then the line item properties would be the best option. There is a great walkthrough on the Shopify Forums for this.
This property will then show up along with the product in the Order page of the Admin.

Display featured products on category page PRESTASHOP

I just want to show some featured products on each category page (not home page).
I thought to use features or tags. So in the back, I add to the products I want to show a "featured" tag or feature. And then in the front on each category page I display the products of that category that have that tag or feature.
What do you think is easier? and how can I achieve this? I am so lost, so I'd appreciate any guidance.
Thanks guys
Here is how I would do this:
Create a module (obviously) to extend the product class and add a featured field (as a boolean, you can also use a position field if you want to manage something like that)
Within the module it's easy to override the admin controller to add a checkbox somewhere
On the category page, create a hook to display the featured product, or just override the categoryController to get them.
And voilĂ ! It's really easy. I just give you the steps as I won't write the code for you :) but if you need more advices feel free to ask