Arru
Forum Replies Created
-
Thanks, I will.
Hi Tareq,
It’s a great plugin, but I’m still having the same problem as inprojectcloud had. I downloaded the plugin today from Github as you suggested, everything worked out well, but still is rich text editor shown even if I choose plain text one.
What can I do?
Forum: Fixing WordPress
In reply to: Capability type and capabilitiesDone, thanks to the article you pointed out, and first tests show it to be working perfectly!
I could use “posts” capabilities. Just needed to define three meta capabilities for my custom post type. And to map them.
Thanks again!
Forum: Fixing WordPress
In reply to: Not able to make comments on postPS it’s different for each post.
Forum: Fixing WordPress
In reply to: Not able to make comments on postDropdown for screen options comments and discussion makes a tickbox on your post editing screen. Check if it’s ticked.
Forum: Fixing WordPress
In reply to: Re activate commentsHi jankopetrik,
Solution/Settings/Comments sets the default for new posts.
To allow comments for already published posts look at the right corner of the screen – I suppose there is a dropdown for screen options. Thick Comments from there and you can allow each post to be commented.
Forum: Fixing WordPress
In reply to: Capability type and capabilitiesThanks keesiemeijer,
it is helpful article and I’ll dig into it.If I get it right then my whole conception to have default capability type “post” with two exceptional capabilities is wrong and I must define new capability type from the very beginning…?
Forum: Fixing WordPress
In reply to: Add New Blank PageIf wp-content/themes/whatevername is folder for your current theme or child theme, then yes.
It works with posts and archives too… You can see from Template Hierarchy which template will be chosen to show some content.
And about pages it’s useful to know that if you start that page-x.php with:
<?php /** * Template name: Something * ..... * ..... */ ?>
Then you’ll have the option to use that “Something” template for every page you create.
Forum: Fixing WordPress
In reply to: Add New Blank PageHi Tricia,
That’s what I did:
1. Made a child theme for my current theme.
2. Made template for blank page. To do it I copied parent themes page.php to my child themes catalogue and renamed it page-blank.php. Deleted stuff about headers-footers and left just the loop.
3. I Created new page with title “Blank” and it worked. There were few words about comments, author and date, but otherwise blank. WP will use template page-something.php to show page titled “Something”.
Forum: Fixing WordPress
In reply to: can't assign parent post for hierarchical custom post typeI found it eventually, so I’ll write it down in case anyone has similar problem in the future. That post-type must support page-attributes. I had:
'supports' => array('title', 'editor', 'author', 'thumbnail', 'excerpt', 'custom-fields', 'revisions', 'comments'),
But there should have been:
'supports' => array('title', 'editor', 'author', 'page-attributes', 'thumbnail', 'excerpt', 'custom-fields', 'revisions', 'comments'),),
Forum: Fixing WordPress
In reply to: category pages and templatesYes you can, you just have to name new template category-slug.php or category-ID.php and WP will use it to show that category.
Forum: Fixing WordPress
In reply to: Can you hide your blog but keep your pages public?Ok, then it’s about roles and capabilities?
Forum: Fixing WordPress
In reply to: Can you hide your blog but keep your pages public?Would marking all blog entries “private” do the trick?
Forum: Themes and Templates
In reply to: Display entire post…Settings > reading is an option for that.
I hope I got it right in English – I have it in Estonian.
Forum: Fixing WordPress
In reply to: Add a single random text to a categoryI’m new to WordPress and Web design also, so I was wondering if you are trying to do something I dont get yet or not. ??
It’s the html paragraph tag which makes new paragraph (and new line) to begin. You must put all the links in one paragraph to have them in one line. You can read about paragraphs (and html) from here:
https://www.w3schools.com/html/html_paragraphs.asp