Joy Livingwell
Forum Replies Created
-
Just moved 2 more WordPress sites with Duplicator. Soooooo easy! Thank you, Cory Lamle for writing this amazing plugin!
Forum: Fixing WordPress
In reply to: Warning: Illegal offset type ??This is a known problem with the the latest updates of WordPress + the WP Database Backup plugin. I had the same issue on my website, https://GridbeamSolutions.com. Deactivate the plugin to fix the problem.
See this thread for more info:
https://www.ads-software.com/support/topic/illegal-offset-type-in-php-file
I have contacted the plugin developer about the issue. Hopefully we will have an error-free update from him soon. ??
Forum: Themes and Templates
In reply to: Ilegal offset type in…I had the same issue on https://GridbeamSolutions.com. It is a known problem with the the latest updates of WordPress + the WP Database Backup plugin. Deactivate the plugin to fix the problem.
See this thread for more info:
https://www.ads-software.com/support/topic/illegal-offset-type-in-php-file
I have contacted the plugin developer about the issue. Hopefully we will have an error-free update from him soon. ??
Forum: Themes and Templates
In reply to: [Skirmish] Line 1135 of template.phpI had the same issue; it is a known problem with the the latest updates of WordPress + the WP Database Backup plugin. Deactivate the plugin to fix it.
See this thread for more info:
https://www.ads-software.com/support/topic/illegal-offset-type-in-php-file
I have contacted the plugin developer about the issue, so hopefully we will have an error-free update soon. ??
Forum: Fixing WordPress
In reply to: Category, tag links yield "page not found" errorsJust noticed the author links from posts ALSO generate “page not found” errors. Again, WP is displaying the correct URL, but the page is not generating.
Forum: Fixing WordPress
In reply to: Category, tag links yield "page not found" errorsBTW the category “fake tag” will correctly find the missing test post, and display its excerpt. But clicking on the title link generates the “page not found” error. ?!?
Forum: Plugins
In reply to: [Easy Contact] [Plugin: Easy Contact] Error on upgrade to WP 3.0.4Update: this might be a problem with WordPress 3.0.4, as the Fast Secure Contact Form plugin also failed on upgrade.
Forum: Fixing WordPress
In reply to: How do I make “next post” not a link, title a link?…and yes, I deliberately use the “prevlink” style on both Previous and Next links. ??
Forum: Fixing WordPress
In reply to: How do I make “next post” not a link, title a link?My blog is Living Well NLP.
I use a modified WP-Andreas01 theme.
Here’s the code I currently use on the Single Post template (single.php):
<div class="navigation"> <p><span class="prevlink"><?php previous_post(); ?></span></p> <p><span class="prevlink"><?php next_post(); ?></p> </div>
Forum: Fixing WordPress
In reply to: page URLs in Google Analytics are wrongThe Google Analytics code is in the site header.
Hm, I bet the large number of hits comes from me writing and editing the page, especially the formatting. Google Analytics is reading that as someone viewing the page, because I keep JavaScript turned on in my browser to facilitate using Gmail…
I just created a filter that excludes my usual IP address. I’ll also set up a browser I can use for editing away from home, which has JavaScript turned off.
Thanks, alism!
Forum: Fixing WordPress
In reply to: Is there a way to make excerpts for pages?Thanks, cais. Excerpt Editor did the trick!
Forum: Fixing WordPress
In reply to: Firefox 3.5.3 bug in WP-Andreas-01 themeFixed it!
The problem was in the style.css style sheet:
.contenttext {overflow:hidden;}
I fixed it by adding to the print.css style sheet:
.contenttext {overflow:visible;}
Apparently Firefox follows style sheets more meticulously than some other browsers…
Forum: Fixing WordPress
In reply to: Firefox 3.5.3 bug in WP-Andreas-01 themeFWIW, here’s the code from my (slightly modified) version of the post template:
<?php get_header(); ?> <?php get_sidebar(); ?> <div id="content"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post"> <h2><?php the_title(); ?></h2> <p>Written by <strong><?php the_author() ?></strong>, <?php the_time('j F Y') ?><br /><a href="#comments">Comments: <?php comments_number('none','1','%'); ?></a></p> <div class="contenttext"> <?php the_content('<p>Read more »</p>'); ?> </div> <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?> <p class="postinfo"><strong>Posted:</strong> under <?php the_category(', ') ?>.<br /> <?php the_tags('Tags: ', ', ',''); ?><?php edit_post_link('[edit]',' | ',''); ?></p> <div class="navigation"> <p><span class="prevlink"><?php previous_post_link('« %link','Previous post',''); ?></span> <span class="nextlink"><?php next_post_link('%link »','Next post',''); ?></span></p> </div> <?php comments_template(); ?> <?php endwhile; else: ?> <p>No matching entries found.</p> <?php endif; ?> </div> </div> <?php get_footer(); ?>