Bleistivt
ModeratorBleistivt Moderator
Reactions
-
Re: Looking for an export tool to migrate from Vanilla to SMF or other
I guess most people here would recommend Vanilla, so you are kind of on the wrong forum asking that. Also your question is really vague, what are you looking for? If you are looking for a more tradit… (View Post)1 -
Re: Create Wordpress Plugin/Widget with Vanilla Module
To my knowledge, there is no readymade solution for this yet, so this will require coding skills. Basically, what @x00 said Add this to your wordpress' javascript: $(function { $.get( "URL_TO_YO… (View Post)2 -
Re: Wordpress Comment Show full post instead of excerpt ?
Yes, by removing these 2 lines: https://github.com/vanilla/vanilla/blob/8633a73feb4eed238e41dd10df835fd127671313/library/core/functions.general.php#L795-L796 To prevent losing your changes on the nex… (View Post)4 -
Re: Any way to show users join date in posts?
Yes, create /plugins/JoinDate/class.joindate.plugin.php <?php if (!defined('APPLICATION')) exit();$PluginInfo['JoinDate'] = array( 'Name' => 'JoinDate', 'Version' => '1', 'Author' => 'Ble… (View Post)5 -
Re: How to remove Breadcrumbs Wrapper?
Just add a CSS rule to remove it .BreadcrumbsWrapper {display:none;} Theme customization: http://vanillaforums.org/discussion/comment/217104#Comment_217104 (View Post)1