arkane8
Forum Replies Created
-
We are having the exact same issue. We built an entire site around this premise expecting it to work and now as we near production we realize the points do not assign for new or renew or even cancellation of membership from the Paid Membership Pro plugin.
Thanks — do you have an ETA or anything? That way I can decide whether it’s worth manually spending the time to set an extra line break in our first paragraph for each of our posts.
Forum: Fixing WordPress
In reply to: Files does not exist: /usr/local/apache/htdocs/wp-contentNevermind, I found the problem.
Had the wrong DocumentRoot configured in httpd.conf
Forum: Your WordPress
In reply to: food site using wp – not a standard templateI like how you take wordpress and mold it to outside of the box. Very well done. It shows really how much powerful wordpress is. Lol you even named the blog directory /food. I haha’d.
Anyway, the customization is certainly nice. I also customized mine beyond standard WP but unforutnately it’s still a vertical blog type post (I’m trying to do two columns). Anyway check it out, the site is a hip hop community about buying beats.
Forum: Your WordPress
In reply to: Music Site Based on WordPress. Not your typical WP blog.Thanks! ??
Yes it’s highly customized. Any more feed back is welcome, and I’ll be more than happy to check out your WP site too and leave feedback.
Forum: Fixing WordPress
In reply to: 2.5 theme-editor.php – http 500 errorAn error 500 occurs if you have an improperly defined theme stylesheet.
Make sure the Theme Name appears at the very top between commenting such as
/* Theme Name: XYZ Theme */
The comment tags must appear on separate lines. If they are on the same line as the Theme Name, an error 500 will occur.
PS If the WP developers can correct this, that would be especially helpful to newbies.
Forum: Plugins
In reply to: Having users pay to post in WordPresspolcham – wp-bankroll is not updated for wp2.5 and up (although i rigged it so it works, albeit not fully functional)
Forum: Plugins
In reply to: Similar Posts by Categoryanyone?
Forum: Themes and Templates
In reply to: the_category as list?Good point. You got me there. Lol. Not enough coffee today.
Forum: Themes and Templates
In reply to: the_category as list?whooami, that is totally going to cause errors as the very first category in the list will have an unclosed
</li>
tag, which can mess up an entire display of the page.once again:
<ul> <?php foreach((get_the_category()) as $cat) { echo '<li><a href="https://www.yoururl.com/yourpermalinkbasedirectory/' . $cat->category_nicename . '">' . $cat->cat_name . '</a></li>'; } ?> </ul>
Forum: Themes and Templates
In reply to: the_category as list?Mithrustt that doesn’t work as it doesn’t define
<li>
tags in between each category using the the_category() function.Use the function I provided on top, ThreeVisual. It is exactly what you need.
Forum: Themes and Templates
In reply to: the_category as list?Try this custom function
<ul> <?php foreach((get_the_category()) as $cat) { echo '<li><a href="https://www.yoururl.com/yourpermalinkbasedirectory/' . $cat->category_nicename . '">' . $cat->cat_name . '</a></li>'; } ?> </ul>
Forum: Plugins
In reply to: Auto-delete-posts plugin (category-specific) for WP2.5.1It is a simple change. Open to edit your auto-delete-posts.php plugin with a text editor. Then:
Rename all references of wp_categories to wp_terms, if any
And rename all ‘cat_ID’ to ‘term_ID’ and ‘cat_name’ to just ‘name’Then you should now have a working plugin.
Forum: Fixing WordPress
In reply to: Alphabetical Posts in the Archive PageI know this was an old post, but just in case people don’t know, WordPress includes the ability to pull up an entire list of post titles in alphabetical order using the archives.
The syntax is:
<?php wp_get_archives('type=postbypost&type=alpha&order=ASC'); ?>
Forum: Fixing WordPress
In reply to: Slow New/Edit Post/Pages Due to Too Many Authorsbump!