• Good morning,
    i embedded my forum in WordPress, it’s ok.
    Only a problem, if i reload a topic o forum page for check new messages, the page back at main page of board. please, is it possible fix?

Viewing 15 replies - 16 through 30 (of 47 total)
  • Thread Starter io2big

    (@io2big)

    i use android webview for load Web.
    i added a word in user agent. the forum check the word Is present and switch style.

    Plugin Author axew3

    (@axewww)

    hi there! i’m over for the v3 code soon on release and i’ve got why you get this behavior: it is due to seo mod.
    The js code added on overall_footer.html, search for urls that need after to be passed, in the way a default phpBB install do.
    Links on your phpBB are different due to the seo mod that output for links not relative, but full urls.

    I’m just over to check if can be an easy solution that can work for any seo scenario …

    p.s so you was supposing right
    switched to Not resolved …

    • This reply was modified 5 years, 11 months ago by axew3.
    Thread Starter io2big

    (@io2big)

    Good.
    When it Will bene over?

    An another question: i put in phpbb activation with email after registration. Butta if use wordpress registration dont send email?

    Plugin Author axew3

    (@axewww)

    i put in phpbb activation with email after registration. Butta if use wordpress registration dont send email?

    no because there is no relation between systems except about users registrations/logins, so you can use both, or one, but not expect to mix up phpBB and wordpress functions!

    phpBB WordPress template integration V3 version is here

    Thread Starter io2big

    (@io2big)

    the new code works perfect. ??
    thank you very much ??

    Plugin Author axew3

    (@axewww)

    Thank you for the report! I’ve try to imagine seo urls doing code, so i’m happy for the result that’s ok but, i’m over again now, and i see still it can be better and some line should be more precise/correct (despite as is, will return ever correct result).
    Finally would be great to fix the scroll, to be exactly as on phpBB accessed directly, then all will be like a perfect template integration.
    The new plugin version is coming and will add for the iframe also this latest fix.
    If any bug please report so it can be resolved.
    Ciao!

    Thread Starter io2big

    (@io2big)

    there is a problem.
    Forum main page work good but if i click in topic o forum it’s out from frame.

    Thread Starter io2big

    (@io2big)

    i’ve WordPress 5

    Plugin Author axew3

    (@axewww)

    can you put a screenshot of what you click?

    Thread Starter io2big

    (@io2big)

    Thread Starter io2big

    (@io2big)

    News?

    Plugin Author axew3

    (@axewww)

    i took a look last day after your answer and i’ve not understand why it should not work, but i will give a re-look within today or asap and i will follow here

    Thread Starter io2big

    (@io2big)

    When i go to a forum or topics the page go out from iframe.

    Thread Starter io2big

    (@io2big)

    I look page-forum.php and it check of there is viewforum.php and viewtopic.php in the urls.
    There are not in my urls.

    Plugin Author axew3

    (@axewww)

    hello, taking a look just now:
    because these aren’t more used: the problem you experience is given (i assume) by the overall_footer.html js added code:
    and i assume that this fail:

    // check if link point to external resource
    if(/^(f|ht)tps?:\/\//i.test(href)){
    	e.preventDefault(); // prevent load as we are inside
    	parent.location.replace(href);
    return;
    }

    change it into this, that may resolve?

     if ((this.href.indexOf(w3all_doc_domain) > -1) != true){
    // check if link point to external resource
    if(/^(f|ht)tps?:\/\//i.test(href)){
    	e.preventDefault(); // prevent load as we are inside
    	parent.location.replace(href);
    return;
    }
    }

    let know if still not, here should be the clue

    • This reply was modified 5 years, 11 months ago by axew3.
Viewing 15 replies - 16 through 30 (of 47 total)
  • The topic ‘embedded refresh’ is closed to new replies.