WP_w3all 1.5.7 until 1.6.0 issues to be resolved and hints

Post a reply


This question is a means of preventing automated form submissions by spambots.
Smilies
:D :) ;) :( :o :shock: :? 8-) :lol: :x :P :oops: :cry: :evil: :twisted: :roll: :!: :?: :idea: :arrow: :| :mrgreen: :geek: :ugeek:

BBCode is ON
[img] is ON
[url] is ON
Smilies are ON

Topic review
   

If you wish to attach one or more files enter the details below.

Maximum filesize per attachment: 1 MiB.

Expand view Topic review: WP_w3all 1.5.7 until 1.6.0 issues to be resolved and hints

Fixed: wrong redirection -> on WP_w3all 1.5.7

by axew3 » Fri Nov 18, 2016 12:01 am

Issue: wrong redirection after login on modal login.
to fix: redirect correctly to page where the login has been done.

Fixed on next WP_w3all with this:

About the modal login, and correct redirect into wp forum page, this is the code to change:
open your Wp template page-forum(or board etc).php search for the line:

Code: Select all

<input type="hidden" name="redirect" value="<?php echo $w3urlscheme . "://" . $_SERVER['SERVER_NAME'].$_SERVER['PHP_SELF']; ?>">
just replace with this:

Code: Select all

<input type="hidden" name="redirect" value="<?php echo home_url().'/'.get_option( 'w3all_forum_template_wppage' ); ?>">
OR with this:

Code: Select all

<input type="hidden" name="redirect" value="<?php echo home_url().'/index.php/'.get_option( 'w3all_forum_template_wppage' ); ?>">
Now on modal login, the correct redirect to WP page forum should be executed.

search hashed email, not plain

by axew3 » Sat Nov 12, 2016 8:04 am

IMPORTANT: [phpBB] on user's table, indexes are username_clean and user_email_hash:
queries should be performed using these two instead than username or plain email.

Minor bug in Last Topics Widget

by axew3 » Fri Nov 11, 2016 10:14 pm

I've just move a Topic to another phpbB forum, choosing to leave shadow of the original Topic into the original Forum: i see that the result on Last Topics Widget in this particular case, is that both posts are listed on Last Topics Widget. Perhaps this can be considered a secondary bug to be fixed.

WP_w3all 1.5.7 until 1.6.0 issues to be resolved and hints

by axew3 » Fri Nov 11, 2016 10:08 pm

In this topic (maybe) only:
1.6.0 > features requests
and list of bugs and issues to be resolved for next versions and prior 1.6.0.

Top