Thread Starter
ezcali
(@ezcali)
I tried step 6 but it didnt work.
The funny thing is that I have the excactly same website on a different webhotel and the image issue works fine there but not on this webhotel?
Thread Starter
ezcali
(@ezcali)
I have tried the code below but it just wont work. The text ‘Article page’ is being shown on both the Frontpage and Article pages:
<?php if (is_front_page()):?>
<table>
<tr>
<td>Frontpage</td>
</tr>
</table>
<?php else : ?>
<table>
<tr>
<td>Article page</td>
</tr>
</table>
<?php endif; ?>
Thread Starter
ezcali
(@ezcali)
mojorob: Thanks for your reply. Yeah i read that page but i cannot figure out how to code it so the table i mention only displays on the frontpage. Can you give me some kind og code-solution on how to fix it?