codingpet
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to Managing Tables trought WordPress ???Then you can check http://codex.wordpress.org/Class_Reference/WP_Query
If you need to write advanced custom sql, consider this http://codex.wordpress.org/Class_Reference/wpdb
Forum: Fixing WordPress
In reply to: Issue in EditorWhat’s your site URL? is it online? Are you sure the shortcodes is correct?
Forum: Fixing WordPress
In reply to: How do I share my desktop screen(via live video) with visitors?I don’t think there is wordpress plugins can be do the function. Some third-part software e.g. http://skyfex.com/ maybe helpful.
Forum: Fixing WordPress
In reply to: Advice on a good "Whats News or announcement" scrollThis is one I used before http://wordpress.org/extend/plugins/news-announcement-scroll
Forum: Fixing WordPress
In reply to: Issue in EditorNo settings needed. All users of administrator, author, editor, contributor roles will see the Visual editor by default.
Forum: Fixing WordPress
In reply to: Changing the name on the first page of my Core theme websitewp-admin->settings->general->site title will be the name if your theme is written in a proper way. Show Your Site URL will make it easy to get help.
Forum: Fixing WordPress
In reply to: lost my 404 pagethe 404 page in IE is the same as in firefox. I didn’t see any problems.
Forum: Fixing WordPress
In reply to: Issue in EditorPlease don’t edit core codes directly.
Not sure where would you like to enable it for all users? Visual editor is enabled for writting posts/pages only by default. All users have the capability to write/edit posts will see the visual editor.
Forum: Fixing WordPress
In reply to: Excerts are not able to expand to full postis your site online? So I can check it.
Also, after you clicked the […], do you go to the single post URL or still on the same page?
Forum: Fixing WordPress
In reply to: How can I avoid inner pages duplicate titles?if ( $paged >= 2 || $page >= 2 ) echo ' | ' . sprintf( __( 'Page %s', 'yourthemename' ), max( $paged, $page ) );This code will be helpful. You can check how to title was written in twentyeleven theme to get a clear idea. Basically, you need to add the page number to the title to avoid the issue.
Forum: Fixing WordPress
In reply to: Preview not working after changing site adressThen I’m afriad I don’t know what caused your issue as no way to check it further.
Forum: Fixing WordPress
In reply to: Excerts are not able to expand to full postIt depends on the codes in the template. By default, the_excerpt() will not link to the full post. You can use the codes below to make it clickable. The codes can be added to functions.php of your theme.
function new_excerpt_more($more) { global $post; return ' <a href="'. get_permalink($post->ID) . '">[...]</a>'; } add_filter('excerpt_more', 'new_excerpt_more');You can also check this docs to learn more:
http://codex.wordpress.org/Function_Reference/the_excerptForum: Fixing WordPress
In reply to: Uploaded image with accents in name, image don't show in Safari 6http://www.soulcie.fr/wp-content/uploads/2012/08/120820_présidence-ump-bousier-scarabées.jpg
http://www.soulcie.fr/wp-content/uploads/2012/08/120820_présidence-ump-bousier-scarabées.jpg
I can’t see any differences for the two URL but they are different if you just copy it. The first one is correct while the second is broken. The é in the two URL are different if you view the two URL in notepad.
It will be good to not use german characters in image name. Further problems will happen if there are special characters in image name(for example, some hosting will encode these characters if you upload via FTP but will not encode it when uploading in wordpress. This will cause different image URL in hosting and wordpress database when you transfer/restore site).
Forum: Fixing WordPress
In reply to: Preview not working after changing site adressHi,
My site is also using a pre-existing subdirectory install. I made the changes the same as described in the article. No problems happen. Did you copy and modify the .htaccess and index.php as described?
Forum: Themes and Templates
In reply to: Custom Page template issue