Sascha
Forum Replies Created
-
Thanks for the hint royho. I didn’t set my webhook endpoint in stripe.
Forum: Fixing WordPress
In reply to: Sort posts by post views and consider meta keyHmm doesn’t work for me.
Forum: Fixing WordPress
In reply to: Sort posts by post views and consider meta keyThank you i have overlooked the additional array. π
But it still doesn’t work.Here is the full code:
$values = array( 'numberposts' => 10, 'orderby' => 'meta_value_num', 'meta_key' => 'count_views', 'meta_query' => array( 'key' => 'slider', 'compare' => '!=', 'value' => '' ) ); $my_posts = get_posts( $values ); global $post; foreach( $my_posts as $post ) : setup_postdata($post); the_title(); endforeach; wp_reset_postdata();The problem is that this code only shows posts with a slider image. But it ignores the sorting.
Forum: Fixing WordPress
In reply to: How to convert this blog into a full webpage with menus?Add this to your “Custom CSS” or simple at the bottom of your style.css
#inner-wrapper {
width: 100%!important;
}#header,
#content-wrapper {
width: 1000px;
margin: auto;
}Forum: Fixing WordPress
In reply to: Count posts from each author?I found it here:
Click to see itForum: Fixing WordPress
In reply to: A better post overview in wordpress?I found a good tutorial:
Click here to showForum: Fixing WordPress
In reply to: Post Tags in WordPressThank you very much ricoh.
Forum: Everything else WordPress
In reply to: I'm not seeing the right websiteBy the way: Your meta description should be longer than 2 words.
Forum: Everything else WordPress
In reply to: I'm not seeing the right websiteHave you tried to simply deactivate and again activate?
Forum: Everything else WordPress
In reply to: I'm not seeing the right websiteForum: Fixing WordPress
In reply to: Error in wordpressThank you esmi – it works great π
Forum: Fixing WordPress
In reply to: Error in wordpressParse error: syntax error, unexpected ‘&&’ (T_BOOLEAN_AND)
Forum: Themes and Templates
In reply to: Add checkbox to save page@LastForOne Thank you. That’s what I was looking for.