windrag
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Twenty-Two] Horizontal lines on single post pageThanks, @thelmachido For some reason the URL was cut off in my post. It’s the news feed page that has the lines: https://communityuke.org/news/
Thanks, @zoonini. I’m getting closer. You were right about the header template part being missing. I added that to the Home template, but it doesn’t display correctly. I think it may have something to do with grouping, or with placement relative to the Query Loop, not sure. Really hard to maintain consistency with the other pages, though.
Edit: I think I almost have it working now. My Delete Cache button was not showing up. When it finally did, I deleted the cache, and it’s getting closer. Thanks for letting me know that it is the Home template I needed to be working with. That made all the difference.- This reply was modified 1 year, 9 months ago by windrag.
Hi @zoonini, I’ll try. As I said, it’s the page header (and navigation) that are not showing up. The post title does show up. Did you look at the page? https://communityuke.org/news/
if you look at the home page you can see how the header is supposed to look: https://communityuke.org/
- This reply was modified 1 year, 9 months ago by windrag.
Forum: Plugins
In reply to: [Form Manager] [Plugin: WordPress Form Manager] Submission emails not sentOops. I think I found the solution:
<https://www.dreamhoststatus.com/2012/05/22/delay-in-sending-email-from-web-servers/>
If it’s helpful, the line in question is a part of a list with checkboxes.
Updated: I experimented, and yes, this error occurs when there is an apostrophe in a line associated with a list with checkboxes.
I’m getting the same error on clicking the Submit button. I wonder if it’s related to an apostrophe not being escaped properly.
Here’s the full error:
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 't want to attend any more events',
text-4f85198fa8594= '',
textarea-4f8519d812′ at line 1`WP: 3.3.1
FM: 1.6.32
Host: Dreamhost
MySQL: 5Email me privately if you want the link tho the form.
ryk [at] ebcmp [dot] org
Forum: Fixing WordPress
In reply to: URL of wordpress installation gives 404I solved this myself. I created an index.php in the wordpress directory:
that contains this:
<?php
header( "HTTP/1.1 301 Moved Permanently" );
header( "Status: 301 Moved Permanently" );
header( "Location: https://mysite.com/" );
exit(0);
?>