Dhikra
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Translation doesn′t workWhat comes to mind is that the theme author forgot to encode that string so that it would be added to the .po file.
In other words, you have two solutions:
1) you find it and encode it in __ or _e tags yourself, and then create a new .po file and translate it again.
2) you modify those words directly in the original file.To find which file you need to modify, you can refer to this page: https://codex.www.ads-software.com/Template_Hierarchy
Forum: Fixing WordPress
In reply to: Post formatting is being strippedUsually, this problem happens when you are copy-pasting from Word or a similar program directly into the edit screen.
Just above the edit screen, there is a button to paste from Word. If you click on that button and paste in the screen that opens up, your formatting won’t be stripped.Hope it helps ??
Forum: Fixing WordPress
In reply to: html/css in a post and/or page?In the edit screen you have a tab called html.
You click on it and enter your html there. Then you add your css code to your style.css file.Forum: Fixing WordPress
In reply to: One category in content one in sidebarTry using the category id, not the name.
Forum: Fixing WordPress
In reply to: Comments blocked – Impossible to postGlad it helped! ??
Forum: Fixing WordPress
In reply to: One category in content one in sidebarThis should help you:
https://codex.www.ads-software.com/Function_Reference/query_postsForum: Fixing WordPress
In reply to: One category in content one in sidebarIt’s not impossible to display one category in the main content, and another in the sidebar, but it’s not going to look good, if you ask me.
You should just divide the main content in two columns, if that’s what you’re trying to do.
You can easily use divs and style them in your style.css file.Forum: Fixing WordPress
In reply to: Comments blocked – Impossible to postGrace, open your style.css and find this part of code:
.footer { width: 945px; height: 101px; padding-top: 300px; position: relative; margin: -125px auto 0; }
change it to this:
.footer { width: 945px; height: 101px; padding-top: 150px; position: relative; margin: 25px auto 0; }
It should work fine. ??
Forum: Fixing WordPress
In reply to: Need an easy way to set up users posts in a separate category.The simplest way would be setting up a new category, adding it to the menu, and then give some or all of your users the role of contributor.
This way, they’ll be able to post drafts, but not to publish them.
You’ll then add the category to their post and publish it.On top of that, you’ll have to prevent that category from appearing on your main page, which is easily accomplished as explained here: https://codex.www.ads-software.com/FAQ_Layout_and_Design#How_do_I_hide_posts_belonging_to_a_certain_category_on_the_front_page_index.php.3F
Forum: Fixing WordPress
In reply to: How can I set up a new page as a separate blog?Eric, if you follow esmi’s suggestion, then it would be enough for you to add the category you want to the menu, and you’ll get all posts from that category when clicking on the menu link.
Another way is to create a custom template and add it to a page, but I think the above solution is easier, and gives you exactly the result you need.
Forum: Fixing WordPress
In reply to: How can I set up a new page as a separate blog?You should elaborate a bit more. Do you have your blog on your homepage and want to move it to an internal page, or do you have a blog and want to add ‘another blog’?
Forum: Fixing WordPress
In reply to: migrating from Blogger to WordPressWhere it tells you to “tell Blogger to let WordPress access your account,” you should see a button with written Authorize. Clicking on that button and then clicking on Grant access in the next screen should help.
Forum: Fixing WordPress
In reply to: Widget Sidebar Not AppearingNJR, your site got hacked.
Glow theme doesn’t have those lines in the original code, but besides that, just try to type your link on https://sitecheck.sucuri.net/scanner/ and you’ll see.This page might help: https://codex.www.ads-software.com/FAQ_My_site_was_hacked
Forum: Fixing WordPress
In reply to: Membership Option not appearing in General Setting Screen.I guess you do.
So, if that’s the case, then you have to click on “Howdy, (yourusername)” on the top right of your screen, then click on Network Admin, and go to Settings —> Network Settings.
You’ll find the Registration Settings over there.Forum: Fixing WordPress
In reply to: Membership Option not appearing in General Setting Screen.By “intend on having multiple sites” you mean you have multisite installed, by chance?