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
Unbreakable Formation vs. Cry of the Carnarium
Does it makes sense to buy a new cycle to learn riding?
How long do I have to send payment?
Is "plugging out" electronic devices an American expression?
Geography at the pixel level
Does light intensity oscillate really fast since it is a wave?
aging parents with no investments
I see my dog run
In microwave frequencies, do you use a circulator when you need a (near) perfect diode?
Is flight data recorder erased after every flight?
Does duplicating a spell with wish count as casting that spell?
If the Wish spell is used to duplicate the effect of Simulacrum, are existing duplicates destroyed?
How to make payment on the internet without leaving a money trail?
What function has this graph?
A poker game description that does not feel gimmicky
Where to refill my bottle in India?
Idiomatic way to prevent slicing?
Are there any other methods to apply to solving simultaneous equations?
Springs with some finite mass
Where does the "burst of radiance" from Holy Weapon originate?
How can I create a character who can assume the widest possible range of creature sizes?
How to deal with fear of taking dependencies
Extreme, unacceptable situation and I can't attend work tomorrow morning
What does "sndry explns" mean in one of the Hitchhiker's guide books?
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;
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
bumped to the homepage by Community♦ 6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
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
bumped to the homepage by Community♦ 6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
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,140319
1,140319
asked Jan 27 '17 at 11:38
NeeyaNeeya
13815
13815
bumped to the homepage by Community♦ 6 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♦ 6 mins ago
This question has answers that may be good or bad; the system has marked it active so that they can be reviewed.
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,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
|
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