Licorne
Forum Replies Created
-
Forum: Plugins
In reply to: [Plugin WooCommerce] Paypal FeesThank you. I was looking for something like this! ^_^
But it doesn’t seem to work for me. The only thing that carries over to the paypal website is the 0.40 amount. The percentage doesn’t seem to carry over. I copied and ran this code as is.
Any idea why the subtotal doesn’t work? I’m using the latest version of the paypal gateway: @version 2.0.0
Forum: Plugins
In reply to: Category Filtered Widgets link*bump* Anyone?
Forum: Plugins
In reply to: Display latest 10 posts from specific categoryShouldn’t this work too? Even without a plugin..
<?php
$posts = get_posts('numberposts=5&order=DESC&orderby=post_date&category=1');
foreach ($posts as $post) : start_wp(); ?>
<h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
<?php the_content(); ?>
<?php endforeach; ?>
Just replace numberposts with the number of recent posts you want shown, and the category # to your desired category.
Forum: Plugins
In reply to: Image/File UploaderYou mean download the image from the browser then upload it on WordPress?
Forum: Fixing WordPress
In reply to: Separate Category List by Parent CategoryOk. Thank you. Sorry if this is the wrong place or forum but, do you know where I can find someone who can write the plugin? I’m willing to pay for it.
Forum: Fixing WordPress
In reply to: Separate Category List by Parent Categoryhttp://manga-avenue.com/manga/girl-got-game/
The portion I am talking about in inside the blockquotes.
Thanks.
Forum: Fixing WordPress
In reply to: Separate Category List by Parent CategoryThank you. But the output is like this:
parent1/child, parent2/child, parent2/child
But I want a
Parent 1: Child
Parent 2: Child, childIs it possible?
Forum: Fixing WordPress
In reply to: Separate Category List by Parent CategoryOk. But here’s the thing. The wp_list_cats lists ALL categories. I just want to list the categories only for that particular post, say:
Number: (chosen child category of Number here)
Color: (chosen child category of Color here)Forum: Fixing WordPress
In reply to: Separate Category List by Parent CategoryThank you!
Forum: Fixing WordPress
In reply to: Separate Category List by Parent CategoryThank you! =)
Is there a plugin where I could execute the wp_list_cats in the post itself?
Forum: Fixing WordPress
In reply to: Separate Category List by Parent CategoryThank you. But how do I list them horizontally? The code above generates a vertical list.
Forum: Plugins
In reply to: Where can i..Yes, I’d like something like that do. I’ll even be willing be pay for a plugin like that.
where users can earn points by commenting or posting in a forum plugin for WP and then they can buy stuff or what not.
Forum: Themes and Templates
In reply to: Custom sidebar linksBut how do I then link to my archives.php file? If I try http://domainhere.com/archives.php it gives me a 404 error…
Sorry. I was just to the WP version before the templates thing. Before, I only had to create a page with the code
<ul>
<?php wp_get_archives('type=monthly'); ?>
</ul>and then save that as archives.php and I’m all set.
I’m currently using the default template.