wdseocompany (@wdaseocompany)

Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • In reply to: Edit Topic Page

    wdseocompany
    Participant

    @wdaseocompany

    Hi Robin,
    Thanks for the info on this one; I’ve managed to get this resolved. In essence I was overcomplicating the problem.

    I disabled the templates I had setup so the page could just return all the default content and the edit functionality was working. Instead of using the custom code snippet I just used the ‘Post Content’ module in Divi which worked beautifully.

    Coming back to it with a fresh set of eyes and taking it back to basics helped a lot haha!

    Thanks again Robin for your help, all the best!

    Kind regards,
    Matt P

    In reply to: Edit Topic Page

    wdseocompany
    Participant

    @wdaseocompany

    Just for information the theme is Divi, using their theme builder allowing me to style and format whole taxonomies a little easier (in theory haha)

    For the bits of PHP – This is what I’m using to pull in the information for singular forums:
    $page_id = get_queried_object_id();
    $dynamic_forum_shortcode = ‘[bbp-single-forum id=' . $page_id . ']‘;
    echo do_shortcode($dynamic_forum_shortcode);

    And for topics as follows:
    $page_id = get_queried_object_id();
    $dynamic_topic_shortcode = ‘[bbp-single-topic id=' . $page_id . ']‘;
    echo do_shortcode($dynamic_topic_shortcode);

    So in theory the idea is:
    1. Pull in page id as identifier
    2. Form shortcode for forum/topic
    3. Add these PHP snippets to the Divi template using the Code Snippets plugin

    Then when someone accesses the page it should call in topic/forum based on the ID of the page

    I’ll take a look into this tomorrow, changing theme and disabling plugins as thankfully it isn’t live just yet. Thanks for your help so far anyway but if you can spot any flaw in the logic so far please do alert me!

    In reply to: Edit Topic Page

    wdseocompany
    Participant

    @wdaseocompany

    Hi Robin, thanks for coming back so quick; the URL of the topic would be:
    /forums/topic/test-topic-creation/

    Then when pressing the edit button it’s:
    /forums/topic/test-topic-creation/edit/

    Kind Regards,
    Matt P

Viewing 3 replies - 1 through 3 (of 3 total)