nickkos
Forum Replies Created
-
Forum: Plugins
In reply to: [Anim8] Where to put [Anim8]?Sorry into the code of whatever template file you want it to display in. So for example your homepage’s theme file is usually index.php.
Forum: Plugins
In reply to: [Anim8] Where to put [Anim8]?Sorry ill update the readme, for now its just your normal post and page editor.
To integrate directly into theme use <?php echo do_shortcode(‘anim8’); ?>
Forum: Meetups
In reply to: San Diego WordPress MeetupI am always down to meet up, I work for a professional outfit in Kearny Mesa. I am happy to teach, I’ve done quite a few sites in wordpress.
https://vivioptalvitamins.com
https://wholesaledepotca.comI write all my themes from scratch. I have extensive general use knowledge and development knowledge. And I’m happy to help.
Forum: Fixing WordPress
In reply to: Need a slider and how do I show five most recent posts on a page?This code goes in the theme file where you want your slider displayed.
But you will have had to follow the install guide for that website first before it will slide.
Forum: Fixing WordPress
In reply to: Need a slider and how do I show five most recent posts on a page?There are plugins but you are best off doing it yourself and learning how to code. It will help you go a long way. You could always start with simple slider.
There is an installation guide and more.
This way you can dictate the size, transitions etc. As for hooking it up to the backend thats a whole section in and of itself. But you can start with something simple like
<div class="slider"> <ul> <?php // The Query $the_query = new WP_Query( $args ); // The Loop while ( $the_query->have_posts() ) : $the_query->the_post(); echo '<li>' . if ( has_post_thumbnail() ) { the_post_thumbnail(); } . '</li>'; endwhile; // Reset Post Data wp_reset_postdata(); ?> </ul> </div>
Forum: Fixing WordPress
In reply to: Don't Understand How to Change Font Size in PostsIF you use chrome…the developer tools will tell you exactly what line of css to change.
Right click on the thing you want to change and hit inspect element. On the bottom right is a css panel and it will tell you which file and which line to edit.
Forum: Meetups
In reply to: San Diego WordPress MeetupWas hoping to see if anyone else was interested.
Forum: Your WordPress
In reply to: Vivioptal VitaminsIts from scratch and I used a page template that contains the loop.
Forum: Fixing WordPress
In reply to: Integrating to existing siteInstall a nice portfolio theme and stop using flash. Its not mobile friendly and terribly hard to add/remove content to.
WordPress is incredibly user friendly. If you have dreamweaver experience you could make your own themes with a bit of time and effort.
I design client work in wordpress because of it’s user friendliness it is my CMS of choice.
Forum: Fixing WordPress
In reply to: Multiple Custom Post Types one not displaying.the reason that happens…is a plugin or outside source is competing for that position.
Forum: Fixing WordPress
In reply to: Blog Page Showing Page NameWhy isnt /code working in forum?
Forum: Fixing WordPress
In reply to: Blog Page Showing Page NameThat should be enough…` <?php
/*
Template Name: Blog
*/
?><?php get_header(); ?>
<div id=”main” class=”clearfix”>
<div id=”content” class=”full clearfix twoThird”>
<?php while (have_posts()) : the_post(); ?>
<?php $c++; ?>
<?php $postClass = has_post_thumbnail() ? $postClass = “withThumb” : $postClass = “”; ?>
<?php $postClass = $c == $post_count ? $postClass = $postClass.” lastPost” : $postClass = $postClass; ?>
<div class=”post clearfix <?php echo $postClass; ?>”><?php if(has_post_thumbnail()) : ?>
<a href=”<?php the_permalink() ?>” rel=”bookmark” ><?php the_post_thumbnail(‘ttrust_small’, array(‘class’ => ‘postThumb’, ‘alt’ => ”.get_the_title().”, ‘title’ => ”.get_the_title().”)); ?></a>
<?php endif; ?>
<div class=”inside”>
<div class=”metaCat”><?php the_category(‘, ‘) ?></div>
<h1><a href=”<?php the_permalink() ?>” rel=”bookmark” ><?php the_title(); ?></a></h1>
<div class=”meta clearfix”>
Posted By:<?php the_author_posts_link(); ?><?php the_time( ‘M j, Y’ ) ?> | <a href=”<?php comments_link(); ?>”><?php comments_number(__(‘No Comments’, ‘themetrust’), __(‘One Comment’, ‘themetrust’), __(‘% Comments’, ‘themetrust’)); ?></a>
</div>
<?php the_content(); ?>
<?php more_link(); ?>
</div>
</div><?php endwhile; ?>
<?php include( TEMPLATEPATH . ‘/includes/pagination.php’); ?>
</div> <!– end content –><?php get_sidebar(); ?>
</div><?php get_footer(); ?> `
Forum: Fixing WordPress
In reply to: Posts not aligning properly in IEYeah compat mode is sucks in the future you can `if (IE COMPAT) then {
fix IE Crap
}`Forum: Fixing WordPress
In reply to: Blog Page Showing Page NameTry this `<?php
/*
Template Name: Blog
*/
?><?php get_header(); ?>
<div id=”main” class=”clearfix”>
<div id=”content” class=”full clearfix twoThird”>
<?php while (have_posts()) : the_post(); ?>
<?php $c++; ?>
<?php $postClass = has_post_thumbnail() ? $postClass = “withThumb” : $postClass = “”; ?>
<?php $postClass = $c == $post_count ? $postClass = $postClass.” lastPost” : $postClass = $postClass; ?>
<div class=”post clearfix <?php echo $postClass; ?>”><?php if(has_post_thumbnail()) : ?>
<a href=”<?php the_permalink() ?>” rel=”bookmark” ><?php the_post_thumbnail(‘ttrust_small’, array(‘class’ => ‘postThumb’, ‘alt’ => ”.get_the_title().”, ‘title’ => ”.get_the_title().”)); ?></a>
<?php endif; ?>
<div class=”inside”>
<div class=”metaCat”><?php _e(‘In’, ‘themetrust’); ?> <?php the_category(‘, ‘) ?></div>
<h1><a href=”<?php the_permalink() ?>” rel=”bookmark” ><?php the_title(); ?></a></h1>
<div class=”meta clearfix”>
<?php _e(‘Posted by:’, ‘themetrust’); ?> <?php the_author_posts_link(); ?> <?php _e(‘on’, ‘themetrust’); ?> <?php the_time( ‘M j, Y’ ) ?> | <a href=”<?php comments_link(); ?>”><?php comments_number(__(‘No Comments’, ‘themetrust’), __(‘One Comment’, ‘themetrust’), __(‘% Comments’, ‘themetrust’)); ?></a>
</div>
<?php $content = get_the_content(”); ?>
<?php $content = apply_filters(‘the_content’, $content); ?>
<?php echo wpt_strip_content_tags($content); ?>
<?php more_link(); ?>
</div>
</div><?php endwhile; ?>
<?php include( TEMPLATEPATH . ‘/includes/pagination.php’); ?>
</div> <!– end content –><?php get_sidebar(); ?>
</div><?php get_footer(); ?>`
Forum: Fixing WordPress
In reply to: Multiple Custom Post Types one not displaying.Remove all menu position code.