achenn
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: debug error – wp_enqueue_style was called incorrectlyAfter speaking with a friend, I now believe the error is somewhere in the javascript I’m using, but I’m not sure exactly what’s going on as I’m still very new to incorporating javascript.
My more recent post was closed, but my thinking now is to use conditional tags- I”m just not certain how to integrate the conditional tag with NextGen’s shortcode.
Forum: Plugins
In reply to: [Plugin: NextGen Gallery] using shortcode for different galleriesReally, any and all help would be greatly appreciated.
The only solution I can come up with is to create a different page template for each stylist and utilize the shortcode there, but surely there is a better route to take?
Forum: Fixing WordPress
In reply to: link to single most recent post, regardless of categoryForum: Fixing WordPress
In reply to: the_excerpt not showing postsThat works perfectly, thank you.
Forum: Fixing WordPress
In reply to: the_excerpt not showing postsI have a landing page that will, among other things, feature a small excerpt of the most recent blog post.
Currently, that section has only a link to the landing page.Forum: Fixing WordPress
In reply to: landing page shows 1 most recent blog post- how to exclude image?EDIT: this is what I’ve put in functions.php for
short_content:// Limit Post Content by Amount of Characters
function short_content($num) {
$limit = $num+1;
$content = str_split(get_the_content());
$length = count($content);
if ($length>=$num) {
$content = array_slice( $content, 0, $num);
$content = implode(“”,$content).”…”;
echo ‘<p>’.$content.'</p>’;
} else {
the_content();
}
}Forum: Fixing WordPress
In reply to: two "recent" previews for separate categories.. how to?any and all help is greatly appreciated.
Ok, so how do I go about having my custom-styled pages show?
I’ve done a bit of reading since my original question. According to the codex it appears that I can name it whatever I want, as long as it’s got<?php /* Template Name: Custom Name */ ?>at the top?
How would I implement the content? Just copy/paste the HTML into the page?
Forum: Fixing WordPress
In reply to: issues with styling image captionthe images definitely have captions- they were showing previously, just not in the right position.
Forum: Fixing WordPress
In reply to: issues with styling image captionalchymyth, thanks for your time and attention.
I made the changes you recommended, and the caption that was once there, just in the wrong place, has now disappeared. Any ideas?Forum: Fixing WordPress
In reply to: issues with styling image captionchanging it to
get_post_thumbnail_captioni both index.php and functions.php still doesn’t allow me to style it..Forum: Fixing WordPress
In reply to: issues with styling image caption@wpyogi I’m not sure what you mean.. In index.php, which I linked to in my initial post, there is the following:
<div class="detail"> <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2> <?php if (the_post_thumbnail_caption()) { echo '<p class="wp-caption-text">' . the_post_thumbnail_caption() . '<p>'; }?>Forum: Fixing WordPress
In reply to: issues with styling image captionSorry, I thought I included the live site in with the pastebin links.