Magento 2 show out of stock configurable product - magento2

So i have furniture bed configurable product which has 4 simple products "Single | Double | Queen | King" if in the admin panel i set the inventory of "single bed" to 0 then "Single" option is not showing at all, i want is it to show "Single" in the frontend and as Out of Stock... so i can add email option later if available.
I tried "show out out stock items in frontend" but it only works for simple product not configurable
thanks

It might depend on the version you're using of magento if you're using an older one, that I think you are because that's a more or less feature you can try this
https://github.com/interjar/configurable-child-visibility
If you're using a more recent version the should show out of the box with that option. But I must say, in the recent version of magento and without plugins most of the products they show the options even out of stock as intended but some just don't and I can't get why.
Hope it helps :D

Related

magento 2.3.5p1 all configureable products showing out of stock

Magento 2.3.5p1 store has been running fine. No changes have been made. This morning ALL configurable products are showing out of stock. The strange part is ALL the configurable products that are part of a Bundle are working as expected.
I have reset (invalidated indexes), re-indexed all data and flushed caches still showing out of stock. I have verified that all settings in backend have not been changed.
Anyone else run into this? Any Suggestions will be greatly appreciated?
My guess would be checking the actaul store's stock status, and not the default.
There is a thread on magento's forums with a couple of possible solutions like:
Checking the stack status of the store(s)
making sure that the simple products related to the configurable product are not set to out of stock by default
Here is the link

Magento 2.3.4 size swatch displayed for products with salable quantity 0

We are using latest version of Magento 2.3.4.
Whenever a customer is creating an order a salable quantity for product (child of configurable product) is decreased - which is a correct behavior. The problem is that, a bought size is still available until order is shipped.
The customer can see size - while trying to add (just sold) size to bucket, he gets information that requested QTY is not available.
I would like to disable (grey out or cross out) unavailable size.
Can I achieve this using magento settings ? Or do I have to write a custom plugin ?
You could do multiple things:
Find the template of the dropdown and break into it with objectmanager and a custom (raw) query that checks the stock for the size and disables the option. This is fastest but bad especially if you don't have caching, the queries make the template slow to load.
Make a nice extension that overrides the templates trough xml file. Also override the php files (model/controller) and change the logic to acheive what you want. This is better practice. It has been done here i think, didnt test it myself:
https://magento.stackexchange.com/questions/216373/magento-2-2-how-to-show-out-of-stock-in-configurable-product
Find an extension from 3th party.
If you have a sample of code I can also help with it.

SubCategory Joomla 3.9 showing under main menu/category

For Joomla 3.0 I'm facing the following issue:
In one of my pages I am representing Group Members (Our Group). This worked fine for a while, but we have now come to the point where the group has expanded and there are people who are departing from the group.
I therefore wish to change "Our Group" to the following:
Our Group
-- Active (Our Group)
-- Alumni (Old Members)
The display is currently set to multiple columns as can be seen here:
Example current Group Output
Preferably I want a similar banner saying "Alumni" below this containing Alumni sub-articles:
(hopefully this drawing makes sense)
Preferred Situation Sketch
Now in order to organize my items I have created a Sub-Category called Alumni (as can be seen) and when clicking that I correctly get the articles from that subcategory:as can be seen here
How should I configure the blog elements so that I get the Group members first (rows of 4, im still working on equal-sized boxes) followed by the actual last screenshot as a separate header/category?
If needed I can provide an overview of my current settings, but it still is rather unclear how Joomla handles these for me.
Site Information:
Installed Joomla version - 3.9.0
OS - Linux l
PHP - 7.2.15
MySQLi - 5.5.50
Edit: Picture of Menu - Our Group

Some doubts related to the backend users in Typo3 6.1.1

I am pretty new in Typo3 (I came from Joomla and WordPress) and reading the documentation I have some doubts related to the user manage the user in this CMS:
I am using Typo3 6.1.1 and reading here it seems to me that the user managment is quite different (maybe the documentation is related to an old version of the CMS?): http://docs.typo3.org/typo3cms/GettingStartedTutorial/EditAndCreatePagesAndContent/CreateUsersGroups/Index.html
In particular I am not understanding if in the 6.1.1 the backend user can ben divided in groups or if they simply are backend user because if I go into: ADMIN TOOLS ---> Backend User I can see the backend user but not the groups, why?
Tnx
Andrea
As you can see in mentioned doc, BE users can be divided by groups and easiest way for creating BE groups and next BE users is using WEB > List module.
Just using workflow showed at screen of this section you need to create records of both types (blue arrows) on the highest page (with id 0 - on screenshot it's called New TYPO3 site)
I'm not quite sure about the reason, but Backend User module doesn't allow to manage BE groups directly, however there's a tip (which is general for whole TYPO3) - you can create a BE group ad hoc - during the process of creating BE user by using additional icons in the form, take a look to screenshot below, the yellow pencil and black plus allows you to edit/create related records without canceling current edition.

Design ideas for multi-select items from a long list

I'm developing a system in which I need to select, from a long list os customers, some to which an specific (batch) action will be executed. For example, I want to select "John", "Peter" and "Steve" and click the "delete" button. No more than 5 customers will be selected.
The problem is that, since there're more than 500 customers, listing all isn't a good option. So far I did an AJAX search that shows just the customers that meet the criteria, but which multiselect way you recommend?
My best idea so far is a below this list in which I could either drag-and-drop the users I want to select or double click them
Any better ideas/examples?
Thanks
I don't know whether you're using jQuery, nor whether your site's design vocabulary is suited to it -- but this jQuery autosuggest plugin is excellent.
+1 for ksr's autosuggest find. I would use this in conjunction with a list box. The user types in the autosuggest input field and when they select an item it adds it to a list box. They can then add additional names via the same method, and submit the list when they've added all the names.
I would go for the pattern used by eBay. They probably did some usability research. You can find more info here: http://quince.infragistics.com/Patterns/Multiple%20Selection%20from%20a%20Large%20List.aspx