How can we config tinymce editor in codeigniter like in wordperss. theme with all option
Have a look at this pretty neat tutorial: http://browse-tutorials.com/tutorial/integrating-wysiwyg-tinymce-codeigniter
Related
How can I include jQuery library, Bootstrap.js in Drupal 7 AMP Theme? I searched, but couldn't find any example.
Simple way is download JQuery update module.
Add bootstrap.js in theme settings file(themename.info):
;scripts[] = js/Bootstrap.js.js
I create a new WordPress theme in WordPress latest version 4.5.1. and some theme css override in admin theme. How can I block this css for admin area?
Use wp_enqueue_style to add css/js to front end.
add_action('wp_enqueue_style', 'some_hook_function'):
Use admin_enqueue_scripts to add css/js to back end.
add_action('admin_enqueue_scripts', 'some_hook_function'):
I'm new to WordPress. I read that, in order to use a new theme, I need to download it and save it in wp-content/themes. I did that, and I see the new theme on
http://localhost/wordpress/wp-admin/themes.php
but when I preview it, there is nothing.
What should I do?
First, your theme directory should be like this: wp_root/wp-content/themes/your-theme . And all themes have index.php and style.css
It might be problem in theme code. you may contact theme provider.
we have list of fonts available in the text editor of magento using which we can create cms pages.I need to add a new font to that, is it possible.?
You can add the font options via the tiny_mce editor_template.js file:
File: js\tiny_mce\themes\advanced\editor_template.js
Variable: theme_advanced_fonts
Tinymce Config
Im using Zen as my base theme for creating custom themes in Drupal 6.
When I look at the source code of my sub-theme, I see that zen are searching for css files in the sub-theme's folder, at the current state it looks for its css files in :
/themes/zen/elementals/css/
how do I tell it to just search in /css folder ?
thanks!
Look at theme-settings.php file of zen theme.
Try to implement THEMEHOOK_settings() function in your own template.php