darth73
Forum Replies Created
-
Okay, so this is not problem but a result of the integration with WP-United.
Thank you for your answer and good luck for the future of WP-United, a great plugin.Sincerely,
No problem for your “delay”, you have answered speed.
My problem is : when phpbb3 forum is deactivated and WordPress blog works normaly (not maintenance mode for example), only admin users can login in WordPress /wp-login but not others users.
I deactivate phpbb3 forum part sometimes to install mod, to update mod like Wp-United, to do backup or to modify template. It’s to avert users to have problem with register, login, post… for example.
The basic idea is to know IF normal users can login in my WordPress blog part and create post or page for example if phpbb3 forum is deactivated,
or IF I must activate phpbb3 if normal users want to access in admin panel and consequently deactivate Wp-United plugin to allow phpbb3 deactivation without disturb users to create post, pages…I hope I have explained my problem properly.
Forum: Plugins
In reply to: [Co-Authors Plus] Integrate Template Tags into Arras ThemeI don’t know. For this, I’ve change original filters.php.
I have a copy of classical gamer child theme and there are no filters.php in this child theme.Here, we change a function. Not add a new function.
Try to create a new filters.php with the entire function post / page header code or a copy of original filters.php customized. If you have a error or if the function don’t work, you must change original filters.php.
Forum: Plugins
In reply to: [Co-Authors Plus] Integrate Template Tags into Arras ThemeHi earthsprite,
To integrate Co-Author Plugin in Arras Theme, you musi change a function from filters.php (in arras/library folder) :
Change :
if ( arras_get_option('post_author') ) { $postheader .= sprintf( __('<div class="entry-author">By %s</div>', 'arras'), '<address class="author vcard"><a class="url fn n" href="' . get_author_posts_url( get_the_author_meta('ID') ) . '" title="' . esc_attr(get_the_author()) . '">' . get_the_author() . '</a></address>' ); }By :
if ( arras_get_option('post_author') ) { if ( function_exists( 'coauthors_posts_links' )) { $postheader .= sprintf( __('<div class="entry-author">By %s</div>', 'arras'), '<address class="author vcard"><a class="url fn n" href="' . get_author_posts_url( get_the_author_meta('ID') ) . '" title="' . esc_attr(get_the_author()) . '">' . coauthors_posts_links( null, null, null, null, false ) . '</a></address>' ); } else { $postheader .= sprintf( __('<div class="entry-author">By %s</div>', 'arras'), '<address class="author vcard"><a class="url fn n" href="' . get_author_posts_url( get_the_author_meta('ID') ) . '" title="' . esc_attr(get_the_author()) . '">' . get_the_author() . '</a></address>' ); }}Forum: Plugins
In reply to: [SB Login] plugin brokenTo resolve copyright message problem, you must delete copyright text from all php files of the folder”template”.
Thanks so much for your support.
Problem solved with the new update.I also thought about a problem like this.
I also did a test on a local site test (only install WP 3.5 and WP-United/Phpbb3 and original template activated)
I also had re-upload the wp-admin and wp-includes folders but no effect.When analyse the setting page with Firebug, the Javascript console (Error tab) :
SyntaxError: missing ; before statement http://localhost:8888/pkmnslay-test/wp-admin/admin.php?page=wp-united-settings Line 365 ReferenceError: wpu_hardened_init_tail is not defined http://localhost:8888/pkmnslay-test/wp-content/plugins/wp-united/js/settings.js?ver=0.9.2.0 Line 1