ptaxi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to get rid of "at" in page titleI believe I have solved this issue:
I edited the header.php file and removed the word “at” from the title tag.
Thanks for your help!
Forum: Fixing WordPress
In reply to: How to get rid of "at" in page titleHi,
I think that you misunderstand me.
The problem is not the “#” symbol in my H1 headers. The problem is the word “at” in the page titles.
Forum: Fixing WordPress
In reply to: How to get rid of "at" in page titleMy site:
https://www.cellwand.comIt was always so. It does not happen with Post titles- only Pages. Deactivating all plug-ins does nothing.
Forum: Fixing WordPress
In reply to: Getting Form to Communicate with Web ServiceHi FYI:
I figured this out on my own using the PHP SOAP library, and a PHP variable array.
Forum: Fixing WordPress
In reply to: Post Titles Not Displaying on Multiple Posts Page in Custom ThemeFYI:
I resolved this issue >
I didn’t realize that the posts used the Index.php file, which I did not configure to show posts. Once I configured it, it worked fine.
Forum: Fixing WordPress
In reply to: Post Titles Not Displaying on Multiple Posts Page in Custom ThemeHi,
Apologies for the impatience..
I am trying to display a list of posts on a template page- I see the posts, but they have no titles, permalinks, and are not even formatted in my content div.
I am thinking it could be on of the php files, but I don’t know which one..Any ideas?
Here is the code I am using:
<div id="content"> <!--THE LOOP --> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php the_title(); ?> <?php the_permalink() ?> <?php the_content('<p>Read more</p>'); ?> <?php endwhile; endif; ?> <!--end of THE LOOP --> </div>
Forum: Fixing WordPress
In reply to: Post Titles Not Displaying on Multiple Posts Page in Custom ThemeAny help would be fantastic!
Forum: Fixing WordPress
In reply to: Getting Form to Communicate with Web ServiceAnyone out there?
Forum: Fixing WordPress
In reply to: Contact Forms not sending messages to emailHi,
Seems as though there is simply a delay on the email being sent..Not sure why this is, but it works now.
Thanks.
Forum: Plugins
In reply to: Looking for WP Form Plug-inIs anyone out there that can help??
Forum: Plugins
In reply to: Looking for WP Form Plug-inHi, Thanks for the suggestion, but I do not think that More Fields does what I am looking for. I need the drop downs to be displayed on my site, not the back end.
Thanks anyways!Forum: Themes and Templates
In reply to: How to modify seacrh.php for custom themeThank you for your help… For now I will exclude:
<div class=”entry-meta”>
<?php twentyten_posted_on(); ?>
</div><!– .entry-meta –>from my theme…
Forum: Fixing WordPress
In reply to: How to customize look of search results page, in custom themeHi,
I realized that the main problem was missing loop.php in my theme. Problem solved…Thanks for your help yalamber!
Forum: Themes and Templates
In reply to: How to modify seacrh.php for custom themeI apologize. I did not read you previous post carefully- I did not have a loop.php file in my theme.
Now after copying this file from Twentyten to my theme, the search works better, but still displays this error:
Fatal error: Call to undefined function twentyten_posted_on() in C:\xampplite\htdocs\wordpress\wp-content\themes\wp2\loop.php on line 129
When I check in the file, and delete the div at line 129 (which is as follows), it seems to work OK.
<div class=”entry-meta”>
<?php twentyten_posted_on(); ?>
</div><!– .entry-meta –>Can you tell me what this div does exactly?
Forum: Themes and Templates
In reply to: How to modify seacrh.php for custom themeStill no go..
Could the problem be something to do with the fact that my search button (and form) in in my header.php, and I have NO sidebar.php?