Posted - 04/06/2021 : 09:13:46
Before upgrading to the newest cart both of these were working. Print proddetail.php title tag and an H1 tag, both have stopped working since the update. I've been moving stuff around trying to get working again. I have also been reading "https://www.ecommercetemplates.com/seo/dynamic-title-meta-php.asp" Do I have these in the correct order? Thanks for any help
[red][size=2]Print proddetail.php title tag [/size=2][/red]
<?php session_cache_limiter('none'); session_start(); ob_start(); include "vsadmin/db_conn_open.php"; include "vsadmin/includes.php"; include "vsadmin/inc/incfunctions.php"; include "vsadmin/inc/metainfo.php";?><!DOCTYPE html><html lang="en"><!-- #BeginTemplate "/Templates/Shop.dwt" --><!-- DW6 --> <head> <!-- #BeginEditable "doctitle" --> <title><?php print $addsearch . " | " . $productname . " | " . $productid; ?></title> <meta name="Description" content="<?php print str_replace('"','"',$productdescription)?>"> <!-- #EndEditable --> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, maximum-scale=1.0, minimum-scale=1.0, initial-scale=1" /> <link href="css/style.css" rel="stylesheet" type="text/css" /> <link href="css/ectcart.css" rel="stylesheet" type="text/css"> <script src="/js/ectcart.js"></script> <script type="text/javascript" src="js/html5.js"></script> <link rel="stylesheet" href="css/responsivemobilemenu.css"> <script src="js/jquery-1.9.1.min.js"></script> <script src="js/responsivemobilemenu.js"></script> <link href='https://fonts.googleapis.com/css?family=Exo+2:400,400italic,700' rel='stylesheet' type='text/css'>
<script src="js/jquery.smartmenus.js" type="text/javascript"></script> <link href="css/sm-core-css.css" rel="stylesheet" type="text/css" /> <link href="css/sm-blue/sm-blue.css" rel="stylesheet" type="text/css" /> <script type="text/javascript"> $(function() { $('#main-menu').smartmenus(); }); </script>
<!-- #BeginEditable "head" --> <?php include "vsadmin/inc/languagefile.php" ?>
<!-- #EndEditable --></head>
[size=2][red]Print proddetail.php H1 tag[/red][/size=2] <!-- #BeginEditable "body" --> <div class="middle_contain_top"> <h1><?php print $productname;?> | <?php print $addsearch;?></h1> <div class="middle_product">
<?php include "vsadmin/inc/incproddetail.php" ?>
Michael
|