Role-specific centers determine the set of tabbed pages that display, optimizing navigation: Classic Interface: Finance Center: Shipping Center: Sales Center: Note: All users can use the Classic Interface by updating their user preferences:
Month: November 2022
Install stripe issue resolved
Issue- solution- In project folder vendor folder delete ->again create a vendor folder copy the htaccess file from magento vendor folder and paste in to the project vendor folder. Then open composer json file delete the svddevelopment line composer update ->upgrade->deploye then stripe is installed.
Proposal For Cash Sale PDF Template
Cash Sale PDF J-curve would like to create the Cash Sale PDF template as per given layout Our Solution The requirement can be achieved by customizing the advanced PDF template of the Cash Sale and that template can be applied to the custom Cash Sale form. So, the users can generate the print by clicking… Continue reading Proposal For Cash Sale PDF Template
How to sort order in the ui_component xml file?
Need to add a Sort order near the column name. Example:
Proposal For Credit Memo PDF Template Customization
Credit Memo PDF J-curve would like to create the Credit Memo PDF template as per given layout Our Solution The requirement can be achieved by customizing the advanced PDF template of the Credit Memo and that template can be applied to the custom Credit Memo form. So, the users can generate the print by clicking… Continue reading Proposal For Credit Memo PDF Template Customization
Test case documentation – Custom product
How to Find Stock_info Details
To find the Stock Information like Internal ID , Item Name, Is in Stock , Stock Message, Stock Description, Available in Stock etc. We can Follow the bellow Steps. Create Extension Extend the ProductLine.Stock.View Console it and From the Stock Property Take the path of property which we want as shown in below Code
How to create show more and show less functionality for hiding text using jQuery
We can add Read More/Read Less button next to a too long HTML element by using jQuery.The amount of content displayed can be changed by clicking on the buttons. Instead of showing a complete paragraph on a webpage, only some part of the text is shown initially and a button is added which shows more… Continue reading How to create show more and show less functionality for hiding text using jQuery
A simple disclosure example.
This example shows a simple <details> element with a <summary>.
How to Open Bootstrap Modal Popup on Button Click Using jQuery
HTML code JQuery $(document).ready(function(){$(‘#MybtnModal’).click(function(){$(‘#Mymodal’).modal(‘show’)});});