KollanH wrote:1): I wish to put a custom title tag, and keywords on the homepage. Which file should I edit, and exactly what should I put so I don't mess up any of the automatic title stuff. I would rather not use a vqmod for this.
Why exactly do you want to do this? Custom title tag is generated for each page. Keywords no longer effect SEO (from google anyway).
Hi KollanH
My error here. I didn't mean keywords.... what I mean is that I wish to change the page <title> from York3dPrinters.com to York3dprinters.com | Some SEO text | some more SEO text - but only on the homepage. I was hoping to drop something like
<title> York3dprinters.com | Some SEO text | some more SEO text </title>
into the homepage file simply. without pulling something from a database or another file. Is this possible?
2:
KollanH wrote:
2): I wish to remove the word 'Featured' from the top of the 'featured' box on my homepage. I would also like the box to disappear, leaving my 2 products behind.
Open up your catalog/view/theme/YOURTHEME/template/module/featured.tpl and delete the
CODE: SELECT ALL
<div class="box-heading"><?php echo $heading_title; ?></div>
I thought it was this, and tried it, but nothing changed after I hit Ctrl F5 a few times, so I put it back in again. Removed it again now. Still nothing happening.
UPDATE: My apologies, this worked fine after clearing out the vqcache Thanks!
KollanH wrote:
3): I wish to resize the 2 featured products that I have. I read some forum posts, and adjusted theme/default/template/module/featured.tpl Which has helped, but If I resize the images in admin to over 250px the left image starts to overlap the right image. Ultimately, I want the two images side-by-side to be the whole width of the page.
The thing you want to resize is
CODE: SELECT ALL
<div class="box-product">
Here is my current featured.tpl
<div class="box">
<div class="box-content">
<div class="box-product">
<?php foreach ($products as $product) { ?>
<div style="margin-left: 30px; margin-right: 20px; width: 400px;">
<?php if ($product['thumb']) { ?>
<div class="image"><a href="<?php echo $product['href']; ?>"><img src="<?php echo $product['thumb']; ?>" alt="<?php echo $product['name']; ?>" /></a></div>
<?php } ?>
</div>
<?php } ?>
</div>
</div>
</div>
Clearing the cache helped with this too, but they still are not aligned centrally
Last one...
Error messages in the log - didn't see them before, although I dont know why.... d'uh:
2012-12-11 17:58:33 - PHP Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cookie - headers already sent by (output started at /home/XXXXXX/public_html/index.php:49) in /home/XXXXXX/public_html/system/library/session.php on line 11
2012-12-11 17:58:33 - PHP Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cache limiter - headers already sent (output started at /home/XXXXXX/public_html/index.php:49) in /home/XXXXXX/public_html/system/library/session.php on line 11
2012-12-11 17:58:33 - PHP Notice: Undefined index: HTTP_HOST in /home/XXXXXX/public_html/index.php on line 177
2012-12-11 17:58:33 - PHP Warning: Cannot modify header information - headers already sent by (output started at /home/XXXXXX/public_html/index.php:49) in /home/XXXXXX/public_html/index.php on line 177
2012-12-11 17:58:33 - PHP Notice: Undefined index: HTTP_HOST in /home/XXXXXX/public_html/system/library/currency.php on line 45
2012-12-11 17:58:33 - PHP Warning: Cannot modify header information - headers already sent by (output started at /home/XXXXXX/public_html/index.php:49) in /home/XXXXXX/public_html/system/library/currency.php on line 45
2012-12-11 21:05:26 - PHP Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cookie - headers already sent by (output started at /home/XXXXXX/public_html/index.php:49) in /home/lucayork/public_html/system/library/session.php on line 11
2012-12-11 21:05:26 - PHP Warning: session_start() [<a href='function.session-start'>function.session-start</a>]: Cannot send session cache limiter - headers already sent (output started at /home/XXXXXX/public_html/index.php:49) in /home/XXXXXX/public_html/system/library/session.php on line 11
2012-12-11 21:05:26 - PHP Notice: Undefined index: HTTP_HOST in /home/XXXXXX/public_html/index.php on line 177
2012-12-11 21:05:26 - PHP Warning: Cannot modify header information - headers already sent by (output started at /home/XXXXXX/public_html/index.php:49) in /home/XXXXXX/public_html/index.php on line 177
2012-12-11 21:05:26 - PHP Notice: Undefined index: HTTP_HOST in /home/XXXXXX/public_html/system/library/currency.php on line 45
2012-12-11 21:05:26 - PHP Warning: Cannot modify header information - headers already sent by (output started at /home/XXXXXX/public_html/index.php:49) in /home/XXXXXX/public_html/system/library/currency.php on line 45
Thankyou for your help
