Entries by admin

How to Add Google Translate in WordPress

Today I will show you how you can add google translator plugin on the wordpress site in easy steps. First of all you have install this plugin Google Language Translator After activating the plugin go to Settings » Google Language Translator to configure the plugin. Make sure that the plugin is activated. After that you […]

How to Export Magento Product Database

In this tutorial I will show you how you can export entire Magento product database. Most people can find their way to the standard Export options under System -> Import/Export, but that often doesn’t produce the results they’re expecting. A better approach is to use the Dataflow – Profiles that Magento provides. These out-of-the-box export […]

How to put Magento in Maintenance Mode only for Front end

In this tutorial we will show you how to put your Magento online store in maintenance mode only for front end site. The admin can access the site without any issue To put a Magento site in maintenance mode, you need to create an empty maintenance.flag file and upload it to the root folder of […]

How To Get Base, Media, Link Url In Magento2

How To Get Base, Media, Link Url In Magento2 To get the base URL, media URL, and link URL in Magento 2, you can use Magento’s built-in functions to retrieve these URLs programmatically. To get the base URL, use the following code: $baseUrl = $this->_url->getBaseUrl(); For the media URL, which points to the media directory […]

How to Enable Template Path Hints in Magento 2

How to Enable Template Path Hints in Magento 2: Go to Magento 2 admin panel and login with your credentials. Go to Stores –> Configuration. Select Developer option from the Advanced tab at the end. Open Debug dropdown and set Enabled Template Path Hints for Storefront to yes. Click to Save Config.

How to Change Magento 2 Logo

Here are the steps that you will follow to change Logo in Magento 2 Go to your Magento 2 admin. Go to STORES > Configuration > Design > Header Click Choose file and select your logo Click Save Config

Get page id in wordpress

Here is the tips for getting page id in wordpress. First of all I will show page id in admin area. Go to the pages and clcik on that, then you can see all pages list. Look the below screenhsot. After then click on the desired page and you can see the page id on […]

Static blocks not working – Magento 1.9.x

After updating Magento to version 1.9.x, or installing security patch SUPEE-6788 on an older version, lots of people are noticing that their static block shortcodes are no longer working. So may be some developers frustrated or confused why this happen. The solution is simple magento people added security feature on the newer version. Simply navigate […]

Burger menu not working on ipad/tablet in wordpress

Burger menu not working on ipad/tablet in wordpress If you are working with wordpress enfold theme then may be you get the issue of menu on the tablet/ipad in landscape mode. Them menu does not appears as a burger so try this media query, may be it will help : @media only screen and (max-width: […]

How to change sign-up fee text in WooCommerce Subscriptions

How to change sign-up fee text in WooCommerce Subscriptions Try this: function change_subscription_product_string( $subscription_string, $product, $include ) { if( $include[‘sign_up_fee’] ){ $subscription_string = str_replace(‘sign-up fee’, ‘your text’, $subscription_string); } return $subscription_string; } add_filter( ‘woocommerce_subscriptions_product_price_string’, ‘change_subscription_product_string’, 10, 3 );