amdh
Forum Replies Created
-
I’m looking for alternative. Please take care.
Forum: Developing with WordPress
In reply to: Order of taxonomy meta boxFinally, I removed the meta box and added that again:
remove_meta_box( 'treediv' , 'taqrir' , 'side' ); add_meta_box('new_treediv', 'Trees...', 'post_categories_meta_box', 'taqrir', 'advanced', 'low', array('taxonomy' => 'tree'));
Note: custom post type is ‘taqrir’ and custom taxonomy is ‘tree’.
Forum: Developing with WordPress
In reply to: Order of taxonomy meta boxcan you explain more?
Forum: Developing with WordPress
In reply to: Order of taxonomy meta boxI used
register_taxonomy( $taxonomy, $object_type, $args );
so there is no $context parameter.Forum: Fixing WordPress
In reply to: Plugin passwordThanks @catacaustic
I know that. But I want to protect a plugin page by password even for administrator role in search for more security.
Forum: Fixing WordPress
In reply to: Plugin passwordThanks @a2hostingrj
I tried this plugin but it can not password protect another plugin page in wordpress dashboard.
Forum: Developing with WordPress
In reply to: Diffrent views: one page for excerpt, another for contentThanks.
add_rewrite_endpoint resolved my problem.Forum: Developing with WordPress
In reply to: Diffrent views: one page for excerpt, another for contentI’m theme developer. Now how can I develop the 2nd page.
Forum: Developing with WordPress
In reply to: Diffrent views: one page for excerpt, another for contentPlease read my replies exactly. Users select a post from category page. Selected post’s title and excerpt will be shown on second page. And selected post’s title and full content will be on 3rd page.
There’s no problem with category page that I use pre_get_posts().
Forum: Developing with WordPress
In reply to: Diffrent views: one page for excerpt, another for contentYou are getting closer. But the second page should display only one (just one) post title and excerpt. not titles and excerpts of a category.
- This reply was modified 6 years ago by amdh.
Forum: Developing with WordPress
In reply to: Diffrent views: one page for excerpt, another for contentI know that. I need different pages for a single post. Imagine my blog has a category page which shows 10 posts title only. Then user selects a post. After category page, is a page with post title and excerpt only. I need a 3rd page which shows title and full content for the same post.
Forum: Fixing WordPress
In reply to: select hierarchy categoriesthanks for your replies.
my problem is breadcrumb. when parent categories are not selected, the breadcrumb is incomplete. i use wp_get_post_terms() for showing breadcrumb because my category is a taxonomy.
- This reply was modified 6 years ago by amdh.
Forum: Fixing WordPress
In reply to: change taxonomy order in edit pagethanks for your reply.
How can I code it for just one capability?
Forum: Fixing WordPress
In reply to: more headings are neededmy blog has some writers and they copy text from MS word. I can add classes in editor but I have too many posts. It’s impossible to add classes for each heading(7-9) in each post.
what is the solution?
- This reply was modified 6 years, 2 months ago by amdh.
Forum: Fixing WordPress
In reply to: more headings are neededthanks for your answer.
my problem is the heading level. I need all 9 MS word levels in my blog.
for example how can I add custom CSS classes to heading 7 after pasting from MS word. after that I will style it manually.