pinoyca
Forum Replies Created
-
Forum: Plugins
In reply to: Where to place edit?Did the suggestion of the person who helped you yesterday worked? Say thank you then.
It replaces code already on the page. Take out everything you changed earlier and put
$posts = query_posts($query_string . '&orderby=title&order=asc&posts_per_page=-1');immediately before the existing line that saysif (have_posts()) : while (have_posts()) : the_post();.If my suggestion helped, do visit my profile page one of these days.
Forum: Fixing WordPress
In reply to: Custom Header for WordPress 2.5On style.css
#header { background: #73a0c5 url('images/kubrickheader.jpg') no-repeat bottom center; }remove the
#73a0c5.If my suggestion helped, do visit my profile sometime.
Forum: Requests and Feedback
In reply to: Setting post author not available in 2.5Huh? It’s there, at the very bottom, near the pits.
Forum: Themes and Templates
In reply to: Change the title of “Home” ButtonI downloaded Fluid Solution and used WinRAR to look for “
Home</a></li>”It’s in
left.php.If this helped, please visit my profile page sometime.
Forum: Everything else WordPress
In reply to: Changing my Email ID in the forumThe moderators should be able to delete all your posts as per Forum Rule A.
Uh, this is the WordPress support forum.
Forum: Fixing WordPress
In reply to: Hot to Edit Non WP Content Pages?Can you be more specific?
Forum: Plugins
In reply to: RSS Feed (Safari)My feeds are fine in Safari Windows or Mac. Que es los problemos?
Forum: Installing WordPress
In reply to: 2.3 > 2.5 Problems! PLEASE HELP ME!!Based on what you said, you did not back up the database. 🙁 I don’t think anyone has made a tool that changes a DB back to an earlier version.
As Jan said, check line 47 of
wp-config.phpfor the problem.Forum: Fixing WordPress
In reply to: CSS style not being calledAre all the other CSS properties of
workdetailpages-textfollowed, i.e., if you changed thecolordoes it change?Are there no other html tags between
the_content()and thediv?Forum: Installing WordPress
In reply to: SQL Server 2000As it says in the Requirements (click About) WordPress works only with MySQL.
Forum: Themes and Templates
In reply to: template questionHTML and Web Design is probably beyond the scope of this support forum.
Many people, like I, first found a theme whose structure is similar to what they envisioned, and used that as a starting point of their creation. This works great IF the theme is not copyrighted and IF the theme validates.
Others who start from scratch read http://codex.wordpress.org/Theme_Development first.
If my suggestion helped, do visit my profile page.
Forum: Themes and Templates
In reply to: Calling a plugin within a PHP page *New to WP!*> Any way to have this appear within the page as though I’d just called it within a blog post?
I suggest you have a peek inside the exzo plugin and see what it actually does to the imageurl. You can repeat that code directly on your theme.
Watch out: If you decide to use a function that is defined in the exzo plugin directly in your theme, then if the exzo plugin is deactivated or uninstalled, your theme will have undefined-function PHP errors.
If my suggestion helped, do visit my profile sometime.
Forum: Themes and Templates
In reply to: Calling a plugin within a PHP page *New to WP!*Aha, now I understand what you’re trying to do.
Exzo tags only work on the text of posts (or of pages), not on the theme files.
Forum: Themes and Templates
In reply to: Calling a plugin within a PHP page *New to WP!*When you say “file”, is this a Theme file or on a Post or a Page? You can’t embed PHP commands inside your posts.
Added, after looking at EXZO:
Exzo tags only work inside posts (or pages).