siewe
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [2.1.2]Publishing or saving posts is not workingAnyone, please?
Forum: Themes and Templates
In reply to: Change login text with an imageSolved with: http://wordpress.org/support/topic/90853?replies=2
Forum: Themes and Templates
In reply to: Change login text with an imageBump
Forum: Themes and Templates
In reply to: Change login text with an imageThere is no answer for my question? If i need to clarify my question i’m willing to do that.
Forum: Installing WordPress
In reply to: Integrate Gallery into WordPressThanks, all help and hints are appreciated. The main thing for me is integration with gallery in my wp. That means, it has to fit in my templates.
Forum: Installing WordPress
In reply to: Integrate Gallery into WordPressI’m looking for something like that too noel877, i guess you created a template or something with the 4images code in it? Or how else did you achieve such a thing.
Forum: Fixing WordPress
In reply to: Plugin remains in admin while deleted from ftpThanks, the plugin was a few dirs deeper than the plugin dir. The problem is solved now.
Forum: Plugins
In reply to: Sidebar: Show latest posts only if not on homepageSweet! You’re untested solutions works like a charm. This is what i have now
<?php if /* this it not home */ (! is_home()) { ?>
<li><h2>Laatste 5 berichten</h2>
<ul>
<?php if (function_exists('c2c_get_recent_posts')) c2c_get_recent_posts(5); ?>
</ul>
</li>
<?php } ?>Forum: Plugins
In reply to: Sidebar: Show latest posts only if not on homepageI’ve edited it. The function works. I think it has something to with the echo part. The echo part only appears when i’m not on the home page. The function get recent posts displays always. Sort of outse the ! is_home.
Forum: Plugins
In reply to: Sidebar: Show latest posts only if not on homepageI’m using the Customizable Post Listings plugin. It is working. However i want to display “Latest 5 postings as a menu title. Now i have this:
<?php if /* this it not home */ (! is_home())
echo ('<li><h2>Latest posts</h2></li>');
{c2c_get_recent_posts(5); } ?>It displays the the posts and the title. But it also display the posts on the homepage (which i don’t want). I tink i’m close but not close enough.
Forum: Plugins
In reply to: Sidebar: Show latest posts only if not on homepageI have it working now. Thanks for your help guys.
Forum: Plugins
In reply to: Sidebar: Show latest posts only if not on homepageIf i remove <?php if (have_posts()) : while (have_posts()) : the_post(); ?> and <?php endwhile; endif; ?> I see posts in my sidebar. I can open the posts and read them. If i want to acces pages like Contact i get a Parse error: parse error, unexpected T_ENDIF in /home/******/domains/******/public_html/wp-content/themes/siewesite/page.php on line 16.
I alse updated page.txt the same as my template.
Forum: Plugins
In reply to: Sidebar: Show latest posts only if not on homepagePage.txt is working. I’ve setted up the site somewhere else now, on .nl domain and edited my profile. Maybe that will work.
Forum: Plugins
In reply to: Sidebar: Show latest posts only if not on homepageI tried your solution IanD it still result in this:
Parse error: parse error, unexpected T_ENDIF in /home/******/domains/******/public_html/wp-content/themes/siewesite/page.php on line 15. I have edited the template thought admin panel and reuploading the sidebar.php file. Same resultHere are my template files in question.
sidebar.txt
page.txtForum: Plugins
In reply to: Sidebar: Show latest posts only if not on homepageThanks for the help guys, but i got a little problem: When i add <?php if (! is_home()) { c2c_get_recent_posts(5) }; ?> to my side bar, i get an error when opening a Page (like “Contact”). It says:
Parse error: parse error, unexpected T_ENDIF in /home/******/domains/******/public_html/wp-content/themes/siewesite/page.php on line 15Line 15 contains this <?php endwhile; endif; ?> but that is referring to the if and while code in page.php. Adding <?php } ?>
in sidebar.php wont do any good either.