How to add meta tag. meta description, meta kywords in custom module of admin panel? The 2019...

Is "plugging out" electronic devices an American expression?

JSON.serialize: is it possible to suppress null values of a map?

How are circuits which use complex ICs normally simulated?

Falsification in Math vs Science

How to manage monthly salary

A poker game description that does not feel gimmicky

Can we apply L'Hospital's rule where the derivative is not continuous?

What is the meaning of Triage in Cybersec world?

Why could you hear an Amstrad CPC working?

Can I write a for loop that iterates over both collections and arrays?

Idiomatic way to prevent slicing?

What does "sndry explns" mean in one of the Hitchhiker's guide books?

Why is it "Tumoren" and not "Tumore"?

Did USCIS resume its biometric service for UK visa?

Is it possible for the two major parties in the UK to form a coalition with each other instead of a much smaller party?

Extreme, unacceptable situation and I can't attend work tomorrow morning

How long do I have to send payment?

Why is Grand Jury testimony secret?

What do the Banks children have against barley water?

How to make payment on the internet without leaving a money trail?

Why don't Unix/Linux systems traverse through directories until they find the required version of a linked library?

is usb on wall sockets live all the time with out switches off

Access elements in std::string where positon of string is greater than its size

Inflated grade on resume at previous job, might former employer tell new employer?



How to add meta tag. meta description, meta kywords in custom module of admin panel?



The 2019 Stack Overflow Developer Survey Results Are InChange Meta Tag for different pagesExclude a specific categoryCreate categories through installerMagento - Meta tag automatically generatedUsing Meta Description for Tag PagesProduct description is used as meta descriptionMeta Description issue only for productsMagento 2 : How to add custom meta tag in headHow to add magento meta description programmaticallyhow to add a custom meta dynamic tag in all page using a module in magento 2





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}







1















I have created the custom module. but at the time of creating seller, I want an additional text box to add meta tag. meta description, meta keywords same like "add product" form in Magento admin panel.



Indexcontroller.php



 public function createPostAction() {
$session = Mage::getSingleton('customer/session');
if ($session->isLoggedIn()) {
$this->_redirect('demoreq/seller/dashboard');
return;
}

if ($this->getRequest()->isPost()) {
$data = $this->getRequest()->getPost();

/* save a customer */
$customer = Mage::getModel("customer/customer");
$confirmkey = $customer->getRandomConfirmationKey();

$customer->setWebsiteId(Mage::app()->getWebsite()->getId())
->setStore(Mage::app()->getStore())
->setFirstname($data['firstname'])
->setLastname($data['lastname'])
->setEmail($data['email'])
->setPassword($data['password'])
->setGroupId(6)
->setConfirmation($confirmkey);

try {
$customer->save();
$customer->sendNewAccountEmail(
'confirmation', Mage::getUrl('demoreq/seller/login'), Mage::app()->getStore()->getId()
);

/* save a seller */
$seller = Mage::getModel('demoreq/seller');
$data['customerid'] = $customer->getId();
$lastid = Mage::getModel('demoreq/seller')->getCollection()->getLastItem()->getSellerid();
++$lastid;
$vendorid = "GIS" . str_pad($lastid, 3, "0", STR_PAD_LEFT);
$data['vendor_code'] = $vendorid;
Mage::getModel('demoreq/seller')->setData($data)->save();
$session->setData('sellerdata', '');
Mage::getSingleton('core/session')->addSuccess($this->__('Account confirmation is required. Please, check your email for the confirmation link.'));

//send confirm message
$url = "http://167.114.117.218/rest/services/sendSMS/sendGroupSms?AUTH_KEY=edc6dda5c95eb6534d8878d711c6d6e4";
$postData = array(
'mobileNumbers' => $data['phone'],
'smsContent' => "you are registered on posforyou.",
'senderId' => "DEMOOS",
'routeId' => 1,
'smsContentType' => "english"
);
$data_json = json_encode($postData);

// init the resource
$ch = curl_init();

curl_setopt_array($ch, array(
CURLOPT_URL => $url,
CURLOPT_HTTPHEADER => array('Content-Type: application/json', 'Content-Length: ' . strlen($data_json)),
CURLOPT_RETURNTRANSFER => true,
CURLOPT_POST => true,
CURLOPT_POSTFIELDS => $data_json,
CURLOPT_SSL_VERIFYHOST => 0,
CURLOPT_SSL_VERIFYPEER => 0
));

//get response
$output = curl_exec($ch);

//Print error if any
if (curl_errno($ch)) {
echo 'error:' . curl_error($ch);
}
curl_close($ch);

$this->_redirect('demoreq/seller/login');
} catch (Mage_Core_Exception $e) {
$session->setData('sellerdata', $data);
$message = $e->getMessage();
Mage::getSingleton('core/session')->addError($message);
$this->_redirect('demoreq/seller/create');
}
return;
}
}









share|improve this question
















bumped to the homepage by Community 7 mins ago


This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.






















    1















    I have created the custom module. but at the time of creating seller, I want an additional text box to add meta tag. meta description, meta keywords same like "add product" form in Magento admin panel.



    Indexcontroller.php



     public function createPostAction() {
    $session = Mage::getSingleton('customer/session');
    if ($session->isLoggedIn()) {
    $this->_redirect('demoreq/seller/dashboard');
    return;
    }

    if ($this->getRequest()->isPost()) {
    $data = $this->getRequest()->getPost();

    /* save a customer */
    $customer = Mage::getModel("customer/customer");
    $confirmkey = $customer->getRandomConfirmationKey();

    $customer->setWebsiteId(Mage::app()->getWebsite()->getId())
    ->setStore(Mage::app()->getStore())
    ->setFirstname($data['firstname'])
    ->setLastname($data['lastname'])
    ->setEmail($data['email'])
    ->setPassword($data['password'])
    ->setGroupId(6)
    ->setConfirmation($confirmkey);

    try {
    $customer->save();
    $customer->sendNewAccountEmail(
    'confirmation', Mage::getUrl('demoreq/seller/login'), Mage::app()->getStore()->getId()
    );

    /* save a seller */
    $seller = Mage::getModel('demoreq/seller');
    $data['customerid'] = $customer->getId();
    $lastid = Mage::getModel('demoreq/seller')->getCollection()->getLastItem()->getSellerid();
    ++$lastid;
    $vendorid = "GIS" . str_pad($lastid, 3, "0", STR_PAD_LEFT);
    $data['vendor_code'] = $vendorid;
    Mage::getModel('demoreq/seller')->setData($data)->save();
    $session->setData('sellerdata', '');
    Mage::getSingleton('core/session')->addSuccess($this->__('Account confirmation is required. Please, check your email for the confirmation link.'));

    //send confirm message
    $url = "http://167.114.117.218/rest/services/sendSMS/sendGroupSms?AUTH_KEY=edc6dda5c95eb6534d8878d711c6d6e4";
    $postData = array(
    'mobileNumbers' => $data['phone'],
    'smsContent' => "you are registered on posforyou.",
    'senderId' => "DEMOOS",
    'routeId' => 1,
    'smsContentType' => "english"
    );
    $data_json = json_encode($postData);

    // init the resource
    $ch = curl_init();

    curl_setopt_array($ch, array(
    CURLOPT_URL => $url,
    CURLOPT_HTTPHEADER => array('Content-Type: application/json', 'Content-Length: ' . strlen($data_json)),
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_POST => true,
    CURLOPT_POSTFIELDS => $data_json,
    CURLOPT_SSL_VERIFYHOST => 0,
    CURLOPT_SSL_VERIFYPEER => 0
    ));

    //get response
    $output = curl_exec($ch);

    //Print error if any
    if (curl_errno($ch)) {
    echo 'error:' . curl_error($ch);
    }
    curl_close($ch);

    $this->_redirect('demoreq/seller/login');
    } catch (Mage_Core_Exception $e) {
    $session->setData('sellerdata', $data);
    $message = $e->getMessage();
    Mage::getSingleton('core/session')->addError($message);
    $this->_redirect('demoreq/seller/create');
    }
    return;
    }
    }









    share|improve this question
















    bumped to the homepage by Community 7 mins ago


    This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.


















      1












      1








      1








      I have created the custom module. but at the time of creating seller, I want an additional text box to add meta tag. meta description, meta keywords same like "add product" form in Magento admin panel.



      Indexcontroller.php



       public function createPostAction() {
      $session = Mage::getSingleton('customer/session');
      if ($session->isLoggedIn()) {
      $this->_redirect('demoreq/seller/dashboard');
      return;
      }

      if ($this->getRequest()->isPost()) {
      $data = $this->getRequest()->getPost();

      /* save a customer */
      $customer = Mage::getModel("customer/customer");
      $confirmkey = $customer->getRandomConfirmationKey();

      $customer->setWebsiteId(Mage::app()->getWebsite()->getId())
      ->setStore(Mage::app()->getStore())
      ->setFirstname($data['firstname'])
      ->setLastname($data['lastname'])
      ->setEmail($data['email'])
      ->setPassword($data['password'])
      ->setGroupId(6)
      ->setConfirmation($confirmkey);

      try {
      $customer->save();
      $customer->sendNewAccountEmail(
      'confirmation', Mage::getUrl('demoreq/seller/login'), Mage::app()->getStore()->getId()
      );

      /* save a seller */
      $seller = Mage::getModel('demoreq/seller');
      $data['customerid'] = $customer->getId();
      $lastid = Mage::getModel('demoreq/seller')->getCollection()->getLastItem()->getSellerid();
      ++$lastid;
      $vendorid = "GIS" . str_pad($lastid, 3, "0", STR_PAD_LEFT);
      $data['vendor_code'] = $vendorid;
      Mage::getModel('demoreq/seller')->setData($data)->save();
      $session->setData('sellerdata', '');
      Mage::getSingleton('core/session')->addSuccess($this->__('Account confirmation is required. Please, check your email for the confirmation link.'));

      //send confirm message
      $url = "http://167.114.117.218/rest/services/sendSMS/sendGroupSms?AUTH_KEY=edc6dda5c95eb6534d8878d711c6d6e4";
      $postData = array(
      'mobileNumbers' => $data['phone'],
      'smsContent' => "you are registered on posforyou.",
      'senderId' => "DEMOOS",
      'routeId' => 1,
      'smsContentType' => "english"
      );
      $data_json = json_encode($postData);

      // init the resource
      $ch = curl_init();

      curl_setopt_array($ch, array(
      CURLOPT_URL => $url,
      CURLOPT_HTTPHEADER => array('Content-Type: application/json', 'Content-Length: ' . strlen($data_json)),
      CURLOPT_RETURNTRANSFER => true,
      CURLOPT_POST => true,
      CURLOPT_POSTFIELDS => $data_json,
      CURLOPT_SSL_VERIFYHOST => 0,
      CURLOPT_SSL_VERIFYPEER => 0
      ));

      //get response
      $output = curl_exec($ch);

      //Print error if any
      if (curl_errno($ch)) {
      echo 'error:' . curl_error($ch);
      }
      curl_close($ch);

      $this->_redirect('demoreq/seller/login');
      } catch (Mage_Core_Exception $e) {
      $session->setData('sellerdata', $data);
      $message = $e->getMessage();
      Mage::getSingleton('core/session')->addError($message);
      $this->_redirect('demoreq/seller/create');
      }
      return;
      }
      }









      share|improve this question
















      I have created the custom module. but at the time of creating seller, I want an additional text box to add meta tag. meta description, meta keywords same like "add product" form in Magento admin panel.



      Indexcontroller.php



       public function createPostAction() {
      $session = Mage::getSingleton('customer/session');
      if ($session->isLoggedIn()) {
      $this->_redirect('demoreq/seller/dashboard');
      return;
      }

      if ($this->getRequest()->isPost()) {
      $data = $this->getRequest()->getPost();

      /* save a customer */
      $customer = Mage::getModel("customer/customer");
      $confirmkey = $customer->getRandomConfirmationKey();

      $customer->setWebsiteId(Mage::app()->getWebsite()->getId())
      ->setStore(Mage::app()->getStore())
      ->setFirstname($data['firstname'])
      ->setLastname($data['lastname'])
      ->setEmail($data['email'])
      ->setPassword($data['password'])
      ->setGroupId(6)
      ->setConfirmation($confirmkey);

      try {
      $customer->save();
      $customer->sendNewAccountEmail(
      'confirmation', Mage::getUrl('demoreq/seller/login'), Mage::app()->getStore()->getId()
      );

      /* save a seller */
      $seller = Mage::getModel('demoreq/seller');
      $data['customerid'] = $customer->getId();
      $lastid = Mage::getModel('demoreq/seller')->getCollection()->getLastItem()->getSellerid();
      ++$lastid;
      $vendorid = "GIS" . str_pad($lastid, 3, "0", STR_PAD_LEFT);
      $data['vendor_code'] = $vendorid;
      Mage::getModel('demoreq/seller')->setData($data)->save();
      $session->setData('sellerdata', '');
      Mage::getSingleton('core/session')->addSuccess($this->__('Account confirmation is required. Please, check your email for the confirmation link.'));

      //send confirm message
      $url = "http://167.114.117.218/rest/services/sendSMS/sendGroupSms?AUTH_KEY=edc6dda5c95eb6534d8878d711c6d6e4";
      $postData = array(
      'mobileNumbers' => $data['phone'],
      'smsContent' => "you are registered on posforyou.",
      'senderId' => "DEMOOS",
      'routeId' => 1,
      'smsContentType' => "english"
      );
      $data_json = json_encode($postData);

      // init the resource
      $ch = curl_init();

      curl_setopt_array($ch, array(
      CURLOPT_URL => $url,
      CURLOPT_HTTPHEADER => array('Content-Type: application/json', 'Content-Length: ' . strlen($data_json)),
      CURLOPT_RETURNTRANSFER => true,
      CURLOPT_POST => true,
      CURLOPT_POSTFIELDS => $data_json,
      CURLOPT_SSL_VERIFYHOST => 0,
      CURLOPT_SSL_VERIFYPEER => 0
      ));

      //get response
      $output = curl_exec($ch);

      //Print error if any
      if (curl_errno($ch)) {
      echo 'error:' . curl_error($ch);
      }
      curl_close($ch);

      $this->_redirect('demoreq/seller/login');
      } catch (Mage_Core_Exception $e) {
      $session->setData('sellerdata', $data);
      $message = $e->getMessage();
      Mage::getSingleton('core/session')->addError($message);
      $this->_redirect('demoreq/seller/create');
      }
      return;
      }
      }






      magento-1.9 custom-options meta-tags






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Oct 3 '18 at 5:48









      Evince Development

      1,140319




      1,140319










      asked Jan 27 '17 at 11:38









      NeeyaNeeya

      13815




      13815





      bumped to the homepage by Community 7 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.







      bumped to the homepage by Community 7 mins ago


      This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
























          1 Answer
          1






          active

          oldest

          votes


















          0














          You can add these (meta_title,meta_keyword,meta_description) fields in your module table.



          Then add this code in your module form of adminhtml



          $fieldset->addField("meta_title", "text", array(
          "label" => Mage::helper("demoreq")->__("Meta Title"),
          "name" => "meta_title",
          'required' => 'required',
          ));
          $fieldset->addField("meta_keyword", "textarea", array(
          "label" => Mage::helper("demoreq")->__("Meta Keyword"),
          "name" => "meta_keyword",
          'required' => 'required',
          ));
          $fieldset->addField("meta_description", "textarea", array(
          "label" => Mage::helper("demoreq")->__("Meta Description"),
          "name" => "meta_description",
          'required' => 'required',
          ));


          [EDIT]
          If you want set these vale on front-end then you can set it via your frontend controller.For this add this code.



          $this->loadLayout();
          /* get you title, description, and key here
          *
          */
          $this->getLayout()->getBlock('head')->setTitle($title);
          $this->getLayout()->getBlock('head')->setDescription($description);
          $this->getLayout()->getBlock('head')->setKeywords($keyword);
          $this->renderLayout();


          And clear your magento cache storage.






          share|improve this answer


























          • i tried this but after veiwing source code it does not showing those meta description, keywords which are in database

            – Neeya
            Jan 30 '17 at 8:29











          • where it's not showing ?

            – Arunendra
            Jan 30 '17 at 9:02











          • i have added seller when creating seller i have fill this textarea but when i view page source code it is not showing those values which i have filled from admin panel

            – Neeya
            Jan 30 '17 at 9:26











          • but in database it is showing

            – Neeya
            Jan 30 '17 at 9:26











          • Can you share any screen shot

            – Arunendra
            Jan 30 '17 at 9:31












          Your Answer








          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "479"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: false,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: null,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f156760%2fhow-to-add-meta-tag-meta-description-meta-kywords-in-custom-module-of-admin-pa%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          You can add these (meta_title,meta_keyword,meta_description) fields in your module table.



          Then add this code in your module form of adminhtml



          $fieldset->addField("meta_title", "text", array(
          "label" => Mage::helper("demoreq")->__("Meta Title"),
          "name" => "meta_title",
          'required' => 'required',
          ));
          $fieldset->addField("meta_keyword", "textarea", array(
          "label" => Mage::helper("demoreq")->__("Meta Keyword"),
          "name" => "meta_keyword",
          'required' => 'required',
          ));
          $fieldset->addField("meta_description", "textarea", array(
          "label" => Mage::helper("demoreq")->__("Meta Description"),
          "name" => "meta_description",
          'required' => 'required',
          ));


          [EDIT]
          If you want set these vale on front-end then you can set it via your frontend controller.For this add this code.



          $this->loadLayout();
          /* get you title, description, and key here
          *
          */
          $this->getLayout()->getBlock('head')->setTitle($title);
          $this->getLayout()->getBlock('head')->setDescription($description);
          $this->getLayout()->getBlock('head')->setKeywords($keyword);
          $this->renderLayout();


          And clear your magento cache storage.






          share|improve this answer


























          • i tried this but after veiwing source code it does not showing those meta description, keywords which are in database

            – Neeya
            Jan 30 '17 at 8:29











          • where it's not showing ?

            – Arunendra
            Jan 30 '17 at 9:02











          • i have added seller when creating seller i have fill this textarea but when i view page source code it is not showing those values which i have filled from admin panel

            – Neeya
            Jan 30 '17 at 9:26











          • but in database it is showing

            – Neeya
            Jan 30 '17 at 9:26











          • Can you share any screen shot

            – Arunendra
            Jan 30 '17 at 9:31
















          0














          You can add these (meta_title,meta_keyword,meta_description) fields in your module table.



          Then add this code in your module form of adminhtml



          $fieldset->addField("meta_title", "text", array(
          "label" => Mage::helper("demoreq")->__("Meta Title"),
          "name" => "meta_title",
          'required' => 'required',
          ));
          $fieldset->addField("meta_keyword", "textarea", array(
          "label" => Mage::helper("demoreq")->__("Meta Keyword"),
          "name" => "meta_keyword",
          'required' => 'required',
          ));
          $fieldset->addField("meta_description", "textarea", array(
          "label" => Mage::helper("demoreq")->__("Meta Description"),
          "name" => "meta_description",
          'required' => 'required',
          ));


          [EDIT]
          If you want set these vale on front-end then you can set it via your frontend controller.For this add this code.



          $this->loadLayout();
          /* get you title, description, and key here
          *
          */
          $this->getLayout()->getBlock('head')->setTitle($title);
          $this->getLayout()->getBlock('head')->setDescription($description);
          $this->getLayout()->getBlock('head')->setKeywords($keyword);
          $this->renderLayout();


          And clear your magento cache storage.






          share|improve this answer


























          • i tried this but after veiwing source code it does not showing those meta description, keywords which are in database

            – Neeya
            Jan 30 '17 at 8:29











          • where it's not showing ?

            – Arunendra
            Jan 30 '17 at 9:02











          • i have added seller when creating seller i have fill this textarea but when i view page source code it is not showing those values which i have filled from admin panel

            – Neeya
            Jan 30 '17 at 9:26











          • but in database it is showing

            – Neeya
            Jan 30 '17 at 9:26











          • Can you share any screen shot

            – Arunendra
            Jan 30 '17 at 9:31














          0












          0








          0







          You can add these (meta_title,meta_keyword,meta_description) fields in your module table.



          Then add this code in your module form of adminhtml



          $fieldset->addField("meta_title", "text", array(
          "label" => Mage::helper("demoreq")->__("Meta Title"),
          "name" => "meta_title",
          'required' => 'required',
          ));
          $fieldset->addField("meta_keyword", "textarea", array(
          "label" => Mage::helper("demoreq")->__("Meta Keyword"),
          "name" => "meta_keyword",
          'required' => 'required',
          ));
          $fieldset->addField("meta_description", "textarea", array(
          "label" => Mage::helper("demoreq")->__("Meta Description"),
          "name" => "meta_description",
          'required' => 'required',
          ));


          [EDIT]
          If you want set these vale on front-end then you can set it via your frontend controller.For this add this code.



          $this->loadLayout();
          /* get you title, description, and key here
          *
          */
          $this->getLayout()->getBlock('head')->setTitle($title);
          $this->getLayout()->getBlock('head')->setDescription($description);
          $this->getLayout()->getBlock('head')->setKeywords($keyword);
          $this->renderLayout();


          And clear your magento cache storage.






          share|improve this answer















          You can add these (meta_title,meta_keyword,meta_description) fields in your module table.



          Then add this code in your module form of adminhtml



          $fieldset->addField("meta_title", "text", array(
          "label" => Mage::helper("demoreq")->__("Meta Title"),
          "name" => "meta_title",
          'required' => 'required',
          ));
          $fieldset->addField("meta_keyword", "textarea", array(
          "label" => Mage::helper("demoreq")->__("Meta Keyword"),
          "name" => "meta_keyword",
          'required' => 'required',
          ));
          $fieldset->addField("meta_description", "textarea", array(
          "label" => Mage::helper("demoreq")->__("Meta Description"),
          "name" => "meta_description",
          'required' => 'required',
          ));


          [EDIT]
          If you want set these vale on front-end then you can set it via your frontend controller.For this add this code.



          $this->loadLayout();
          /* get you title, description, and key here
          *
          */
          $this->getLayout()->getBlock('head')->setTitle($title);
          $this->getLayout()->getBlock('head')->setDescription($description);
          $this->getLayout()->getBlock('head')->setKeywords($keyword);
          $this->renderLayout();


          And clear your magento cache storage.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Jan 30 '17 at 10:28

























          answered Jan 27 '17 at 11:51









          ArunendraArunendra

          6,25331842




          6,25331842













          • i tried this but after veiwing source code it does not showing those meta description, keywords which are in database

            – Neeya
            Jan 30 '17 at 8:29











          • where it's not showing ?

            – Arunendra
            Jan 30 '17 at 9:02











          • i have added seller when creating seller i have fill this textarea but when i view page source code it is not showing those values which i have filled from admin panel

            – Neeya
            Jan 30 '17 at 9:26











          • but in database it is showing

            – Neeya
            Jan 30 '17 at 9:26











          • Can you share any screen shot

            – Arunendra
            Jan 30 '17 at 9:31



















          • i tried this but after veiwing source code it does not showing those meta description, keywords which are in database

            – Neeya
            Jan 30 '17 at 8:29











          • where it's not showing ?

            – Arunendra
            Jan 30 '17 at 9:02











          • i have added seller when creating seller i have fill this textarea but when i view page source code it is not showing those values which i have filled from admin panel

            – Neeya
            Jan 30 '17 at 9:26











          • but in database it is showing

            – Neeya
            Jan 30 '17 at 9:26











          • Can you share any screen shot

            – Arunendra
            Jan 30 '17 at 9:31

















          i tried this but after veiwing source code it does not showing those meta description, keywords which are in database

          – Neeya
          Jan 30 '17 at 8:29





          i tried this but after veiwing source code it does not showing those meta description, keywords which are in database

          – Neeya
          Jan 30 '17 at 8:29













          where it's not showing ?

          – Arunendra
          Jan 30 '17 at 9:02





          where it's not showing ?

          – Arunendra
          Jan 30 '17 at 9:02













          i have added seller when creating seller i have fill this textarea but when i view page source code it is not showing those values which i have filled from admin panel

          – Neeya
          Jan 30 '17 at 9:26





          i have added seller when creating seller i have fill this textarea but when i view page source code it is not showing those values which i have filled from admin panel

          – Neeya
          Jan 30 '17 at 9:26













          but in database it is showing

          – Neeya
          Jan 30 '17 at 9:26





          but in database it is showing

          – Neeya
          Jan 30 '17 at 9:26













          Can you share any screen shot

          – Arunendra
          Jan 30 '17 at 9:31





          Can you share any screen shot

          – Arunendra
          Jan 30 '17 at 9:31


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Magento Stack Exchange!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmagento.stackexchange.com%2fquestions%2f156760%2fhow-to-add-meta-tag-meta-description-meta-kywords-in-custom-module-of-admin-pa%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          “%fieldName is a required field.”, in Magento2 REST API Call for GET Method Type The Next...

          How to change City field to a dropdown in Checkout step Magento 2Magento 2 : How to change UI field(s)...

          夢乃愛華...