There are some other posts earlier in this thread about opengraph meta tags -
https://vborg.vbsupport.ru/showpost....3&postcount=14 which may need to be implemented.
Quote:
Originally Posted by tidus78
No,it links to front page of the forum 
|
That is probably happening if your arcade isn't set to allow guests to play games.
In your usergroup settings for Unregistered/Not Logged In you would need to set Can View Arcade and Can Play Arcade to YES. Then in your v3ARCADE_PLAY template find:
Code:
<!-- main -->
<div class="blockrow">{vb:raw flashcode}</div>
Replace that with:
Code:
<vb:if condition="$show['guest']">
<div class="standard_error">
<h2 class="blockhead">Arcade Error Message</h2>
<div class="blockbody formcontrols">
<p class="blockrow">Sorry, guests cannot play games in the arcade, you must be a registered member of {vb:raw vboptions.bbtitle} to play games and submit scores.<br/><br/> This will also allow you to compete on our arcade leaderboards, play tournaments or challenge other players to a 1v1 match.<br/><br/> Registration is quick, free and simple. Click <a href="register.php">HERE</a> to join our site.</p>
</div>
</div></vb:if>
<vb:if condition="$show['member']"><div class="blockrow">{vb:raw flashcode}</div></vb:if>
Changing the error message to suit your own needs.