treeleaf20
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin: Subscribe2] Stops Sending Emails after a certain timeI have around 400 users registered that I’m trying to send emails to on new creation of posts and they all show up in the Registered users in the Subscribe2 -> Subscribers and I also have the email settings set to 1. I also have the Email Log plugin activated so I can see the emails that wordpress is trying to send and it stops sending them at 229 emails so this isn’t something with the hosting company but all the emails aren’t getting sent out of WordPress.
Forum: Plugins
In reply to: [WP Multi Network] [Plugin: WP Multi Network] 404 for Child PagesTo further my question:
I want to create new networks but am having issues because WordPress is saying it is invalid. I have a base url of something like http://website.com and then I’m trying to create a new network after that. I’d like my new networks to have a name like:
http://website.com/network1/football/page1
http://website.com/network1/baseball/page2
http://website.com/network1/soccer/page3http://website.com/network2/football/page1
http://website.com/network2/baseball/page2
http://website.com/network2/soccer/page3Now I know these are typically categories in under the network but I’m using plugins that don’t recognize categories unless they created for the specific plugin and I don’t want to have to maintain the same categories all over so it’s just easier to create my network with it’s own database and not have to worry about it but WordPress isn’t allowing me to create URLs like above. I’m using sub directories as my choice for multisite in WordPress instead of sub domains. Any ideas on how to do this?
EDIT: I know I could make the URL be something like http://website.com/network1-soccer/ but I’d ideally like to do it how I have it listed above. I also tried the plugin for the WP Multi Network and was able to acheive the nested structure that I would like with creating those subpages within my multisite defined network. However, when I went to http://website.com/network1/ the page loaded fine but when I went to http://website.com/network1/soccer I got a 404 error
Forum: Plugins
In reply to: Images aren't Displayed when using AJAXThe images are actually returned in the HTML but they aren’t displayed. Some of the other formatting is also lost I noticed
Forum: Fixing WordPress
In reply to: Custom Post Pagination DisplayI figured this out on my own. Thanks.
Forum: Fixing WordPress
In reply to: Change the Select statement to display posts in WordPressYes, you’re correct. I’ll need more then this. Do you know which file WordPress uses to actually build the posts search query?
Forum: Fixing WordPress
In reply to: Change the Select statement to display posts in WordPressI’m not entirely sure. Is there an example on how to use the custom fields in a query? I don’t think that you can do a join on two tables using the custom query. I want to use something like:
Select custom.address1, custom.zip, wp_post.title
From wp_posts
Join wp_posts.post_id=custom.post_id
Where custom.zip=’$zip’Then display output based on this query.