In Genesis Slack chat a user wanted to know how entries of a specific custom taxonomy term can be excluded from a Custom Post Type archive page in Genesis. We can remove the standard loop from a project CPT archive’s template and replace it with a custom one in which genesis_custom_loop() can be sent an […]
Search Results for: wordpress
How to remove Posts page heading in Genesis
Have a static Page set as Posts page at Settings > Reading in your Genesis powered WordPress site? If you want to remove the Page title inside .posts-page-description, just add the following in your child theme’s functions.php: remove_action( ‘genesis_before_loop’, ‘genesis_do_posts_page_heading’ ); Before: After: Source: genesis/lib/structure/archive.php
How to show Series and Tags below books in the Library when using Genesis Author Pro plugin
In the members-only forum a user asked: Hi Sridhar! The Genesis Author Pro plugin by default shows the books in the library in newest to oldest order, I’m wondering if there’s a way to reverse that so that the oldest book (or first added) is shown first and so on? Also, is there a way […]
Video Background for Front Page 1 in Altitude Pro
Updated on 20 Jun 2022 This premium tutorial provides the steps to set up a background video for the first section in Altitude Pro using the Video Headers feature in WordPress. Live Demo Tested in Genesis 3.3.5 and Altitude Pro 1.5.1. Step 1 Enable support for custom header and set the minimum viewport width to […]
How to add additional widget areas similar to Front Page 1 in Digital Pro
Updated on January 28, 2017. Tested in Digital Pro 1.1.0. In the comments section of How to display full sized (viewport height) featured image on static Pages in Digital Pro tutorial a user asked, Hi Sridhar, First of all thank you for the amazing tutorials. I am currently working on a site using Digital Pro […]
Reply To: Modern Portfolio – using Blog widget on a other page then Home
Hello Kenneth, You can register a custom widget area and display it before the footer widgets using the following sample code (goes in child theme’s functions.php): genesis_register_sidebar( array( 'id' => 'services-blog', 'name' => __( 'Services – Blog','mpp' ), 'description' => __( 'This is the blog section of the Services page.','mpp' ), ) ); add_action( 'genesis_before_footer', […]
Reply To: WP_User_Query with pagination
Hello Clayton, I don’t think it is possible to use genesis_posts_nav(); with custom queries such as this one. I found a few links that may help you: 1) http://www.hongkiat.com/blog/wordpress-display-authors-pagination/ (this has a missing closing brace as mentioned at http://stackoverflow.com/a/20910463/778809) 2) http://stackoverflow.com/a/24339108/778809 3) http://kensiosan.wowproblems.com/wp-user-query-pagination/ Lastly this generator could be of use: https://generatewp.com/wp_user_query/
Slideshow background via Soliloquy slider using Backstretch in Genesis
In the past I showed how a single random image can be pulled from images uploaded to a Soliloquy slider and set as body background using Backstretch here. In this article I share the code for getting URLs of all images uploaded to a Soliloquy slider and passing these to Backstretch for full screen slideshow […]
WP_User_Query with pagination
Hi Sri, I am using WP_User_Query to grab over 400 users and display them on a page template. In my arguments, I can specify the number of users to show but cannot figure out how to get pagination to work. ` $args = array( ‘order’ => ‘ASC’, ‘orderby’ => ‘display_name’, ‘exclude’ => array (15, 2), […]
Reply To: Modern Portfolio – using Blog widget on a other page then Home
Hi Sridhar, I Like to show it on a particular static Page. I am using the plugin ‘Display WordPress Posts (Jetpack)’ and want to show then the posts of a difference site on this site. Hope you can tell me how? Regards, Kenneth
Recent Comments