This is searchable archive of our old support forums, which operated from 2012 - 2016. To find out how to get support for your current theme, please visit our support page.

Mark Wiard

Forum Replies Created

Viewing 15 replies - 1 through 15 (of 18 total)
  • Author
    Replies
  • in reply to: Duplicate header logos with 2.1 #25896
    Mark Wiard
    Participant

    Yup, that fixed it.

    Thank you,
    mark

    in reply to: HTTP error on image upload #25683
    Mark Wiard
    Participant

    Filtering the crop sizes worked, and seems like the perfect solution.

    Thank you,
    mark

    For reference, this is what I started with. Now I can remove a few lines for the image sizes that the site actually uses.

    /* START turn off Jumpstart image crop sizes */
    function my_image_sizes( $sizes ) {
         
        unset($sizes['tb_x_large']);
        unset($sizes['tb_large']);
        unset($sizes['tb_medium']);
        unset($sizes['tb_thumb']);
        unset($sizes['tb_grid']);
        unset($sizes['tb_square_x_large']);
        unset($sizes['tb_square_large']);
        unset($sizes['tb_square_medium']);
        unset($sizes['slider-x-large']);
        unset($sizes['slider-large']);
        unset($sizes['slider-medium']);
        unset($sizes['slider-staged']);
    											 
        return $sizes;
     
    }
    add_filter( 'themeblvd_image_sizes', 'my_image_sizes' );
    /* END turn off Jumpstart image crop sizes */
    in reply to: Before Footer inconsistent on Blog template page #24205
    Mark Wiard
    Participant

    Thank you, this works great.

    mark

    in reply to: Large logo, out of the header menu area #23698
    Mark Wiard
    Participant

    Perfect. Sometimes CSS seems just magical.

    in reply to: Full width banner image for logo #23229
    Mark Wiard
    Participant

    Thank you for the quick and efficient support.

    mark

    in reply to: Add new Social Media Button to header #22255
    Mark Wiard
    Participant

    Thank you, I will do it this way.

    in reply to: Facebook icon in top menu #21159
    Mark Wiard
    Participant

    Works perfectly. Thank you .

    mark

    in reply to: TB Shortcode Plugin Conflict with dsIDXpress #20962
    Mark Wiard
    Participant

    Just throwing in my 2 cents.

    Turning off the Raw shortcode solved my dsIDXpress issue also.

    Thank you, Jump Start v2 rocks.

    mark

    Mark Wiard
    Participant

    Jason,

    The custom layout worked perfectly. Thank you for the great support and the great themes.

    mark

    Mark Wiard
    Participant

    Sorry, let me try this again. On this page:

    http://salidarec.com/

    we would like to show the full content of the latest five posts in the category homepage. We were successfully using this shortcode:

    [post_list categories=”homepage” numberposts=”5″]

    Lately, this has reverted to just showing the excerpts. It seems like this should work:

    [post_list category_name=”homepage” numberposts=”5″ post_content=”content”]

    but it still only shows the excerpt.

    I thought from a previous post, that you had recently changed the shortcode to only show excerpts. There was some code that seemed like it would go in the functions file. This did not work for me.

    /* home page full text of posts */
    function ncc_home_posts() {
    $args = array(
    ‘category_name’ => ‘homepage’,
    ‘numberposts’ => 5,
    ‘content’ => ‘content’,
    ‘thumbs’ => ‘hide’,
    ‘orderby’ => ‘date’
    );
    themeblvd_posts( $args, ‘list’ );
    }

    Do you have another suggestion for accomplishing what we want?

    mark

    in reply to: Make post_grid images linkable #15929
    Mark Wiard
    Participant

    Jason you are a rock star. Thank for the real answer, and not an RTFM.

    in reply to: Slideshow and menu in IE 9 compatibility mode #14557
    Mark Wiard
    Participant

    I understand. Thank you for the quick response.

    in reply to: Sitemap post order #14388
    Mark Wiard
    Participant

    Jason,
    This works perfectly, thank you.
    mark

    in reply to: Sitemap post order #14339
    Mark Wiard
    Participant

    Sorry that code did not work, trying again

    from your original sitemap template, I added the orderby

    <?php query_posts('cat=&orderby=rand'.$cat->cat_ID); ?>

    full loop code

    <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>
    	<div class="entry-content">
    		<?php rewind_posts(); ?> 
            <?php edit_post_link( themeblvd_get_local( 'edit_page' ), '<p class="edit-link clearfix">', '</p>' ); ?>
            <h1 class="entry-title">The Salida Colorado Chamber of Commerce Membership</h1> 
            <?php $cats = get_categories(); ?>
            <?php foreach ($cats as $cat) : ?>
            
                  <?php query_posts('cat=&orderby=rand'.$cat->cat_ID); ?>
                
                    <h2><?php echo $cat->cat_name; ?></h2>
                    <ul class="sitemap">
                        <?php while (have_posts()) : the_post(); ?> 
                        <li><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li> 
                        <?php endwhile; wp_reset_query(); ?>
                    </ul>
                    
            <?php endforeach; ?>
    	</div><!-- .entry-content (end) -->
    </article>

    I get all the businesses listed under every category, and not random:

    http://salidachamber.org/wp/salida-chamber-membership/

    in reply to: Sitemap post order #14338
    Mark Wiard
    Participant

    This is the code that I got from the sitemap template, work perfectly, except the businesses are not random order.

    <article id="post-”

    <?php edit_post_link( themeblvd_get_local( 'edit_page' ), '’, ” ); ?>
    The Salida Colorado Chamber of Commerce Membership

    cat_ID); ?>
    cat_name; ?>

    <a href="”>

    if I modify this line

    cat_ID); ?>
    to add the orderby
    cat_ID); ?>

    I get all the businesses listed under every category, and not random:
    http://salidachamber.org/wp/salida-chamber-membership/

    mark

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