wildbilly
Forum Replies Created
-
it doesn’t work anymore for me too, it just doesn’t show the bar, no errors in the javascript console.
I checked all the faqs but nothing helped, some faq is also wrong, for example there’s no “cookie-law-info.css” file, but it is named “cli-style.css”.
I’m forced to leave this plugin and use another one.Forum: Plugins
In reply to: [LearnPress - WordPress LMS Plugin] Error al crear cursosI had this issue too, in the creation course page I can’t create a course because this error disables the course content and the page editor.
I found a solution on the web, they say to replace every occur (line 191 and 220 file /wp-content/plugins/learnpress/inc/libraries/meta-box/inc/field.php as far as I know) of func_get_args() used inside another function, and set another variable to use as the argument.
So, instead of the line:
$args = call_user_func_array( array( __CLASS__, '_sanitize_args' ), func_get_args() );
you write something like that:$args2 = func_get_args(); $args = call_user_func_array( array( __CLASS__, '_sanitize_args' ), $args2 );
Hope it helps someone.
Bye
update, I have to add post_type=’my custom post type‘ to my WP_Query() to get my posts, but in this way I can’t mix custom post types and regular post types, but that’s it…
update, if I call the_category() for my custom post type, I get the correct category, also the count posts for the category includes my custom post type posts, so how is it possible that I can’t list my custom post type posts in the category page?
please help, I’m going mad!Hi,
I think I have the same problem.
I selected the category field in the “select taxonomies” box for my custom post type, but when I try to list a category, my custom post type posts do not show up.
I see that the url is mysite.com/category/’category name’ but the url of my custom post type post is mysite.com/’post type slug’/’post title’.
I tried messing with urls like ‘/post type slug/category/category name’ but no luck.
It seems that the custom post types posts don’t have the category meta, even if it is selected in the types admin.