jeremi_liwanag
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Change Page Title SeparatorAnyone can answer this?
Hi!! Unfortunately It gave me Date/Time/Categories and a Map. Also the information that’s being outputted is wrong .. I’m getting 12:00am and 1970’s.
I just want the start and end time.
Thanks!
[ Please do not bump, that’s not permitted here. ]
Ohh i see! thanks! ??
Forum: Plugins
In reply to: [WP eCommerce] Different Grid Columns for Different Categoriesanyone????
Forum: Themes and Templates
In reply to: Post/Page Image Src HTML not VisualYes i did,
actually it’s like this
/wp-content/themes/mysite/images/miniperson.jpg
also tried this
wp-content/themes/mysite/images/miniperson.jpg
/mysite/images/miniperson.jpg
mysite/images/miniperson.jpg
/images/miniperson.jpg
images/miniperson.jpg
/wordpress/wp-content/uploads/2012/10/image1.jpg
wordpress/wp-content/uploads/2012/10/image1.jpg
/wp-content/uploads/2012/10/image1.jpg
wp-content/uploads/2012/10/image1.jpg
none of them seems to work
Forum: Themes and Templates
In reply to: Post/Page Image Src HTML not VisualTried /wp-content/themes/yourThemeName/images/image1.jpg
doesn’t work :`(
i wonder if there’s a plugin that can do that
instead of https://localhost/wordpress/wp-content/uploads/2012/10/image1.jpg
it will accept
images/image1.jpg
i really need a help on this ..
because i have a lot of mini icons that are in unordered list. do i have to upload them and copy paste the url one by one? that will take me at-least a day to complete it.
Forum: Themes and Templates
In reply to: Post/Page Image Src HTML not VisualYes, i think i already have created a folder inside my theme
WordPress/wp-content/themes/myTheme/images/ (this is where my images at)
So the img src will be like
<img src="images/image1.jpg" />
right? but this one doesn’t workForum: Themes and Templates
In reply to: Post/Page Image Src HTML not VisualWhat do you mean access? I’m using WordPress locally for now. I’m using WAMP
Forum: Themes and Templates
In reply to: navigation helpIve already tried that.. it doesn’t seem to work with my theme.
is there a way i can just manually code the pagination??<?php get_header(); ?> <div id="featured"><?php slidedeck( 171 ); ?></div> <div id="content"> <?php query_posts("posts_per_page=5"); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div <?php post_class() ?> id="post-<?php the_ID(); ?>"> <h2 class="post-title"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2> <?php include (TEMPLATEPATH . '/inc/meta.php' ); ?> <div class="entry"> <?php the_excerpt(); ?> <div id="read"><a href="<?php the_permalink() ?>"> <img src="<?php bloginfo('template_directory'); ?>/images/read-more.jpg" /> </a></div> </div> </div> <?php endwhile; ?> <?php else : ?> <h2>Not Found</h2> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Themes and Templates
In reply to: not sure if css or wordpress codex …help??oh! thats why when i put floats on my title and entry divs… they’ve collapsed. i going to validate it first.
How about my loop? is it ok?
Forum: Themes and Templates
In reply to: not sure if css or wordpress codex …help??and can you tell if there is something wrong with my loop and css codes?
i’m currently editing it offline using wamp.
Forum: Themes and Templates
In reply to: not sure if css or wordpress codex …help??oops sorry bout that. yeah anyway here is the site
i want to add a background color in my blog title just like the meta.
.post-title { color: #000; font-size: 22px; padding: 0; margin: 30px 0 0 0; background: #fafafa }