Custom Options not showing when creating order in Magento Admin - magento-1.9

I assume this is a magento bug. When I try to place an order via Magento Admin Order Create, the custom options for the product do not show up. However, the custom options works well from the frontend. See image.
How can I resolve this? Thanks for helping out.

It's seems you use customer module
What is the name of the module?

Related

Custom added Status Reason does not display in SSRS report via FilteredView

I recently have a problem, in which I can not see newly added status reasons in my custom report.
I have created a report based on FilteredView in which status reason of opportunity must display.
It just show the original status reason ( canceled ), but the others I have created does not display.
I should display them in a chart, but they do not appear.
As administrator its OK, and I can see them.
But other users can not see.
What is wrong?
Should I put some security role somewhere?
Any help will be appreciated.
I have second language.
And that field did not translate into the second language, and that was the cause of this.
I export translation, edit that and import that.
Problem solved!

Angular 4 Dynamically Create Component from User Definable input

I'm looking to build an App in Angular 4 that would allow components to be dynamically created from storage (database, url, server stored file). The goal is to allow users to build there own components to create custom dashboards to view data.
I've been looking through google and stackoverflow to see if something like this has been achieved, but I have not seen anything to point me in the right direction.
If this is possible would anyone be willing to explain or link me to a resource to help me get started on this?
Thank you in advance
You can check these out:
https://medium.com/front-end-hacking/dynamically-add-components-to-the-dom-with-angular-71b0cb535286
https://angular.io/guide/dynamic-component-loader
I prefer number 1 because it provides a very detailed & clear guide.

how to add another environment in advanced template

I m using yii2 2.0-dev AdvancedTemplate and need to add another environment (API),
similar to the currently working Frontend, Backend.
I tried to copy the files and search trough the settings but there are still some errors
and I feel this is the wrong way to do it...
There should be automated/console way to do this... but I find nothing in the docs.
Any ideas ?
Just create folder API in /environments/[prod|dev|other] and call ./init command

App Namespace Lost

I created an app then accidentally deleted it and when I tried to recreate it I got the message that the app namespace was already taken. Is it possible to get the same namespace?
Once you delete an app you created on FB, you can't re-create it with same namespace. It is a bug in FB. Once I had same issue and when I tried to get hep from FB community help center, I found many people having same issue.
Only if you manage to contact that developer and bribe him with beer or chocolate. :)
I don't think there is much you can do about it. Much like someone taking your domain name, the app namespace defines your application within Facebook - this is why it has to be unique.
Why don't you try placing a hypen - between words in your namespace.
For example:
https://apps.facebook.com/sean-sekora

Delete accounts with Razor Web Pages

So, I'm working through a basic membership management admin panel but I can't quite figure out how to delete a user account. I can create one easily enough with the WebSecurity class, but this class doesn't appear to have any functions to delete an account.
What exactly do i have to do to get this functionality?
Edit: If you are using ASP.NET Web Pages 2 you are now able to accomplish the above by calling the DeleteUser() and DeleteAccount() functions available in WebMatrix.WebData.SimpleMembershipProvider. If you are using ASP.NET Web Pages 1 the answer is still valid. Refer to the SimpleMembershipProvider Class MSDN documenation for more information.
You will have to write your own code to delete the account. It's simply an entry in your database, so use the Database helper to remove the relevant rows from the webpages_UserInRoles,webpages_Membership and UserProfile tables.
The checkmarked answer is incorrect. Use
Membership.DeleteUser()