ropol
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Adding excerpts to analytics top posts widget.I resolved it myself.
function excerpt($post_id) { global $post; $save_post = $post; $post = get_post($post_id); $output = get_the_excerpt(); $post = $save_post; return $output; }where $wppost is the argument for $post_id.
If you want to trim it you can use wp_trim_words like this:
wp_trim_words(excerpt($wppost), 10).This is added to: $list .= apply_filters……
Hope this is helping someone.
Forum: Plugins
In reply to: Permalink category order?Anyone?
Forum: Themes and Templates
In reply to: [Theme: Radcliffe] White space at bottomI solved it by doing as I wrote in this topic:
https://ww.wp.xz.cn/support/topic/decreased-max-image-height-excess-white-space-at-bottom?replies=4Thank you anyways,
Kind regards.Forum: Themes and Templates
In reply to: [Radcliffe] Remove search feature from main menu@mturke Hi, have you solved this yet? Otherwise, let me know.
Kind Regards
@ndxx – Hi!
I’ve just resolved this at my own and I hope this will also help you.
At first, I created a div eg. container around all of my content in index.php.
Then i added this to my CSS:
.container { min-height: 100%; position: relative; overflow: hidden; }This will create a container that hides everything that’s just overflowing.
Kind Regards
Forum: Themes and Templates
In reply to: [Theme: Radcliffe] White space at bottomHave you found any solution, Bojan?
Kind regards
Forum: Themes and Templates
In reply to: [Theme: Radcliffe] White space at bottomHaving the same problem. The site is not filled out and the homepage suffers with excess white space at the bottom. I do get frustrated over this. How do I fix it?