jkahuisman
Forum Replies Created
-
Forum: Plugins
In reply to: [FeedWordPress] RSS source another WordPress blog?Hi Blazeking, what kind of DNS issue did you have?
I am having the same problem, with this feed:
But I cant seem to find the fix..
Forum: Plugins
In reply to: [Facebook Comments] 0 comments showing / no secret askedHi Alex, first of all, thanks for the quick response!
It is indeed possible to make a comments on the website. It gets posted to Facebook as well.
But I thought that comments were ‘pulled’ from the facebook page as well. So, the article is shared on facebook and afterwards someone posts a comment. Am I wrong to think that these comments get pulled to facebook?
Thank again!
Forum: Plugins
In reply to: [WP Category Post List Widget] Any easy way to support custom post types?Got the solution, you just have to enter a code in the wp_cpn_ouput_gen.php. Around line 33 is the next code:
$arg = array(
‘cat’ => $cat_id,
‘numberposts’ => $op[‘list_num’],
‘orderby’ => $wp_cpl_sort_array[$op[‘sort_using’]],
‘order’ => ((true == $op[‘sort_order’])? ‘ASC’ : ‘DESC’),
‘post__not_in’ => $op[‘exclude’]
);
Just add your own line:$arg = array(
‘post_type’ => ‘your custom post type’,
‘cat’ => $cat_id,
‘numberposts’ => $op[‘list_num’],
‘orderby’ => $wp_cpl_sort_array[$op[‘sort_using’]],
‘order’ => ((true == $op[‘sort_order’])? ‘ASC’ : ‘DESC’),
‘post__not_in’ => $op[‘exclude’]);
Forum: Plugins
In reply to: [WP Category Post List Widget] Any easy way to support custom post types?Neither for me…
Forum: Fixing WordPress
In reply to: Exclude taxonomy from list of postsIndeed, the ‘field’ was the problem. And the – that had to be _ in tax_query.
Thanks!
Forum: Fixing WordPress
In reply to: How to display only custom post types on a template pageWell, in the end that worked! Just had to look for the right file in the hierarchy – thanks!
Forum: Plugins
In reply to: Link Nextgen sidebar to pageBy accident i found a ramshackle bypass. Just make a text widget above the Nextgen widget. Type an A HREF-link there without an end, and the widget below is the mentioned link. Not a real FIX, but it works till there is better solution.
By accident i found a ramshackle bypass. Just make a text widget above the Nextgen widget. Type an A HREF-link there without an end, and the widget below is the mentioned link.
It seems to be impossible to link the widget to a page, i really would like to do this as well. Nobody?
Forum: Plugins
In reply to: Link Nextgen sidebar to pageOk, last effort. Is it possible to link the nextgen widget to a page?
Forum: Plugins
In reply to: Link Nextgen sidebar to pageIs this really not possible?