Custom Block Change Name:
Permalink 1 user found helpfulI tried changing protected $btName = 'Product link Button' , but it is not showing in front end..

<?php defined('C5_EXECUTE') or die("Access Denied."); class ProductLinksBlockController extends BlockController { protected $btName = 'Product Detail Links'; protected $btDescription = 'Links for the product details page.'; protected $btTable = 'btDCProductLinks'; protected $btInterfaceWidth = "700"; protected $btInterfaceHeight = "450"; protected $btCacheBlockRecord = true; protected $btCacheBlockOutput = true; protected $btCacheBlockOutputOnPost = true; protected $btCacheBlockOutputForRegisteredUsers = false; protected $btCacheBlockOutputLifetime = CACHE_LIFETIME; public function getSearchableContent() { return $this->field_1_textbox_text; }
This one worked for me... Thanks for your valuable time...