Archived
This topic is now archived and is closed to further replies.

Recommended Posts
-
Similar Content
-
By Perry+
Hi,
I've added the Post/Page pagination section to the bottom of the blog category page on the dev site here (see screenshot): http://dianef.sandboxes.online/category/intention-and-invention-blog/ but it is giving me the message "Post/Page Pagination is hidden or returned no output", and when viewing the page in another browser, I see nothing.
Does anyone have an idea why this might be?
Your help is much appreciated in advance.
Thank you,
Perry
-
By John Olsson+
Hi, I wonder how I can edit the function pl_pagination in function.php located plugins > pl-platform > engine > lib without editing the core-file, that will be overwritten from time to time.
When I place the same code in my function.php located in my child theme, it just gets error.
What the practice here, to edit that function, I want to replace for ex. "Next Entries" and the arrow to something else.
This is what the original code looks like:
/** * * Pagination Function * * @package PageLines Platform 5 * @subpackage Functions Library * @since 5 * * Single posts need to use next_post_link() * Archives can use next_posts_link() * */ function pl_pagination() { if ( function_exists( 'wp_pagenavi' ) ) : wp_pagenavi(); else : ?> <ul class="pl-pager page-nav-default fix"> <?php if( is_single() && ! is_page() ) { printf( '<li class="previous previous-entries">%s</li>', get_previous_post_link( '%link' ) ); printf( '<li class="next next-entries">%s</li>', get_next_post_link( '%link' ) ); } else { printf( '<li class="previous previous-entries">%s</li>', get_previous_posts_link( __( '← Föregående','pl-platform' ) ) ); printf( '<li class="next next-entries">%s</li>', get_next_posts_link( __( 'Nästa →','pl-platform' ) ) ); } ?> </ul> <?php endif; } // As a callback with nav args associated function pl_menu_callback( $args ) { pl_menu_fallback( $args['menu_class'] ); } function pl_menu_fallback( $class = '', $limit = 5 ) { $pages_out = pl_page_list( $limit ); printf( '<ul class="%s">%s</ul>', $class, $pages_out ); } function get_pl_nav_default( $args ) { $limit = ( isset( $args['limit'] ) ) ? $args['limit'] : 6; $pages_out = pl_page_list( $limit ); return sprintf( '<ul class="%s">%s</ul>', $args['menu_class'], $pages_out ); }
-
By BentleyD+
Hi Everyone,
I am having issues with being able to post to my blog with platform 5. Currently when i click publish, it just shows the homepage of MoonBodySoul.com. That is until i open the page editor and change the scope from "All of type: Posts" to "Current Page Only". Then I have to re-insert the menu header as well. This seems like a really dumb process. In past versions of pagelines, I could just post a blog and the menu would be there and there would be no formatting issues. What can I do to fix this?
MoonBodySoul.com
-
By tforasiepi+
How do you move the thumbnail on a blog post? I need the thumbnails for the blogroll page, but they show up at the top of the actual post page. Normally, this would be fine, but I've been requested to put it under the blog title. Any suggestions?
Thanks.
-
By tforasiepi+
My client is asking for a new blog layout similar to the one found here: http://blog.perkinswill.com/pokemon-augmented-reality-and-the-future-of-urban-design/
They have a splashy full-width background image overlaid with part of the blog and one sidebar. The navigation arrows send you to the next post.
Does anyone know if this is even possible using Framework 5? If so, can you send me some advice on how to get here?
Totally stuck!
Thanks.
-