JohnF
Forum Replies Created
-
PM sent through your contact page
You are correct that since I have been quite pleased with BDP for several months one-star is too low, so I have raised it to two stars. But omitting sales taxes on purchases is more than just “one feature for you”. It makes us unable to recoup our costs for the plugin and development time spent on our end, since we cannot offer paid listings. If other folks are not asking for it, I’m willing to bet a lot of them are ignorant about the sales tax laws affecting them, setting them up for trouble down the road.
I did submit a support request here but the response was: BD currently supports only the price of the item–we don’t handle taxes, VAT, or other stuff like that. The “stuff like that” is serious stuff.
Forum: Fixing WordPress
In reply to: Add a "Posts" menu itemThe front page is set to a static page, with the specific page set in the Front Page dropdown. The Posts Page selector is blank (-Select-) since I don’t want it to be the front page.
Forum: Everything else WordPress
In reply to: Bluehost is down againThanks for the info. I was trying to figure out why my email doesn’t work, site is down, etc., and tried to call BlueHost = busy signal.
Forum: Fixing WordPress
In reply to: How to show comments in Twenty Twelve Theme home pageI’ve been struggling with this and I think I have finally got it to work, as follows. In the file index.php there are several loops and if..endif sections. You have to get it right, since only part of the code runs. The two lines of comment code have to be in the first part of the if loop. Here’s what I did:
<?php if ( have_posts() ) : ?> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php $withcomments = 1 ?> <?php comments_template( '', true ); ?> <?php endwhile; ?> <?php twentytwelve_content_nav( 'nav-below' ); ?> <?php else : ?>
The comments code goes within the
while...endwhile
loop, just before theendwhile
, so it shows up under each post. There are two lines:$withcomments = 1
This variable seems to need to be set to1
first, then the function calledcomments_template( '', true );
And that seems to work.