Recent Topics

1 Jun 15, 2011 16:50    

My b2evolution Version: Not Entered

I would like to add a like/follow button for each post so that it is automatically generated upon publishing. The widgets did not seem to have what I am looking for.

Any suggestions on how to get this done?

2 Jun 15, 2011 18:10

Add the code to post footer on Blog settings > Advanced.

Please note that text longer than 250 characters will be cropped. This has been fixed in development version already.

There's also a "Like" plugin somewhere on this forum.

3 Jun 15, 2011 19:21

Will this enable html code or is it limited to text?

5 Jun 16, 2011 02:11

How do I run this query. (I really apologize as I am somewhat of a programming novice. The account is with GoDaddy so I would assume that I would login there. I am simply unfamiliar with the "how" of running a query.

Much thanks. You are extremely helpful and I appreciate your time.

6 Jun 16, 2011 02:44

The easiest way is to add this code in admin.php file on line 63 in blog root directory

// Check global permission:
if( ! $current_User->check_perm( 'admin', 'restricted' ) )
{	// No permission to access admin...
	require $adminskins_path.'_access_denied.main.php';
}

// Run SQL query
$DB->query('ALTER TABLE T_coll_settings MODIFY COLUMN cset_value VARCHAR(10000) NULL');

Open any admin page to run the query, then delete the code.


Form is loading...