Community Forums › Forums › Archived Forums › Design Tips and Tricks › Need ideas/solutions for a page break issue
Tagged: page in Agency pro theme
- This topic has 5 replies, 2 voices, and was last updated 10 years, 8 months ago by
Davinder Singh Kainth.
-
AuthorPosts
-
November 10, 2015 at 7:53 am #170642
Shobha22
ParticipantHi folks:
I need help with ideas and solutions for my site ... see my eStore page at http://shobhaponnappa.com/estore-for-digital-entrepreneurs-books-tools-products/
At present I am using the Agency Pro Theme and my landing page template for this eStore.
What I need is that the top part of the page ie. the headline, the image on the left top, the contents list on the top right and the social share buttons below image on left (i.e. till the horizontal rule) to be static, and when I click the contents list items, I want the part of the page below the horizontal rule alone to change. Is this possible?
The idea is that the top static part has to be like a store masthead, so that the contents leads to changing pages below the horizontal line.
What can I do to achieve something like this?
Thanks for whoever can give me a great idea.
Shobha Ponnappa
http://shobhaponnappa.comNovember 10, 2015 at 9:25 am #170661Davinder Singh Kainth
MemberOn simple way to would be... adding a widget area on that content part which will remain there even when you navigate to page 2
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesNovember 10, 2015 at 10:34 am #170685Shobha22
ParticipantThanks, that sounds good. Should I add the widget to the page itself at the top using some plugin like "Widgetize Pages Light"? I'm not a techie so could you please explain how to do it?
November 13, 2015 at 9:01 am #170998Davinder Singh Kainth
Member***backup before making changes.
1. Add following code in functions.php file
//* estore for books Widget genesis_register_sidebar( array( 'id' => 'estore-for-books', 'name' => __( 'estore for books', 'custom' ), 'description' => __( 'This is estore for books section', 'custom' ), ) ); /** posts estore for books section */ add_action( 'genesis_entry_content', 'custom_estore_for_books', 9 ); function custom_estore_for_books() { if (is_page(array('18'))) { echo '<div class="estore-for-books">'; dynamic_sidebar( 'estore-for-books' ); echo '</div><!-- end .estore-for-books -->'; } }2. Replace 18 with page ID of that page where you want to add widget.
3. Add content to this new widget from widgets section
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis ThemesNovember 13, 2015 at 10:06 am #171006Shobha22
ParticipantThanks that works! Awesome!
November 15, 2015 at 8:53 am #171152Davinder Singh Kainth
MemberWelcome!
Sunshine PRO genesis theme
Need Genesis help? Davinder @ iGuiding Media | My Blog | Fresh Genesis Themes -
AuthorPosts
- The forum ‘Design Tips and Tricks’ is closed to new topics and replies.