hoss9009
Forum Replies Created
-
Forum: Themes and Templates
In reply to: default css markupNice!
Do u think there’s much difference between WP 2.5 and 3.1?Also, if I didn’t point it out, it adds quotation marks (“”) around the text (domain).
Really weird.
Ok here’s what I have:
<?php $mcf = get_ept_field('web_website', array('raw' => 'true') ); var_dump($mcf); ?>
BUT…. for some reason it’s throwing in some string for me:
<a href="string(25) "https://www.domain.com" ">See this item live!</a>
WTF?! Help?Here, here!
Help?Anyone to get JUST the text from textfields?
Forum: Plugins
In reply to: [WP Easy Post Types] [Plugin: WP Easy Post Types] Single-post.php explainedCan you check out how I can get my single-EPT.php to show up as a grandchild?
ie:
https://domain.com/parent/custom-post/single-custom/It shows up as:
https://domain.com/custom-post/single-custom/It skips the parent.
Ideas?
Worked for me!! Did you guys change the plugin name? My version didn’t upgrade automatically.
Thanks for the info.
I look forward to the fix… GREATLY.Forum: Fixing WordPress
In reply to: Single Custom Post TypeOk… here’s something thrown into the mix with ECPT.
I just realized that I have my CPT being called on a child page:
domain.com/parent/child/
I’m wanting to have the
singe-posttype.php
come up as:
domain.com/parent/child/single-posttype/
BUT… it’s coming up as:
domain.com/child/single-posttype/
Also, the ECPT’s “System Key” (for this particular CPT) is the same as my child page. I changed the “System Key” and am actually getting:
domain.com/systemkey/single-posttype/
but stillno single-posttype.php
comes up.Any ideas on how to fix all this?
1. How do I get thesingle-posttype.php
to work?
2. How do I do all this with the “Pretty URL’s” working?BTW, thanks for everyone’s help.
Forum: Fixing WordPress
In reply to: Single Custom Post TypeThanks! I’ll give it a whirl.
Forum: Plugins
In reply to: [WP Easy Post Types] [Plugin: WP Easy Post Types] Single-post.php explainedOK thanks… I’ll give it a whirl.
Forum: Fixing WordPress
In reply to: Single Custom Post Typejus tried that… no luck.
here’s my single:<?php get_header(); ?> <div id="content"> <div id="red-news" onclick="location.href='<?php echo get_option('home'); ?>/news/';" style="cursor:pointer;"></div> <div id="left"> <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_url'); ?>/js/demoStyles.css"> <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_url'); ?>/js/jScrollPane.css"> <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery.js"></script> <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jquery_002.js"></script> <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/jScrollPane.js"></script> <script type="text/javascript"> $(function() { $('#single-entry').jScrollPane({showArrows:true}); }); </script> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <h2 class="single-title"><?php the_title(); ?></h2> <div class="single-date"><span class="month"><?php the_time('M') ?></span><span class="day"><?php the_time('j') ?></span><span class="year"><?php the_time('Y') ?></span></div> <div class="single-category"><?php the_category(', ') ?></div> <div class="clear"></div> <div tabindex="0" style="height: 560px; width: 540px; " class="jScrollPaneContainer jScrollPaneScrollable"> <div class="single-entry " id="single-entry"> <?php the_content(); ?> </div><!-- end .single-entry & #single-entry --> </div><!-- end jScroll wrap div --> <?php endwhile; ?> <?php else : ?> <h2>Not Found</h2> <p>Sorry, but you are looking for something that isn't here.</p> <?php endif; ?> <div class="clear"></div> </div><!-- end id="left" --> <?php include (TEMPLATEPATH . '/news-sidebar.php'); ?> <div class="clear"></div></div><!-- end "content --> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: Single Custom Post Typehmmm… so just copy my single.php with the custom post type name?
Forum: Fixing WordPress
In reply to: Single Custom Post TypePerhaps an example loop?
could you give an example loop?