Diventare Creative
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Slow down slider in Techified WordPress ThemeFound it! It was in the header, but thank you for pointing out the js file. I did a sitewide search and “delay” came up first in the header. It was in the code below
<?php if (is_home()) : ?> function startGallery() { var myGallery = new gallery($('myGallery'), { timed: true, delay: 10000, slideInfoZoneOpacity: 0.8 }); } window.addEvent('domready', startGallery); <?php endif; ?>
Forum: Themes and Templates
In reply to: Slow down slider in Techified WordPress ThemeYup, that’s the one. I can’t find anything in the settings, and I changed the delay as you noted and a couple of other settings but never saw any change. I wonder if I have to clear my cache after I make a change…
Forum: Fixing WordPress
In reply to: Using Conditional Statement To Control Header imageThank you so much! Works like a charm ??
Forum: Fixing WordPress
In reply to: Conditional tags in header.php code for custom header on pagesGreat, I get it now. Thank you for your help ??
Forum: Fixing WordPress
In reply to: Conditional tags in header.php code for custom header on pagesjermyclark13, thank you, that fixed it! Now was RVoodoo right in saying that it was placed incorrectly? Looks like you moved it down inside the “header” div.
Forum: Fixing WordPress
In reply to: Conditional tags in header.php code for custom header on pagesOkay, that worked… I did the same for the small_slide.jpg image and that was the trick. NOW, my page is actually supposed to bring in header-about.jpg as referenced in
?> <?php if(is_page('2')){ echo '<images/header-about.jpg" />'; } ?>
but that doesn’t seem to be working.
Forum: Fixing WordPress
In reply to: How to bypass the “READ MORE” and go directly to full postThank you Ipstenu, RVoodoo and xdesi for your quick responses and for saving me one less headache today. Your posts pointed me in the right direction and didn’t just give me the answer, but made mee figure out how it all works. You are awesome ??
Forum: Fixing WordPress
In reply to: How to bypass the “READ MORE” and go directly to full postIpstenu, that was it! I commented out the
<?php cutstr($post->post_content, 500); ?>
and the full post showed. The READ MORE is still there though, I think I can figure out how to get rid of that. Anything to worry about structurally if I comment out or delete that chunk of code?Forum: Fixing WordPress
In reply to: How to bypass the “READ MORE” and go directly to full postThanks RVoodoo, I really need to read up on WordPress structure if I want to continue doing this professionally ??
Forum: Fixing WordPress
In reply to: How to bypass the “READ MORE” and go directly to full postBelow is the full code for category.php
<?php get_header(); ?> <?php $count = 0; ?> <?php if (have_posts()) : ?> <div class="fullbox_excerpt"> <div class="fullbox_content"> <h3> <?php single_cat_title(); ?> </h3> <?php while (have_posts()) : the_post(); ?> <?php if($count > 0) { ?> <div class="excerpt_separator"></div> <?php } ?> <div class="excerpt_meta" id="post-<?php the_ID(); ?>"> <div class="excerpt_desc"> <h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> <?php cutstr($post->post_content, 500); ?> </div> <div class="excerpt_more"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="more-link"><?php _e('READ MORE >>', 'techified'); ?></a> </div> </div> <?php $count++; ?> <?php endwhile; ?> </div> <div class="fullbox_footer"></div> </div> <div id="post-navigator"> <?php if (function_exists('wp_pagenavi')) : ?> <?php wp_pagenavi(); ?> <?php else : ?> <div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'techified')); ?></div> <div class="alignleft"><?php next_posts_link(__('« Older Entries', 'techified')); ?></div> <?php endif; ?> </div> <?php else: ?> <div class="fullbox"> <div class="fullbox_header"></div> <div class="post_message"><?php _e('Please check back soon as more content will be posted.', 'techified'); ?></div> <div class="fullbox_footer"></div> </div> <?php endif; ?> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: How to bypass the “READ MORE” and go directly to full postI wonder if this custom code would be replacing the usual the_excerpt();
<div class="fullbox_excerpt">
Forum: Fixing WordPress
In reply to: How to bypass the “READ MORE” and go directly to full postHere’s the code for the template page (index.php)
<?php get_header(); ?> <?php if(is_home() && !get_option ( 'techified_disable_featured_post' )) { include (TEMPLATEPATH . '/slider.php'); } ?> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="fullbox" id="post-<?php the_ID(); ?>"> <div class="fullbox_header"></div> <div class="fullbox_content"> <div class="breadcrumb"><?php the_category(', ') ?></div> <h1><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a></h1> <!--<div class="post_info"> <div class="post_info_left"><?php echo __('Posted on', 'techified').' '.get_the_time(__('F j, Y', 'techified')); ?> <?php echo the_author_posts_link(); ?></div> <div class="post_info_edit"><?php edit_post_link(__('Edit this entry', 'techified'),'','.'); ?></div> <div class="post_info_right"> <?php comments_popup_link(__('No Responses', 'techified'), __('One Response', 'techified'), __('% Responses', 'techified'), 'post_comment'); ?> <?php if(!get_option ( 'techified_disable_all_ext' )) { ?> <!-- AddThis Button BEGIN --> <script type="text/javascript"> var addthis_disable_flash = true; </script> <span class="post_bookmark"><a class="addthis_button" href="https://www.addthis.com/bookmark.php?v=250&pub=cheonnii" addthis:url="<?php urlencode(the_permalink()); ?>" addthis:title="<?php urlencode(the_title()); ?>"><?php _e('BOOKMARK', 'techified'); ?></a><script type="text/javascript" src="https://s7.addthis.com/js/250/addthis_widget.js?pub=cheonnii"></script></span> <!-- AddThis Button END --> <?php } ?> </div> </div>--> <div class="post_content"> <?php the_content(__('READ MORE >>', 'techified')); ?> </div> </div> <div class="fullbox_footer"></div> </div> <?php endwhile; ?> <!--<div id="post-navigator"> <?php if (function_exists('wp_pagenavi')) : ?> <?php wp_pagenavi(); ?> <?php else : ?> <div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'techified')); ?></div> <div class="alignleft"><?php next_posts_link(__('« Older Entries', 'techified')); ?></div> <?php endif; ?> </div>--> <?php else: ?> <?php endif; ?> <?php get_sidebar(); ?> <?php get_footer(); ?>
Forum: Fixing WordPress
In reply to: How to bypass the “READ MORE” and go directly to full postThank you so much for the quick response. I am not finding the_excerpt in the main template file or any others so far.
Forum: Fixing WordPress
In reply to: Can’t enable comment functionWell I’ll be damned! That was it! Thanks a bunch esmi, have a great weekend. Props for pointing me in the right direction ??
Forum: Fixing WordPress
In reply to: Can’t enable comment functionYou are correct! I think I fixed it by using default code from my WordPress install folder.
One last problem… I can comment, but they don’t show up on screen!