Home Forums Pro Themes WEN Corporate Pro Can't access numeric pagination in free version

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #32404
    paulhastings0
    Participant

    I downloaded the free version of Wen Corporate. On the sales page (http://wenthemes.com/item/wordpress-themes/wen-corporate-pro/) it says that the free version (WEN Corporate) has pagination in Default form and Numeric form. However, I don’t see any theme option to change my pagination type.

    Right now my search pages simply have an [Older posts] and a [Newer posts] button. I would like my search pages to also show how many pages of search results there are. e.g. [Older posts][1][2][3][4][Newer posts].

    Thanks!

    #32425
    wensolutions
    Keymaster

    Hello @paulhastingsO

    The free version of the WEN Corporate provides the default pagination options i.e older/newer.

    And the option you are looking for is only available in the pro version of this theme. Pro version comes with other exciting feature as well . So if you want to use the feature of numeric pagination you can always consider using pro theme.

    Hope this helps.

    Best Regards!!

    #32520
    paulhastings0
    Participant

    Thanks for your quick reply! Here’s a screenshot of the sales page for Wen Corporate. It says that the free version provides support for paginated navigation. See the screenshot below. Can you please give me the code that would allow to do that?

    http://www.awesomescreenshot.com/image/2182969/ddf015025b5131bbc785ef14c0671432

    Thanks!
    -Paul

    #32553
    wensolutions
    Keymaster

    Hello @paulhastingsO

    To get the feature of the numeric pagination, you have to create and activate the child theme.

    For this you can use any plugin and below is the link for one of them.

    https://wordpress.org/plugins/wp-child-theme-generator/

    Now after creating and activating the child theme in your child theme’s functions.php file use below given code.

    function wen_corporate_paging_nav() {
    
            the_posts_pagination( array(
                        'prev_text'   => __( '<<', 'wen-corporate' ),
                        'next_text'   => __( '>>', 'wen-corporate' ),
                        'before_page_number' => '<span class="meta-nav screen-reader-text">' . __( 'Page', 'wen-corporate' ) . ' </span>',
                     ) );
    
        }

    Hope this helps.

    For any confusion further, we are always here for you 🙂 .

    Best Regards!!

    #32618
    paulhastings0
    Participant

    It worked. Thanks!

    #32670
    wensolutions
    Keymaster

    Glad to know your issues has been resolved !!

    If you have any queries further, please feel free to post them here and we will happily help you further.

    Best Regards !!

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.