Forum Replies Created

Viewing 15 posts - 1 through 15 (of 39 total)
  • in reply to: Inline style editing #315144
    pdupree
    Member
    Post count: 40

    I solved it.

    in reply to: Inline style editing #315131
    pdupree
    Member
    Post count: 40

    How do I eliminate the hover on the .blog-item?

    .posts-type-bold .recent-post:hover .details-wrap *,
    .bold-items .blog-item:hover *,
    .masonry-items .blog-item:hover .details-wrap,
    .masonry-items .blog-item:hover .details-wrap a,
    .masonry-items .blog-item:hover h2,
    .masonry-items .blog-item:hover h6,
    .masonry-items .blog-item:hover .details-wrap .quote-excerpt *,
    .blog-grid-items .blog-item:hover *,
    .instagram-item .inst-overlay data {
    color: #ffffff;
    }

    http://jameswalkermusic.com/2017/

    in reply to: Inline style editing #314293
    pdupree
    Member
    Post count: 40
    This reply has been marked as private.
    in reply to: Inline style editing #313831
    pdupree
    Member
    Post count: 40

    How can I edit an inline style that has !important; included in the style?

    in reply to: team shortcode returns blank screen #291605
    pdupree
    Member
    Post count: 40

    done

    in reply to: team shortcode returns blank screen #291309
    pdupree
    Member
    Post count: 40
    This reply has been marked as private.
    in reply to: team shortcode returns blank screen #291187
    pdupree
    Member
    Post count: 40

    I get the same results with plugins turned off.

    in reply to: v 2.5.6 vs v 2.5.60 #288813
    pdupree
    Member
    Post count: 40

    yes, and version 2.5.60 is not listed
    Is 2.5.6 and 2.5.60 the same?

    in reply to: Please include a list of changed files in the changelogs #263087
    pdupree
    Member
    Post count: 40

    I’m in the process of changing to a theme provider that does provide the details of files changing on updates. Critical for my work.

    in reply to: font-awesome.min not loading #247420
    pdupree
    Member
    Post count: 40

    Then why are social icons not showing up?

    in reply to: font-awesome.min not loading #247413
    pdupree
    Member
    Post count: 40

    Just to be clear, I’m moving from dante to cardinal.
    Then why are social icons not showing up?

    in reply to: main nav missing on category pages #244661
    pdupree
    Member
    Post count: 40

    Here is how I solved this.
    In /swift-framework/core/sf-formatting.php

    Replaced

    /* ADD CPT TAG RESULTS TO ARCHIVES
    	================================================== */
    	function sf_add_cpt_tags_to_archive($query) {
    	    if ( is_category() || is_tag() ) {
    	        $post_type = get_query_var('post_type');
    	        if ( $post_type ) {
    	            $post_type = $post_type;
    	        } else {
    	            $post_type = array('nav_menu_item', 'post', 'portfolio', 'team', 'clients', 'testimonials', 'faqs', 'directory', 'galleries');
    	       	}
    	       	$query->set('post_type', $post_type);
    	        return $query;
    	    }
    	}
    	add_filter('pre_get_posts', 'sf_add_cpt_tags_to_archive');

    with this code I was using in Dante

    // Show custom post types on archives
    add_action( 'pre_get_posts', 'add_my_post_types_to_query' );
    function add_my_post_types_to_query( $query ) {
    	if ( !is_admin() && is_archive() && $query->is_main_query() )
    		$query->set( 'post_type', array( 'post', 'event', 'testimonial', 'portfolio', 'team', 'galleries') );
    	return $query;
    }
    
    // Show custom post types on archives
    add_filter( 'getarchives_where' , 'pdc_getarchives_where_filter' , 10 , 2 );
    function pdc_getarchives_where_filter( $where , $r ) {
    	if ( !is_admin () )
            $args = array( 'public' => true , '_builtin' => false );
            $output = 'names'; 
    		$operator = 'and';
            $post_types = get_post_types( $args , $output , $operator );
            $post_types = array_merge( $post_types , array( 'post', 'event', 'testimonial', 'portfolio', 'team', 'galleries') );
            $post_types = "'" . implode( "' , '" , $post_types ) . "'";
            return str_replace( "post_type = 'post'" , "post_type IN ( $post_types )" , $where );
    }
    
    in reply to: Add custom post types to related articles #243167
    pdupree
    Member
    Post count: 40

    http://jameswalkermusic.com/events/lenten-evensong-2016/
    include event post-types in related articles

    in reply to: main nav missing on category pages #243164
    pdupree
    Member
    Post count: 40

    I get the same results with Cardinal 2.42.


    FYI for the file taxonomy-portfolio-category.php, the sf_base_layout for portfolio-category is missing.

    in reply to: Add custom post types to related articles #242705
    pdupree
    Member
    Post count: 40

    I’ve added post_tag to all custom post types. How/where do I open up related posts to include custom post types.

Viewing 15 posts - 1 through 15 (of 39 total)