PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro How Do I...? (http://www.photopost.com/forum/photopost-pro-how-do-i/)
-   -   easy php calendar in sidebar (http://www.photopost.com/forum/photopost-pro-how-do-i/145354-easy-php-calendar-sidebar.html)

genehunter February 21st, 2011 08:49 PM

easy php calendar in sidebar
 
Anyone know how to put easy php calendar in the sidebar? I would love to use a calendar with events functionality. having a hard time getting it to work in the sidebar.

Astronomy Astrophotography Galaxy Nebula Astrophoto Gallery - Astrophotogallery

Chuck S February 22nd, 2011 03:58 AM

well cant really say from a support perspective other suggest you use one of the three custom pals. You can place html or php code in there just to make sure you do it right.

You might actually want to post a question in the mod corner if you really want to get in depth on how to do code mods.

genehunter February 22nd, 2011 09:34 AM

This is what I am putting and nothing shows up.

<?php
echo<<<PPPRINT
<!-- BEGIN TEMPLATE: custom1pal.tmpl -->
$ppopenside


<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<?php $CSS=1; require("calendar/calendar.php"); ?>
<style type="text/css">

</style>


<body>
<?php $OL=1; require("calendar/calendar.php"); ?>
<div align="center">

<?php
require("calendar/calendar.php");
?>




$ppcloseside
<!-- END TEMPLATE: custom1pal.tmpl -->
PPPRINT;
?>

Chuck S February 22nd, 2011 03:55 PM

well you would need to install it however they tell you to.

any head tags would go into the headtags file you setup and you never have to type head or body tags. You then put whatever code goes into the cody into the custompal template between the <? ?> tags

genehunter February 22nd, 2011 06:52 PM

seems i figured it out
 
seems to work when I take out everything but the php stuff. had no idea.


All times are GMT -5. The time now is 09:19 PM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97