implenton
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Translateing a theme by copying a translationHello @mimmin,
in case your theme used localized strings you can go about this in three ways:
1. If your theme contains, comes with a .PO(T) file you can use that as a starting point since it should hold all the strings the theme uses.
2. If it the themes does not come with such a file, you can create one, using a tool like Poedit https://poedit.net/wordpress
3. You can reach out to the theme developer to provide you a .PO(T) file. They will be probably be flattered and will thank for your help.
A .PO(T) file should look like this: https://themes.svn.ww.wp.xz.cn/twentyfifteen/1.5/languages/twentyfifteen.pot
If you opened this link, you have seen a template file containing the strings that you can translate for the Twenty Fifteen theme.
Also, read this tutorial, it is a good one: https://premium.wpmudev.org/blog/how-to-translate-a-wordpress-theme/
As for common words, you can check the themes that are very popular or are supported by Automattic; there is a better chance to find the translation files in which you can peek in and find inspiration.
https://translate.ww.wp.xz.cn/projects/wp/dev/twentyfifteen
I hope this gives you an idea how to go about this.
Forum: Fixing WordPress
In reply to: Multiple Default Post CategoriesHello @pcpro178,
Since the plugin you mention is a simple one, it accomplishes one basic task the author might have chosen to no add new features, and it might just work. Not all plugins require constant updates.
If it is a simple one and it is written well, updates might not be necessary.
Give it a try and let other knows if you find any bug or issues with that plugin in the respective support forum.
Forum: Fixing WordPress
In reply to: Duplicate Title Tag IssueHello @mjbcomputers,
I am assuming that you question is: how to avoid the duplicate titles on those archive pages.
Since you are using Yoast SEO plugin you can fine tune the titles for the archive pages of tags and categories:
https://yoast.com/wordpress-seo/#wpseo-plugin-titles
By default they use the same naming, but you can change it.
I hope this answers your question.
Forum: Fixing WordPress
In reply to: My ww.wp.xz.cn site is suddenly showing posts till Feb 15Hello @rachparm,
was your issue resolved? I am asking this because I can see posts from June.
Forum: Hacks
In reply to: Trying to make my Category Array workForum: Fixing WordPress
In reply to: Hide categoryHello ledraw,
if you are using the default category widget provided by WordPress, then you can use this solution for that
https://ww.wp.xz.cn/support/topic/excluding-category-from-widget?replies=4#post-2583723
or you can install an another widget and use that https://ww.wp.xz.cn/plugins/pro-categories-widget/
I hope this help you.
Forum: Fixing WordPress
In reply to: Advice: Development SiteHello @scorendesign,
You can read more about moving a WordPress installation here:
http://codex.ww.wp.xz.cn/Moving_WordPress
Cheers
Forum: Fixing WordPress
In reply to: Login into my Admin Dashboard , from another site.Hello rabsqeue,
you might want to check out this function
https://codex.ww.wp.xz.cn/Function_Reference/wp_authenticatewith this you are able the authenticate the user and you could usewp_redirectafterwardsI hope this gives you an idea.
Forum: Networking WordPress
In reply to: Right Way Of Storing Large Number Of Custom Post Fields DataHello The Big K,
Better store the data in separate fields. If you convert the data into serialized JSON you will miss some opportunity for querying using https://codex.ww.wp.xz.cn/Class_Reference/WP_Query#Custom_Field_Parameters and https://codex.ww.wp.xz.cn/Class_Reference/WP_Meta_Query
You might want to check out http://pods.io/docs/learn/what-are-advanced-content-types/ too.
I hope this helps to make the right choice.
Forum: Fixing WordPress
In reply to: Changing linksHello andr3iul,
WordPress by default replaces accented characters with non-accented equivalents when you save a post or update it since it runs through a filter https://codex.ww.wp.xz.cn/Function_Reference/sanitize_title_with_dashes
Replacing in phpMyAdmin as you noticed is not a solution.
Follow this thread for a possible solution: http://wordpress.stackexchange.com/a/70019/50581
I hope this helped you in a way.
Forum: Themes and Templates
In reply to: Adding a custom class to a menu's list itemHello jonathas.duarte,
I am glad you sorted out.
Cheers.
Forum: Fixing WordPress
In reply to: Subcategory not show upHello cfm168,
Do you have any posts associated with that particular category? Generally, themes choose not to display empty categories.
Try to add a post to that category and see what happens.
Forum: Fixing WordPress
In reply to: Hide articles and make them viewable only by linkHello spyrith,
you can find relevant information here:
https://codex.ww.wp.xz.cn/Content_Visibility
I hope this answers your question.
Forum: Hacks
In reply to: Trying to make my Category Array workHello markross67,
here it is.
<?php if ( in_category( array('Political Cartoons', 'Political Statements') ) ) : ?> <?php the_time('F jS, Y') ?> <?php elseif ( in_category( array('Scripture', 'Biblical', 'Biblical Resources', 'Quotes', 'Holidays/Anniversaries', 'Article', 'Political', 'Political Literature', 'Political Terms', 'Admin') ) ) : ?> Posted by <?php the_author_posts_link(); ?> | <?php the_time('F jS, Y') ?> <?php else : ?> Written by <?php the_author_posts_link(); ?> | <?php the_time('F jS, Y') ?> <?php endif; ?>Make sure you have always a closing
?>tag, before opening a new<?phpone.I hope this helps you.
Forum: Fixing WordPress
In reply to: How to let image redirect to blogpostHello jordsyan,
You could achieve this by creating a static front page.
Check this video http://wordpress.tv/2009/01/13/creating-a-static-front-page-for-your-blog/
and read more about this here:
https://codex.ww.wp.xz.cn/Creating_a_Static_Front_Page#Creating_a_Static_Front_Page
I hope it answers your question.