Forum Replies Created
-
AuthorPosts
-
Now its whatever I drag the post list to.
I have fixed by changing the line to
$args = array( ‘post_type’ => ‘team’, ‘posts_per_page’ => $show, ‘post__not_in’ => get_option(‘sticky_posts’), ‘orderby p.menu_order ASC LIMIT 1’Emailed forum.
as mentioned before – that doesn’t work….. They are displayed by date in asc (not by the order under “Our Team”
Changed line 385 and now the sort is reversed.
How do I choose the order?// Shortcode Our Team
// [ourteam col=”4″ show=”4″ excerptlength=”25″]function ourteam_func( $atts ) {
extract( shortcode_atts( array(
‘col’ => ‘4’,
‘show’ => ‘4’,
‘excerptlength’ => ’25’,
), $atts ) );
extract( shortcode_atts( array( ‘show’ => $show,), $atts ) ); $ourtm = ”; wp_reset_query();$ourtm = ‘<div class=”sectionrow skt-ourteam”>’;
$args = array( ‘post_type’ => ‘team’, ‘posts_per_page’ => $show, ‘post__not_in’ => get_option(‘sticky_posts’), ‘orderby’ => ‘date’, ‘order’ => ‘asc’ );
query_posts( $args );
$n = 0;
if ( have_posts() ) {Line 541 is
‘add_new’ => __( ‘Add New’,’complete’ ),Found it under edit theme but there is no “desc” text.
What is sktframe?
SKT Theme service is great. If you have any issue with any theme the support team are they to help.
The support is great and very speedy.URL is cowara.com.au
https://cowara.com.au
Perfect, Thanks.
You login to your account, go to “My Account” then choose “Downloads”
https://www.sktthemes.org/my-account/downloads/
thanks.
still not correct – see email sent to forum…..
You have the text outside the box field as the demo has them inside. -
AuthorPosts