WooCommerce 3.7 RC1
View On WordPress

Janaina Medeiros

★
No title available

ellievsbear

No title available
Alisa U Zemlji Chuda
Jules of Nature
Sweet Seals For You, Always
"I'm Dorothy Gale from Kansas"
almost home
styofa doing anything
🪼
No title available

pixel skylines

Product Placement

if i look back, i am lost
tumblr dot com
i don't do bad sauce passes

#extradirty
Stranger Things

seen from United States
seen from United States
seen from United States

seen from United States
seen from United States

seen from Brazil
seen from United States
seen from United States

seen from United States
seen from Türkiye
seen from United States
seen from South Korea

seen from United States
seen from Türkiye

seen from Malaysia

seen from United States
seen from Germany
seen from Netherlands

seen from Australia
seen from United Kingdom
@webdesigner-india
WooCommerce 3.7 RC1
View On WordPress
Magento 2: How to Get Subcategories of Specific Parent Category <?php $objectManager = \Magento\Framework\App\ObjectManager::getInstance(); $catId = 2; // Parent Category ID $subcategory = $objectManager->create('Magento\Catalog\Model\Category')->load($catId); $subcats = $subcategory->getChildrenCategories(); $_helper = $this->helper('Magento\Catalog\Helper\Output'); ?> <ul class="sub-cat"> <?php foreach ($subcats as $subcat) { $_category = $objectManager->create('Magento\Catalog\Model\Category')->load($subcat->getId()); $_outputhelper = $this->helper('Magento\Catalog\Helper\Output'); $subcaturl = $subcat->getUrl(); $_imgHtml = ''; if ($_imgUrl = $_category->getImageUrl()) { $_imgHtml = '<img src="' .
Magento 2: How to Get sub category of current category in Magento2 < ?php $objectManager = \Magento\Framework\App\ObjectManager::getInstance(); $category = $objectManager->get('Magento\Framework\Registry')->registry('current_category'); //Get Current Category $subcats = $category->getChildrenCategories(); $_helper = $this->helper('Magento\Catalog\Helper\Output'); ?> <ul class="sub-cat"> < ?php foreach ($subcats as $subcat) { $_category = $objectManager->create('Magento\Catalog\Model\Category')->load($subcat->getId()); $_outputhelper = $this->helper('Magento\Catalog\Helper\Output'); $subcaturl = $subcat->getUrl(); $_imgHtml = ''; if ($_imgUrl = $_category->getImageUrl()) { $_imgHtml = '<img src="' .
WooCommerce 3.1 RC1
View On WordPress
WC 2.2 order statuses: plugin compatibility
WC 2.2 order statuses: plugin compatibility
View On WordPress
Magento 2: Add new tab in Product detail page
New tab in product detail page is very easy task with product attribute. Use below steps and check it out.
Step 1. Create Product Attribute “video”.
Step 2. Create file “catalog_product_view.xml” in the app/design/frontend/{vender name}/{theme name}/Magento_Catalog/layout
In the file write the below code:
<!-- this is code to add new tab start --> getVideo video video none Video <!-- this is code…
View On WordPress
Magento 2: Get image url in template file Step 1) Put your image on Your Magento 2 Path: /app/design/frontend/< Vendor >/< theme >/web/images Step 2) Use this code to call the image in phtml file <?php echo $block->getViewFileUrl('images/demo.jpg'); ?>
Magento2- Display Static Block in Phtml file & CMS page
Magento2- Display Static Block in Phtml file & CMS page
In XML File:
<referenceContainer name="content"> <block class="Magento\Cms\Block\Block" name="block_identifier"> <arguments> <argument name="block_id" xsi:type="string">block_identifier</argument> </arguments> </block> </referenceContainer>
In Phtml File:
<?php echo $block->getLayout()->createBlock('Magento\Cms\Block\Block')->setBlockId('block_identifier')->toHtml();?>
in CMS…
View On WordPress
WampServer issues after Windows 10 upgrade
WampServer issues after Windows 10 upgrade
I was facing a similar problem with WAMP SERVER. In Windows 10, the Word Wide Web Publishing Service comes pre-installed. This is related to IIS and you can remove it if you don’t need it.
This blocks the port 80 making Apache act weirdly. You can do the following and try again.
Go to Start, type in services.msc Scroll down in the Services window to find the World Wide Web Publishing Service. Righ…
View On WordPress
How To Add drop down on Magento Product Page Step-> 1 :: Go to app/design/frontend/base/default/template/catalog/product/view/addtocart.phtml In the addtocart.phtml file find the following code(around line 33)
Pegadas da luz e dos homes
Remarkable Metal + Wood Fusion in Fairfield House by Webber + Studio
Open app/design/frontend/YourPackage/YourTheme/template/catalog/list.phtml Find: getImageLabel($_product, 'small_image'), null, tr...
Magento – Display Sale Icon If Special Price on Category Page
jQuery Fix for All Browsers $('[placeholder]').parents('form').submit(function() { $(this).find('[placeholder]').each(function() { var input = $(this); if (input.val() == input.attr('placeholder'))...
HTML5 Placeholder Input Fields Fixed with jQuery