BeGie
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Forum: Plugins
In reply to: [Unyson] Pagebuilder – problem with content on the frontpageIs working 🙂 Thank you!
Forum: Plugins
In reply to: [Unyson] Pagebuilder – problem with content on the frontpageWorph, working. Try:
$post = get_post(19); $post = apply_filters('the_content', $post->post_content); echo $post;🙂
EDIT: workinkg only default editor, no pagebuilder.
Forum: Plugins
In reply to: [Unyson] Pagebuilder – problem with content on the frontpageI understand. Will do the trick display the contents in such a manner that I want to use this filter?
Forum: Plugins
In reply to: [Unyson] Unyson – my own iconThanks, it works! 🙂
Forum: Plugins
In reply to: [Unyson] Unyson – my own iconOk, thanks! It work in admin panel, but on front page, the icons not display. CSS file has not been loaded, only the font awesome file.
function _filter_theme_glyphicons_icon_set($sets) { $sets['glyphicons'] = array( 'font-style-src' => fw_get_framework_directory_uri('/static/libs/my-icon/flaticon.css'), 'container-class' => '', // some fonts need special wrapper class to display properly 'groups' => array( 'currency' => __('Currency', 'fw'), ), 'icons' => array( 'flaticon-eye' => array('group' => 'currency'), 'flaticon-firewall' => array('group' => 'currency'), ), ); return $sets; } add_filter('fw_option_type_icon_sets', '_filter_theme_glyphicons_icon_set');`
Viewing 5 replies - 1 through 5 (of 5 total)