Robert
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] 500 Internal Server Error when I activate WoocommerceI don’t get what you mean “set the woocommerce pages” ??? And I’m not a newbie. That doesn’t make any sense to me.
Install them? They are installed already. I can’t get into the WP Admin dashboard for this site due to the 500 error. I can get to the public site.
thanks…
Bump for email FROM address problem when sharing by Email.
I just got an email FWD from wordpress@mydomain.org … which got trapped by our email admin’s account.
a. It’s not a great user experience — the recipient replied to a post sent via email using JetPack Share tool.
b . The email simply has a pat line with the link, is from wordpress@mydomain.org, and also has the reply-to set the same.
c. I could hack the plugin file and find this but would rather see it resolved in code to future proof the install.Would love to see a reply. This is a deal breaker for my work as it really breaks the visitor’s and a recipient’s experience.
Forum: Fixing WordPress
In reply to: excluding category from postspetit: I don’t know if your question is sincere or if you are trolling. Here is my answer:
Nope. The logic is strict.
A simple example with more natural language:if post-categories contain category==17
then do not show post
else
show postNothing here is contradictory. It actually depends on what you want to do doesn’t it?
It could be this:
if post-categories contain category==17 && category==1
then show post normally
else
show post with pink backgroundForum: Fixing WordPress
In reply to: excluding category from postsI took out the is_home() check and it works suddenly. Weird, I must have had something out of place.
Forum: Fixing WordPress
In reply to: excluding category from postsYah I did, and found another peculiar situation. If I run query posts nothing changes. If I run this line
<?php while (have_posts()) : the_post(); ?>nothing changes but I can create a section below restricting to one category successfully, it’s the main body that still comingles the attempted excluded cat.
<?php if ( !(in_category('17')) && is_home() ) { ?>Now. If I run this:
<?php query_posts("cat=-17"); ?>that category DOES get excluded from the main body of entries ONLY if the post is tagged with cat id#17 only — but if for instance the post is tagged with three categories, 3, 5, && 17 then it still gets listed.Not sure why this is so queer. Thanks in advance. I’ll be away for a day or so but happy to answer questions if anyone has them.
Forum: Fixing WordPress
In reply to: Can’t get WP 1.5 to write proper .htaccess rulesDitto — this worked for me. I had tried like crazy to set up a rewrite, redirectmatch, and alias all to no avail. I just don’t have the time right now to sift it all out.
thanks