How to add meta tag. meta description, meta kywords in custom module of admin panel? The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Change 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
Can a 1st-level character have an ability score above 18?
First use of “packing” as in carrying a gun
Can a novice safely splice in wire to lengthen 5V charging cable?
Why is superheterodyning better than direct conversion?
Keeping a retro style to sci-fi spaceships?
Is above average number of years spent on PhD considered a red flag in future academia or industry positions?
Do working physicists consider Newtonian mechanics to be "falsified"?
Finding the path in a graph from A to B then back to A with a minimum of shared edges
Do warforged have souls?
Sort list of array linked objects by keys and values
Make it rain characters
What aspect of planet Earth must be changed to prevent the industrial revolution?
Is every episode of "Where are my Pants?" identical?
How do I add random spotting to the same face in cycles?
system() function string length limit
Can the prologue be the backstory of your main character?
How did passengers keep warm on sail ships?
He got a vote 80% that of Emmanuel Macron’s
How to test the equality of two Pearson correlation coefficients computed from the same sample?
Is it ok to offer lower paid work as a trial period before negotiating for a full-time job?
Can the DM override racial traits?
What is special about square numbers here?
Didn't get enough time to take a Coding Test - what to do now?
Road tyres vs "Street" tyres for charity ride on MTB Tandem
How to add meta tag. meta description, meta kywords in custom module of admin panel?
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Change 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;
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
add a comment |
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
add a comment |
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
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
magento-1.9 custom-options meta-tags
edited Oct 3 '18 at 5:48
Evince Development
1,092319
1,092319
asked Jan 27 '17 at 11:38
NeeyaNeeya
13815
13815
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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.
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
|
show 7 more comments
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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.
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
|
show 7 more comments
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.
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
|
show 7 more comments
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.
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.
edited Jan 30 '17 at 10:28
answered Jan 27 '17 at 11:51
ArunendraArunendra
6,26331842
6,26331842
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
|
show 7 more comments
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
|
show 7 more comments
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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