Markdown is a fast and efficient way to write content for the Web. It’s easy to write, easy to read, and easily converted to HTML. It empowers writers and bloggers to write without the use of overcomplicated and visually exhausting code. The syntax was created by John Gruber in 2004 […]
Daily Archives: August 13, 2021
I just installed an Adobe Commerce 2.4.3 B2B + SampleData, but when I open my catalogue of products in the frontend I don’t see products in the list, even seeing products in the backend, I thought it would be an issue caused by the reindex, during the reindex I had […]
After installing Magento 2.4.3 + B2B + SampleData, I wasn’t able to test the Shared Catalog feature. What’s the process to install it and test it properly?
I Hope My Question will not be marked as Irrevlant as Hyva is grown highly in market in My Custom Component, I want to add a Product to the cart so I created a graphl request to create an empty cart and save cartId in data.cart.cartId It works fine but […]
Magento 2.4.2-p1 Porto theme I have spent all day yesterday trying to figure this out unsuccessfully. In the Porto Theme Demo 1 – there is a black banner on the very top which says: Get Up to 40% OFF New-Season Styles MEN WOMEN *Limited time only X https://www.portotheme.com/magento2/porto/demo1_en/ I actually […]
I’m overriding this default block file and need to filter the category by id. MagentoThemeBlockHtmlTopmenu how to addFieldToFilter to this children protected function _getHtml( Node $menuTree, $childrenWrapClass, $limit, array $colBrakes = [] ) { $html = ''; $children = $menuTree->getChildren(); $childLevel = $this->getChildLevel($menuTree->getLevel()); $this->removeChildrenWithoutActiveParent($children, $childLevel); $counter = 1; $childrenCount = […]
How to grep for lines that end with a letter a or d followed by xy I know that using $ you can check for the ending but not sure how to combine this and use or condition
I am trying to locate PHP code that will throw error on a update example of PHP code $variable[inside] should be $variable[‘inside’] im trying to scan through the files using grep to solve them but not much success with the regex ive done grep -iR '$*[' ./ it shows the […]
I have a directory say foo with permission rw-r—-x I want to change the permission to r-xr–r-x. I can do it like chmod u-w foo, chmod u+x foo, chmod o+r foo I was wondering if there is a way to combine these three commands into one without using octal numbers