Digital experiences for all disciplines
Forum Replies Created
-
-
Thanks Rui… do you mean in child theme functions.php?
This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.This reply has been marked as private.January 6, 2015 at 8:43 am in reply to: Number of comments display, not matching actual number of comments #139217This reply has been marked as private.January 6, 2015 at 2:04 am in reply to: Number of comments display, not matching actual number of comments #139197This reply has been marked as private.January 5, 2015 at 10:53 am in reply to: Number of comments display, not matching actual number of comments #138942This reply has been marked as private.January 2, 2015 at 4:41 am in reply to: Number of comments display, not matching actual number of comments #138530This reply has been marked as private.December 30, 2014 at 9:52 am in reply to: Number of comments display, not matching actual number of comments #138276This reply has been marked as private.December 29, 2014 at 10:06 am in reply to: Number of comments display, not matching actual number of comments #138105This reply has been marked as private.Great, thanks Kyle.
December 29, 2014 at 9:29 am in reply to: How to stop featured image showing in thumbnail row of Product images? #138095Legend. Thanks!
Thanks Ed. Looks fairly simple. But if making changes to below code for example…
/* Page Title Meta Box ================================================== */ $meta_boxes[] = array( 'id' => 'page_heading_meta_box', 'title' => __('Page Title', 'swift-framework-admin'), 'pages' => array( 'post', 'page', 'portfolio', 'product', 'team', 'galleries' ), 'context' => 'normal', 'fields' => array( // SHOW PAGE TITLE array( 'name' => __('Show page title', 'swift-framework-admin'), // File type: checkbox 'id' => "{$prefix}page_title", 'type' => 'checkbox', 'desc' => __('Show the page title at the top of the page.', 'swift-framework-admin'), 'std' => $default_show_page_heading, ), // PAGE TITLE BACKGROUND COLOR array( 'name' => __('Page Title Background Color', 'swift-framework-admin'), 'id' => $prefix . 'page_title_bg_color', 'desc' => __("Optionally set a background color for the page title.", 'swift-framework-admin'), 'type' => 'color', 'std' => '', ), // PAGE TITLE TEXT COLOR array( 'name' => __('Page Title Text Color', 'swift-framework-admin'), 'id' => $prefix . 'page_title_text_color', 'desc' => __("Optionally set a text color for the page title.", 'swift-framework-admin'), 'type' => 'color', 'std' => '', ),
Will that apply to all pages and posts? We’re just trying to apply the default setting to Posts. Is there a way to achieve that?
Also – will existing posts / pages be changed, if making these changes in the file?
Thank you!
-