Forum Replies Created

Viewing 15 replies - 1 through 15 (of 29 total)
  • Plugin Author nickkos

    (@nickkos)

    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.

    Plugin Author nickkos

    (@nickkos)

    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 Meetup
    nickkos

    (@nickkos)

    I 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.com

    I write all my themes from scratch. I have extensive general use knowledge and development knowledge. And I’m happy to help.

    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.

    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.

    https://basic-slider.com/

    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>

    IF 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 Meetup

    Was hoping to see if anyone else was interested.

    Forum: Your WordPress
    In reply to: Vivioptal Vitamins
    Thread Starter nickkos

    (@nickkos)

    Its from scratch and I used a page template that contains the loop.

    Install 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.

    https://businessonmarketst.com

    the reason that happens…is a plugin or outside source is competing for that position.

    Why isnt /code working in forum?

    That 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(); ?> `

    Yeah compat mode is sucks in the future you can `if (IE COMPAT) then {
    fix IE Crap
    }`

    Try 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(); ?>`

    Remove all menu position code.

Viewing 15 replies - 1 through 15 (of 29 total)