Portfolio page

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #3693
    intosuwo
    Customer

      Hi,

      I want on the portfoliopage a title and a short discription of what the page is about. i have read some other topics but i can’t get it right.

      Can you put me in the good direction?

      Regards Ton

      #3699
      Wes
      Moderator

        This used to be feature that was already included, but there was an update with Genesis 1.9 that prevented this from working. So this is on the list of things to get done. We have to figure out what was changed. Take a look at this post – https://appfinite.com/topic/text-content-above-posts-on-portfolio-page/#post-3289

        #3751
        intosuwo
        Customer

          Hi Wes,

          Thanks for responding, i’ve added a widget, but now this widget is above the Breadcrumbs but i want it beneath.

          I want  first: 1)  Breadcrumbs  2)Page Title  3) description of the page

          Any ideas?

          Regards Ton

          #3777
          Wes
          Moderator

            Which hook did you use?

            #3805
            intosuwo
            Customer

              /** Register Widget Area */

              genesis_register_sidebar( array(
              ‘id’            => ‘before-content-ad’,
              ‘name’          => __( ‘Before-content-ad’ ),
              ‘description’   => __( ‘Content on top portfoliopage.’ ),
              ) );

              #3820
              Wes
              Moderator

                Thats how to “Register” the widget, I’m talking about the other code that you add when you “hook” the widget into place.

                #3825
                intosuwo
                Customer

                  /** Add Widget Area */

                  add_action( ‘genesis_before_content_sidebar_wrap’, ‘child_before_content_ad_sidebar’ );
                  /** Loads a new sidebar before the content */
                  function child_before_content_ad_sidebar() {

                  echo ‘<div class=”before-content-ad”>’;
                  dynamic_sidebar( ‘before-content-ad’ );
                  echo ‘</div>’;

                  }

                  #3834
                  Wes
                  Moderator

                    Change the location it shows up in by replacing – “genesis_before_content_sidebar_wrap” with either of these –

                    genesis_before_content

                    or

                    genesis_before_loop

                    You can also reposition the breadcrumbs……you probably won’t need to, but I’m posting so you can be aware that its possible – http://my.studiopress.com/snippets/breadcrumbs/#reposition

                    Here is a visual hook guide to Genesis – http://genesistutorials.com/visual-hook-guide/

                    Let me know if that works.

                    #3907
                    intosuwo
                    Customer

                      Thanxs Wes this solved my problem.Keep up doing the the best.

                      Regards Ton

                    Viewing 9 posts - 1 through 9 (of 9 total)
                    • The topic ‘Portfolio page’ is closed to new replies.