donPablo
Forum Replies Created
-
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Limit in categories and tagsi have seen also https://www.ads-software.com/plugins/recent-posts-widget-extended/
code for display also categories of post would be nice
i think cat=”” does not work paraemeter i have category with id 4 and with slug jaszczurki and i cannot fetch data by cat=”4″ or cat=”jaszczurki”also option ti display only sticky would be nice ?? now you can only ignore them.
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Limit in categories and tagsyes now i think it could be caching. btw any chances for developing this for example an option for showing in which categories is article?
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Limit in categories and tagsi dont know why but it is strting finally to cooperate ??
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Limit in categories and tagsi have just made a test and if i change numbers to for example 9 it works, so only deacrasing works, increasing not workin:>
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Limit in categories and tagsyes and i said i changed and that not work in that helpers.php file ?? evn when you change number to 1000 its still 100 hmm…
in another plugin i got sollution like this to make it nice working
in file in plugins was constants:if( !defined( ‘WPNW_VERSION’ ) ) {
define( ‘WPNW_VERSION’, ‘4.2’ ); // Version of plugin
}
if( !defined( ‘WPNW_DIR’ ) ) {
define( ‘WPNW_DIR’, dirname( __FILE__ ) ); // Plugin dir
}
if( !defined( ‘WPNW_POST_TYPE’ ) ) {
define( ‘WPNW_POST_TYPE’, ‘news’ ); // Plugin post type
}
if( !defined( ‘WPNW_CAT’ ) ) {
define( ‘WPNW_CAT’, ‘news-category’ ); // Plugin Category
}and to functions.php i get something like below, co it rewrites settings from plugin file
add_filter( ‘register_post_type_args’, ‘custom_register_post_type_args’, 10, 2 );
function custom_register_post_type_args( $args, $post_type ) {if ( ‘news’ === $post_type ) {
$args[‘rewrite’][‘slug’] = ‘nius’;// Then flush them
flush_rewrite_rules();
}return $args;
}if(!defined( ‘WPNW_POST_TYPE’ ) ) {
define(‘WPNW_POST_TYPE’, ‘nius’); // Plugin post type
}//************** Renaming news-category post type name to wiadomosci *************************/
function custom_modify_taxonomy_args() {
// get the arguments of the already-registered taxonomy
$news_category_args = get_taxonomy( ‘news-category’ ); // returns an object$news_category_args->show_admin_column = true;
$news_category_args->rewrite[‘slug’] = ‘niusy’;
$news_category_args->rewrite[‘with_front’] = false;// re-register the taxonomy
register_taxonomy( ‘news-category’, ‘news’, (array) $news_category_args );
}
// hook it up to 11 so that it overrides the original register_taxonomy function
add_action( ‘init’, ‘custom_modify_taxonomy_args’, 11 );if(!defined( ‘WPNW_CAT’ ) ) {
define(‘WPNW_CAT’, ‘niusy’); // Plugin post type
}Forum: Plugins
In reply to: [Recent Posts Widget Extended] Limit in categories and tagsi have changed numbers but tags are still limited to 100 hmm and categories also …
btw if i put that code to functions php i see
===================
B??d typu E_ERROR zosta? spowodowany w linii 458 pliku /var/www/clients/client2/web2/web/wp-content/themes/mystery-child/functions.php. Komunikat b??du: Cannot redeclare rpwe_cats_list() (previously declared in /var/www/clients/client2/web2/web/wp-content/plugins/recent-posts-widget-extended/includes/helpers.php:42)but its not necesarry would be nice to have it in functions but i can change code manually but that file helpers.php i think its not that file where i can increase numbers
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Limit in categories and tagsbut can you help me with code which can ovveride ? ??
Forum: Plugins
In reply to: [Recent Posts Widget Extended] Limit in categories and tagsany prompt how to override it and add pemamently to functions.php ?:) one for cat one for tags?
i love this plugin better is than others but now i cannot use it hehe ??- This reply was modified 5 years, 3 months ago by donPablo.
Forum: Plugins
In reply to: [Multipage] Use on pagesForum: Plugins
In reply to: [Recent Posts Widget Extended] Can’t include more categoriescan you contact me ? nook86 at gmaaaaaaaail dot com ? i am interested in payed version, got some ideas about how to improve this ??
PPForum: Plugins
In reply to: [Automatically Paginate Posts] The paginate links really not working!agree
Forum: Plugins
In reply to: [Recent Posts Widget Extended] limited categories…bump, seriously there is bug here limited categories..
Forum: Plugins
In reply to: [Multiple Domain Mapping on Single Site] themes…Any chances for such solution to this ? I could donate for beer ?? btw it’s manual for page any chances to change also category etc and rest? How to make it working for many pages I just wanted to have separate layout for some category from my wordpress I got about 10 little sites with 20 subpages max and I wanted to make my life easier ????
Forum: Plugins
In reply to: [Recent Posts Widget Extended] limited categories…bump D: i think there is limit there.. btw in php i got input vars 6000.