Hi Robin, May I know the reason? https://wordpress.org/plugins/genesis-simple-share/ is made by Nathan Rice and the team at StudioPress, specifically for Genesis. The other alternative is https://simplesharebuttons.com/. I have not used this but saw a user recommend it.
Search Results for: genesis
Reply To: Removing 'site-inner' Class on Front Page for Enterprise Pro
Try adding this before genesis() in front-page.php: // Remove div.site-inner's div.wrap add_filter( 'genesis_structural_wrap-site-inner', '__return_empty_string' );
Reply To: Full screen width background color on home page widget area
Try https://www.facebook.com/groups/genesiswp/permalink/1064565553594641/?comment_id=1064943086890221&comment_tracking=%7B%22tn%22%3A%22R%22%7D. Let me know if you need clarification or an example.
Full screen width background color on home page widget area
I would like to make the gradient background the full width of the screen in the widget area midway down the page on this page: http://37.60.235.30/~afacorg/ The site is built with the Genesis Sample theme. I have tried css styling on the widget area and the wrap and can’t get it to work the way […]
Create PDF
Sridhar, Tutorial request: Create PDF I’m in desperate need of some good tutorials for some personal projects. I searched your archives, however, you do not have any tutorials suited for my needs. I was hoping you can help me out. This may interest you as, IMO, it makes for a useful and interesting tutorial for […]
Reply To: Removing 'site-inner' Class on Front Page for Enterprise Pro
… Just saw you have a similar tutorial for Centric Pro (https://sridharkatakam.com/how-to-remove-the-empty-site-inner-markup-on-centric-pros-front-page/). I tried commenting out ‘site-inner’ on Enterprise Pro’s front-page.php //* Add support for structural wraps add_theme_support( 'genesis-structural-wraps', array( 'header', 'nav', 'subnav', // 'site-inner', 'footer-widgets', 'footer', ) ); Unfortunately, this didn’t remove this class for me. I assume we need to load the Widget […]
Reply To: How to wrap header and primary nav in a custom div?
Add the following in child theme’s functions.php: add_action( 'genesis_before_header', 'sk_opening_wrap' ); function sk_opening_wrap() { echo '<div class="header-nav">'; } add_action( 'genesis_after_header', 'sk_closing_wrap' ); function sk_closing_wrap() { echo '</div>'; }
Reply To: How to Create a Portfolio using PagePiling.js
Done. Full Screen Portfolio with PagePiling in Genesis
How to apply No Sidebar Pro’s Front Page Layout to Minimum Pro’s Category Archives
In the members-only forum a user wrote: I wanted to add the No Sidebar Pro front page layout as the category page layout to Minimum Pro. I looked at the front-page.php and added the ns_front_page_genesis_meta, ns_full_screen_script, ns_post_class, ns_body_class, and ns_front_featured_image functions to my custom template. I added the front page js to my js folder. […]
How to Create a Portfolio using PagePiling.js
Sri, I love the PagePiling.js tutorial you do here: Full Screen Scrolling Sections in Genesis using PagePiling.js What I would like to do is use that Page Piling effect to go between portfolio items, where each change shows a different portfolio entry. Is there a way to link up PagePiling.js with the portfolio post type […]
Recent Comments