MindReality
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How do I remove the Blog Name Link at the top of my posts?I found out that the blog name link has to do with this part of my code:
I could not find it in the header, index, single php files.
Forum: Themes and Templates
In reply to: How do I add "After Content" code?I managed to solve this by downloading the “After Content” Widget Plugin.
Thanks!
Forum: Fixing WordPress
In reply to: How do I make menu links open in new window?Thank you! That solved it!
Forum: Themes and Templates
In reply to: Main Content drops lower than sidebar in lower resolutions!Never mind, I managed to fix the problem. All I had to do was to reduce the width of my optin box by 20 pixels.
Forum: Themes and Templates
In reply to: How to modify template for new wordpress version?I receive this message when I click save after editing a post:
WordPress database error: [Table ‘mindreal_blogdb.wp_post2cat’ doesn’t exist]
SELECT cat_ID AS ID, MAX(post_modified) AS last_mod FROMwp_postsp LEFT JOINwp_post2catpc ON p.ID = pc.post_id LEFT JOINwp_categoriesc ON pc.category_id = c.cat_ID WHERE post_status = ‘publish’ GROUP BY cat_IDWarning: Cannot modify header information – headers already sent by (output started at /home/mindreal/public_html/wp-includes/wp-db.php:160) in /home/mindreal/public_html/wp-includes/pluggable.php on line 391
It say something about “cannot modify header information” so I assume it is to do with the header.php or is it some other problem?
Forum: Fixing WordPress
In reply to: WordPress 2.3.1 plugins problemNever mind, I manage to solve the problem by getting wordpress 2.3.1 compatible plugins.
Forum: Plugins
In reply to: Is there such a plugin?Hi,
This is bringing me closer to what I’m looking for.
Where can I go to edit the excerpt length?
Is it possible for me to select certain posts and pages to display full view to all users instead?
Thanks for the help!
Forum: Fixing WordPress
In reply to: How to I configure printer friendly pages?Thank you for the help!
Forum: Fixing WordPress
In reply to: How do I put recent posts links on my static homepage?I tried adding the code to my static front page and checked the runphp box, but the code just shows up on the page. How do I get the code to work?
I tried static page with mini loop.
I am using the static front page plugin btw. The one where my homepage slug is simply “home”
Forum: Installing WordPress
In reply to: My blog title disppeared from my homepage!Thank you!
Forum: Themes and Templates
In reply to: How to insert background image in a table?No, it is located in the images folder in my public_html directory.
Forum: Themes and Templates
In reply to: How to insert background image in a table?Damn I keep making the mistake. The <table> should be </talbe>
ONCE AGAIN, HERE IS THE REAL CODE. IGNORE THE ABOVE TWO POSTS!!!
I placed this code in my index.php file of my theme folder.
<table>
<tr>
<td background=”images/frame1.jpg”>
</td>
</tr>
</table>But the background image did not show up. What’s going on?
Forum: Themes and Templates
In reply to: How to insert background image in a table?Oops, there is a mistake in the above code. The <tr> should be </tr>
Here’s the correct code:
I placed this code in my index.php file of my theme folder.
<table>
<tr>
<td background=”images/frame1.jpg”>
</td>
</tr>
<table>But the background image did not show up. What’s going on?
Forum: Installing WordPress
In reply to: Redirect page not found to HomepageHi, I placed the code in the index file of my theme folder.
<?php endwhile; else: ?>
<?php wp_redirect(get_option(‘home’)); ?>
<?php endif; ?>But I get this error:
Warning: Cannot modify header information – headers already sent by (output started at /home/mindreal/public_html/wp-content/themes/greenmarinee/header.php:5) in /home/mindreal/public_html/wp-includes/pluggable-functions.php on line 247