lonetrotter
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Autofocus theme, Facebook Like BoxIt should be in Single.php – for example right after
<span class="bigdate entry-date"><abbr class="published" title="<?php the_time('Y-m-d\TH:i:sO') ?>"><?php the_time('d M'); ?></abbr></span>
Forum: Fixing WordPress
In reply to: Sliding drawersWhat do u mean by animated sliding drawer features?
Forum: Themes and Templates
In reply to: Page of Posts in the Autofocus ThemeIm with u here – also wonder how to make a new template. Have read the Codex but did not manage anayway…
Forum: Themes and Templates
In reply to: Page of Posts in the Autofocus ThemeForum: Plugins
In reply to: [Plugin: Google Analytics Dashboard] unlink(): Operation nont permittedThanx lcsunshine – worked for me to change permissions on the tmp folder
Forum: Fixing WordPress
In reply to: Visual Editor Not WorkingStill same error for me though … At wp 2.3.1
Forum: Fixing WordPress
In reply to: Visual/Code editor not working correctlyme too – at WP 3.2.1 – even with changing to basic theme and without any plugs
Forum: Plugins
In reply to: WP-Polls 2.14 at my WP 2.1.3. make my plug in site go blankThanx! You are amazing GamerZ – I have followed your activity and admire your dedication.
About my problem – seems like its something else. If I deactivated Akismet, Google Analyticator, Search Meter – activated WP Polls, and then reactivatde the other ones.
The blank page apeared at the other plugs then instead – but they still did work despite that blank plugin page.
Guess its some kind of memory issue… dunno..
Forum: Fixing WordPress
In reply to: images not displaying in write post in 2.1.3I also have problems after the upgrade. Each time I upload an image – the whole box disappears. If I refresh the site to get it to appear again, I get double images. Instead I have to enter a new page and then go back. Now the box is back.
I guess this has to do with some ajax somewhere (js?). Any clues or folks experiencing the same?
Forum: Plugins
In reply to: Best Lightbox?Maybe seems to be a simple and stupid question but actually I am wondering that too. I have two blogs and can not get it to work full properly at any of them. One of them running K2 and the other Emerson. Both on WP 2.1.3.
Forum: Themes and Templates
In reply to: sidebar appears in bottom instead of side in IEThanx for all hanilovsme! I solved it skipping the width in .fullstory
Forum: Themes and Templates
In reply to: sidebar appears in bottom instead of side in IEReduced to one error – so I guess Its not the validation…
Forum: Themes and Templates
In reply to: sidebar appears in bottom instead of side in IEHehe – yes – I know I know. Thats the price I have to pay implementing toto many plug ins and other clutter…
Look at this page instead – not as many errors, and still the same problem.
Forum: Themes and Templates
In reply to: PREVIOUS and NEXT post links not workingWell – at last I fixed it.
The basics was to replace
<?php query_posts("cat=xxxx"); include (TEMPLATEPATH . '/theloop.php'); ?>
with
<?php $events_cat = 'xxxx'; if (!is_paged()) { query_posts('showposts=yyyy&cat=' . $events_cat); } else { query_posts('showposts=yyyy&cat=' . $events_cat . '&paged=' . $paged); } ?> <?php include (TEMPLATEPATH . '/theloop.php'); ?>
Where xxxx is the category that should be shown – and yyyy the amount of posts appearing in the category page.
Hope it helps someone.