thebadone411
Forum Replies Created
-
suavros,
I’m having a similar issue. The only templates being imported from Mailchimp into Autochimp are the templates labeled as “Classic”.
Most of my newer templates are of the “Drag and Drop” variety but if you create a new template and go to the “Themes” tab, you should have some options in that list that are “Classic” instead of “Drag and Drop”
Good luck.
So nothing about on_sent_ok ?
I’ve read that page but I think it was written before Google Analytics started using their asynchronus code.
Does the code to set this up change if I’m using asynchronus analytics code on my site?
Thanks
Forum: Fixing WordPress
In reply to: [How To] Show Posts Related To Category Only?KnightKato – I’m running into the same issue you did but I don’t want the list to be in my sidebar. Any ideas? Anybody?
https://www.ashtrayreviews.com/reviews2/
Thanks in advanceForum: Plugins
In reply to: How to show links to other posts from same Category?I’m running into issues on this as well. Dunkkan – I’ve tried all three of the links you recommended. I don’t like the plugin. It’s just not what I need. I’m running into the same issue with the first two threads. I’ve got things setup on the main page (which only shows one post) and on individual posts, however, I’m only getting the most recent posts from the same category. Regardless of whether I’m looking at a post in category 1, 2, 3 or 4 I’m only getting the recent posts from category 4 to show up.
KnightKato in the second thread says that once he put the code in his sidebar it started working but I’d like to have the list sitting below my posts. Any suggestions?
https://www.ashtrayreviews.com/reviews2/
Thanks in advance
Forum: Plugins
In reply to: Rotating Posts Multiple ThumbnailsI’ve been playing with the CSS a lot and I know I can alter the various opacitys. My issue is this: With the current black background, opacity on the thumbs takes the images closer to black. This is fine for the on thumbnail, but I would like the hover thumbnail to get lighter, not darker. So how do I set that up? I don’t know if it’s possible with this plugin, so should I setup an extra set of images to call for the hover thumb that have been manually altered.
I noticed the border on ESPN as well and that’s throwing me for a loop too. Obviously I can just add the border in the CSS but they have a little arrow at the top. How can I get that?
Forum: Themes and Templates
In reply to: list posts in certain category on homepageI figured as much, I just didn’t know what to query. I did some experimenting and this worked:
<?php query_posts('cat=0&showposts=1'); ?>
. For future reference, insert the following code between
<?php if (have_posts()) : ?> and <?php while (have_posts()) : the_post(); ?><?php query_posts('cat=8&showposts=5'); ?> <h2>Featured Posts</h2> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></li> </div> <?php endwhile; ?> <?php query_posts('cat=0&showposts=1'); ?>
Obviously you’ll want to set the first cat= to the ID# for your featured content category and alter the showposts= to display the desired number of posts in the featured posts section as well as the normal number of posts on the main index.
Forum: Themes and Templates
In reply to: list posts in certain category on homepageI’ve got a featured post category and used Kalessin’s code on my homepage to create links to featured posts, but somehow I end up displaying the posts in full right after that. I think I need to reset:
<?php query_posts('cat=8&showposts=5'); ?>
so it stops looking at cat=8 and looks for the most recent posts. Anybody know how I manage that reset or whatnot?