skthewebmaster
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Favorite Posts] Favorites Dont show on favorites page.Hi,
I have found solution for this.
1. open wpfp-page-template.php
2. goto line 20 and add ‘post_type’ => ‘YOUR POST TYPE’,That’s it.
Forum: Plugins
In reply to: [WP Favorite Posts] Favorites Dont show on favorites page.Hi,
I have also same problem. Can you please tell me how you have solve that?
Thanks
I have also same problem. I have created custom post type “listing” and custom taxonomy “state”. I want to display state in the listing url. So I have found this plugin and hope it can help me but it gives page not found error.
Here is the code for register my listing post type.
register_post_type(POST_TYPE, array(‘label’ => CUSTOM_MENU_TITLE,
‘labels’ => array(‘name’ => CUSTOM_MENU_NAME,
‘singular_name’ => CUSTOM_MENU_SIGULAR_NAME,
‘add_new’ => CUSTOM_MENU_ADD_NEW,
‘add_new_item’ => CUSTOM_MENU_ADD_NEW_ITEM,
‘edit’ => CUSTOM_MENU_EDIT,
‘edit_item’ => CUSTOM_MENU_EDIT_ITEM,
‘new_item’ => CUSTOM_MENU_NEW,
‘view_item’ => CUSTOM_MENU_VIEW,
‘search_items’ => CUSTOM_MENU_SEARCH,
‘not_found’ => CUSTOM_MENU_NOT_FOUND,
‘not_found_in_trash’ => CUSTOM_MENU_NOT_FOUND_TRASH),
‘public’ => true,
‘can_export’ => true,
‘has_archive’ => TRUE,
‘show_ui’ => true, // UI in admin panel
‘_builtin’ => false, // It’s a custom post type, not built in
‘_edit_link’ => ‘post.php?post=%d’,
‘capability_type’ => ‘post’,
‘menu_icon’ => get_template_directory_uri() . ‘/images/icon.png’,
‘hierarchical’ => false,
‘rewrite’ => array(“slug” => POST_TYPE), // Permalinks
‘has_archive’ => true,
‘menu_position’ => 3,
‘query_var’ => POST_TYPE, // This goes to the WP_Query schema
‘supports’ => array(‘title’,
‘author’,
// ‘excerpt’,
‘thumbnail’,
‘comments’,
‘editor’,
//’trackbacks’,
//’custom-fields’,
‘revisions’),
‘show_in_nav_menus’ => true,
‘taxonomies’ => array(CUSTOM_CAT_TYPE, CUSTOM_TAG_TYPE)
)
);please give me reply asap. I will definately give you full rating if this will work.
Thanks
Hi,
thanks for the reply. I have just updated to new version but still my issue is not solved. Please check.
Hi,
I have also this same problem.
Here is the site url http://uberr.com, Click on comments at any activity and you will taken to the detail page in which you can see this plugin used. Everything else works fine except like button. When i click on like button it changed to 1 just for 1 or 2 seconds and again becomes 0. Also when i refresh the page it is 0. Not sure what is the problem. Pleas help asap.
Best Regards
Kishanits really usefull for me. i got my problem solved with this reply regarding to trasparent images.
I have also used developer version and when i upload transparent png images, it display just black background nothing else. So i found this support and change the code as you said and its working fine now.
Many Thanks!