Sanam Maharjan
Forum Replies Created
-
Forum: Plugins
In reply to: why is wordpress redirecting to home page after form submit?One lead in this problem. Once again I came across this issue and again googled but to no avail. But i figured out that when setting the permalink anything other then default works just fine. Can anyone explain me about this? Thanks you.
I just checked with WordPress – 3.3 and post-type-convertr – 1.0.2 and its working fine. Please download the latest version see if it still exists.
I will also be looking onto it once again.
Thank you,
SanamForum: Plugins
In reply to: [Post Type Convertr] [Plugin: Post Type Convertr] Convert only selected itemsHello Joan,
Yes, currently this only allows bulk conversion. I have been thinking to add individual options in the next version.Thanks for the inquiry ??
Sanam
Hello trebilj
Replace the code on line 26 i.e.
$css = add_management_page('Post Type Convertr', 'Post Type Convertr', 'manage_options', dirname(__FILE__), 'bulk_post_type_convertr_options');
with
$css = add_management_page('Post Type Convertr', 'Post Type Convertr', 'edit_pages', dirname(__FILE__), 'bulk_post_type_convertr_options');
This will allow the editor level to use this plugin. Hope that helps!
Thanks!
SanamThank you for pointing out the bug. Its fixed now. Please download the latest version.
thank you.
Forum: Plugins
In reply to: I need help with a Post to Page Converter – called Post Type ConvertrHello DanBenNun,
Sorry about the problem you are facing. This plugin just converts the post_type in wp_posts table. So nothing will be lost as nothing is deleted from the MySQL itself. Could you please check the database and see what is the post_type of the pages that are not showing. Is should be showing “page” as you have converted form “post” to “page”. If there is other than that then it must be the problem. Could you change manually to the post_type to “page” and see if they appear on pages option in Dashboard. It should appear. Then I am afraid, you would have to change all the post_type manually to “page” to make them appear. HTHKcssm
Forum: Fixing WordPress
In reply to: Hierarchical custom post type – can't specify parentHello dashaluna,
Have you got the solution for this? I am also trying to make one custom post type the parent of another custom post type but the parents that gets populated in the options are the posts of that particular custom post type rather then the posts of the parent custom post type.
Thanks for helping.Even I got almost similar problem. I renamed the taxonomy from the functions.php file and everything related with the old name just crashed with this error message
Catchable fatal error: Object of class WP_Error could not be converted to string in D:\wamp\www\wordpress3\wp-includes\formatting.php on line 433
To check the possible error, I reverted to the old name and it solved itself. So I guess, it got to do with the renaming of the taxonomy. It this a bug or it is just that we cannot rename like this?
Thanks…
Forum: Alpha/Beta/RC
In reply to: Custom Post Type in WordPress 3.0 MenuOk its weired but I changed the name of the custom post type and it showed up in the navigation menu page. No idea, how this was solved just by changing the name. Any way, still waiting for the reason.
Thanks…
Forum: Alpha/Beta/RC
In reply to: Custom Post Type in WordPress 3.0 MenuI am having the same problem as enailor. I got it the first time but when I did it again with new database, it does not show in the navigation menu. Yes i have included
'show_in_nav_menus' => true,
but still not showing. Cannot figure out the error as the codes are just the same as before. Does anyone has any idea?Thanks…
Forum: Fixing WordPress
In reply to: comment_reply_link() generates no output?I am having the same problem.
<?php echo comment_reply_link(array('depth' => $depth, 'max_depth' => $args['max_depth'])); ?>
this code shows nothing. No link appears for “Reply”. Searched through the net but could not find the solution. Any help is appreciated.