WP SITES
Forum Replies Created
-
Forum: Plugins
In reply to: [Fonts] Not displaying in visual editorShow kitchen sink.
Forum: Plugins
In reply to: [Fonts] Not displaying in visual editorDid you install and activate the plugin?
Link to your site please.
Forum: Plugins
In reply to: [Fonts] Not displaying in visual editorThe buttons for this plugin are already coded into the WordPress core.
The plugin simply displays them in the editor.
All the code for the fonts is also included in the WordPress core.
Forum: Plugins
In reply to: [Fonts] FONTS stopped workingCan you link to your site.
How can i inspect your source code without knowing your domain?
Forum: Plugins
In reply to: [Fonts] does not display in Visual EditorAccording to your 20+ threads, nothing works.
Tested on Twenty Eleven and works perfectly in the visual editor.
Forum: Fixing WordPress
In reply to: exclude multiple category id , how to code itAdd this in your child themes functions.php
function exclude_category( $query ) { if ( $query->is_home() && $query->is_main_query() ) { $query->set( 'cat', '-40,-162' ); } } add_action( 'pre_get_posts', 'exclude_category' );Forum: Fixing WordPress
In reply to: next/pre navigation problem in single-gallery.phpTry just using the value like this:
$prevPost = get_previous_post(false, 287); $nextPost = get_next_post(false, 287);Source http://codex.ww.wp.xz.cn/Function_Reference/get_previous_post
Forum: Themes and Templates
In reply to: [Virtue] Portfolio GalleryLooks like a premium featured using a custom post type and CPT templates with a fair amount of CSS code for the effects.
You could hand code this but would require a fair amount of experience.
Or you could use the native WordPress gallery or a gallery plugin which uses custom post types
Forum: Plugins
In reply to: [Fonts] Fonts by Dalton not appearing in Visual EditorI would ask your theme Developer whats causing the problem because the plugin only displays the button and all the functionality for the fonts is built into the core of WordPress.
Forum: Plugins
In reply to: [Fonts] Fonts buttons disappearedFonts works perfectly in Genesis, all the default themes and good quality themes.
Maybe you are using free themes which aren’t coded very well.
Forum: Plugins
In reply to: [Fonts] I get no buttonsThey only display in the Visual editor and not the Text Editor.
Forum: Plugins
In reply to: [Fonts] fonts downloadWhy unreadable because its PHP code?
There are NO fonts included in the folder.
They are supported by the browser.
Forum: Plugins
In reply to: [Fonts] Not showing buttonNot showing button or What is resolution for this?
The buttons do not display in the Text Editor, only the Visual Editor.
Forum: Fixing WordPress
In reply to: Make a page with the categories listedYou can use wp_list_categories or a new WP_Query with custom loop
To output the list, you can use the code directly in a template file or hook it in using get_template_part.
I think you’d be better using the_excerpt rather than full post.
Forum: Fixing WordPress
In reply to: display multiple pages on one pageYou can use the content template tag which you can grab from one of the files. Or you could use the_excerpt.
You still haven’t answered the question
You haven’t stated exactly what content you want to display.