makdas
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce Poor Guys Swiss Knife] How to format emailsYes but the dl,dt and dd structure that gets hooked into the order email are not part of woocommerce templates… its actually in the woocommerce-poor-guys-swiss-knife-about.php plugin file. So how do we style that inline?
Forum: Fixing WordPress
In reply to: Choose from all tagsHave you found a solution yet?
Forum: Plugins
In reply to: [Post Types Order] [Plugin: Post Types Order] Add Category FilterDo you have a link to the modified file? thanks
BTW, awesome plugin!
No problem,
I have altered your code to include any post type and order_by menu.
I can send it to you so you can include in an update?Forum: Fixing WordPress
In reply to: read more link not working on Streamline 1.1.3 by 9th sphereHi,
The read more link appears, but the href of that link is “more-2”, witch does not link anywhere… please help.
WP 2.9.1
This is my code
<?php global $more; $more = false; ?>
<div id=”content”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class=”feature”>
<h2>ID); ?>” ><?php the_title(); ?></h2>
<?php $more = 0; ?>
<?php the_content(‘Read More’); ?>
<?php $more = true; ?>
</div>
<?php endwhile; endif; ?>