Digital experiences for all disciplines
Forum Replies Created
-
Posted in: We hit Power Elite.
-
I solved it.
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;
}This reply has been marked as private.How can I edit an inline style that has !important; included in the style?
done
This reply has been marked as private.I get the same results with plugins turned off.
yes, and version 2.5.60 is not listed
Is 2.5.6 and 2.5.60 the same?April 21, 2016 at 7:19 pm in reply to: Please include a list of changed files in the changelogs #263087I’m in the process of changing to a theme provider that does provide the details of files changing on updates. Critical for my work.
Then why are social icons not showing up?
Just to be clear, I’m moving from dante to cardinal.
Then why are social icons not showing up?Here is how I solved this.
In /swift-framework/core/sf-formatting.phpReplaced
/* 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 ); }
http://jameswalkermusic.com/events/lenten-evensong-2016/
include event post-types in related articlesI 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.I’ve added post_tag to all custom post types. How/where do I open up related posts to include custom post types.
-
Posted in: We hit Power Elite.