caputodesignz
Forum Replies Created
-
I am having the same issue with the current version of the plugin. Any url with a query string is going to page not found and the redirect is not taking place.
Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Ajax Problem with LikeBtn Chrome and SafariThis works perfectly thank you so much. I appreciate all the support and love the plugin!
Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Ajax Problem with LikeBtn Chrome and SafariIs there any way to call the like buttons for woo commerce manually? I need them placed in specific areas, so when they are part of the cart button it doesn’t work for me.
Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Ajax Problem with LikeBtn Chrome and SafariYes that is the error and also when adding an item to the cart it shouldn’t do a page refresh. It should just post with ajax. I now turned off the plugin and you will see how it should function.
You can test it right from the homepage by clicking buy and save on each item. They will work with ajax perfectly now that it is off.
Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Ajax Problem with LikeBtn Chrome and SafariSorry it didn’t attach my link: http://chopdawgdev.com/rcaputo/crowdshop/
Forum: Plugins
In reply to: [Like Button Rating ♥ LikeBtn] Ajax Problem with LikeBtn Chrome and SafariThank you, if it helps diagnose the problem, I turned your plugin back on the development site. This way you can see the error. If you try to save an item you get an error that takes you to a new page and when you add to cart the page reloads instead of adding using ajax. When your plugin is off these work as expected.
If you need me to toggle it off so you can see how it works when it is off let me know. Thanks again.
Forum: Themes and Templates
In reply to: Include categories for custom post type with your themeOk I got it! I had to use wp_insert_term. Here is the updated code where I added it:
add_action( 'init', 'create_jobs3_taxonomies' ); function create_jobs3_taxonomies() { register_taxonomy ( 'featured-job', 'jobs_post', array( 'hierarchical' => true, 'label' => 'Featured', 'show_ui' =>true, 'public' => true, 'show_admin_column' => true, )); wp_insert_term( 'Featured', 'featured-job', array( 'description'=> 'Featured', 'slug' => 'featured' ) ); }Forum: Themes and Templates
In reply to: Include categories for custom post type with your themeThanks linux4me2, this has me in the right direction, but from what I am reading that is going to create a standard category. I need to create one for a custom post type. Here is what I have so far:
//This is custom post type add_action( 'init', 'create_post_type' ); function create_post_type() { register_post_type( 'jobs_post', array( 'labels' => array( 'name' => __( 'Jobs' ), 'singular_name' => __( 'Job' ), 'search_items' => __( 'Search Jobs' ), 'all_items' => __( 'All Jobs' ), 'parent_item' => __( 'Parent Jobs' ), 'parent_item_colon' => __( 'Parent Job:' ), 'edit_item' => __( 'Edit Job' ), 'update_item' => __( 'Update Job' ), 'add_new_item' => __( 'Add New Job' ), 'new_item_name' => __( 'New Job' ), ), 'supports' => array( 'title'), 'public' => true, 'has_archive' => true, 'menu_position' => 5, 'rewrite' => array('slug' => 'jobs'), ) ); } //End add_action( 'init', 'create_jobs2_taxonomies' ); function create_jobs2_taxonomies() { register_taxonomy ( 'job-type', 'jobs_post', array( 'hierarchical' => true, 'label' => 'Job Type', 'show_ui' =>false, 'public' => true, 'show_admin_column' => true, )); }I wanted to create default categories for the job-type category group. I thought maybe showing the code would help explain what I need. So basically I want to have categories: full-time, part-time, etc in there to start when the theme is installed.