Reply To: Issue with default button of VC Callout element
Post count: 11438
Adek
October 30, 2015 at 10:13 am
#15691
Hi flaviese,
Please try to edit this file jkreativ-themes/admin/vc/element.php then jump into line 775. You will see this code below :
1 2 3 4 5 |
'type' => 'dropdown', 'heading' => 'Button Type', 'param_name' => 'type', 'std' => 'default', 'value' => array( |
You will need to remove the value of std so it looks like this one below :
1 2 3 4 5 |
'type' => 'dropdown', 'heading' => 'Button Type', 'param_name' => 'type', 'std' => '', 'value' => array( |
Then jump into line 1305. You will see this code below :
1 2 3 4 |
'type' => 'dropdown', 'heading' => 'Button style', 'param_name' => 'buttonstyle', 'std' => 'default', |
You will need to remove the value of std so it looks like this one below :
1 2 3 4 |
'type' => 'dropdown', 'heading' => 'Button style', 'param_name' => 'buttonstyle', 'std' => '', |
Yeah, i see that. We will take a look on this thing for future update.
Thank you