This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Disable Default Dashboard Widgets | |
@ http://digwp.com/2014/02/disable-default-dashboard-widgets/ | |
*/ | |
function disable_default_dashboard_widgets() { | |
global $wp_meta_boxes; | |
// wp.. | |
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_activity']); | |
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_right_now']); | |
unset($wp_meta_boxes['dashboard']['normal']['core']['dashboard_recent_comments']); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- update "Object_Name__c" with your Object, and "Field_Name__c" with your Field --> | |
<apex:pageblocksectionitem helpText="{!$ObjectType.Object_Name__c.Fields.Field_Name__c.inlineHelpText}"> | |
<apex:outputlabel value="{!$ObjectType.Object_Name__c.fields.Field_Name__c.label}" /> | |
<apex:outputpanel layout="block" styleClass="requiredInput"> | |
<apex:outputpanel layout="block" styleClass="requiredBlock"/> | |
<apex:inputfield value="{!Object_Name__c.Field_Name__c}" /> | |
</apex:outputpanel> | |
</apex:pageblocksectionitem> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#calendars_my div[class='calListRow']:last-child {display:none !important;} | |
div[id='currentDate:0'] {font-weight: bold;font-size:1.26em;} |
NewerOlder