Integrate with WP is the Embed Plugin really needed?
Just curious, I think i've got it working but i'm far from pleased at this moment.
The link structure is far from okay and nice, too many redirects so that's why i was thinking of building my own Custom Page Templates inside WordPress and copy-/paste the PHP codes from Vanilla into there would that be possible?
Maybe with some include function and a path ?
Because at this point if i use the Vanilla Widgets at my sidebar of the home page the Link looks like this.
http://localhost/wordpress/forums#/discussions/blablabla
While the almost perfect link should look like this:
http://locakhost/wordpress/forums/#/discussions/blablabla
The # is wrong and it's only wrong when the Widgets are used.
I really like a few features of Vanilla but till now it's also lacking at a few places but maybe i'm doing something wrong.
Answers
I think i solved it.
(wp) plugins >vanilla-forums > functions.php
at line: 291
Default
$url = $post->post_name.'#';
Change
$url = $post->post_name.'/#';