Title: Ddaro's Replies | WordPress.org

---

# Ddaro

  [  ](https://wordpress.org/support/users/darney/)

 *   [Profile](https://wordpress.org/support/users/darney/)
 *   [Topics Started](https://wordpress.org/support/users/darney/topics/)
 *   [Replies Created](https://wordpress.org/support/users/darney/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/darney/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/darney/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/darney/engagements/)
 *   [Favorites](https://wordpress.org/support/users/darney/favorites/)

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Smart Slider 3] SmartSlider3 is not dispplaying after WordPress update](https://wordpress.org/support/topic/smartslider3-is-not-dispplaying-after-wordpress-update/)
 *  [Ddaro](https://wordpress.org/support/users/darney/)
 * (@darney)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/smartslider3-is-not-dispplaying-after-wordpress-update/#post-13425290)
 * Unfortunately, I cannot share the link publicly because I do not want google 
   robots to index my client’s page on the technical forum page 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Smart Slider 3] SmartSlider3 is not dispplaying after WordPress update](https://wordpress.org/support/topic/smartslider3-is-not-dispplaying-after-wordpress-update/)
 *  [Ddaro](https://wordpress.org/support/users/darney/)
 * (@darney)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/smartslider3-is-not-dispplaying-after-wordpress-update/#post-13424366)
 * I solved the problem. You have not compatible plugin with the current jquery 
   standards. jQuery has been updated since the last WordPress update. Smart Slider
   3 is not compatible with this jquery.
 * After renaming in the location (wp-includes / js / jquery / jquery.js to jqueryOFF.
   js everything works fine.
 * You can also install the jQuery Migrate Helper plugin.
 * Please note that this is not the target solution to the problem. The problem 
   lies with Smart Slider 3 -> jQ
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Smart Slider 3] SmartSlider3 is not dispplaying after WordPress update](https://wordpress.org/support/topic/smartslider3-is-not-dispplaying-after-wordpress-update/)
 *  [Ddaro](https://wordpress.org/support/users/darney/)
 * (@darney)
 * [5 years, 7 months ago](https://wordpress.org/support/topic/smartslider3-is-not-dispplaying-after-wordpress-update/#post-13423492)
 * I have the same problem. I even removed the entire HEADER by putting only the
   slider in the theme. It only continues to display empty space. Some solution?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ajax Load More – Infinite Scroll, Load More, & Lazy Load] Problem with custom post type category](https://wordpress.org/support/topic/problem-with-custom-post-type-category-2/)
 *  Thread Starter [Ddaro](https://wordpress.org/support/users/darney/)
 * (@darney)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/problem-with-custom-post-type-category-2/#post-12349568)
 * It’s a pity it doesn’t work. You have taxonomies in the builder so I don’t understand
   why it doesn’t work. Maybe it’s worth updating the plugin? Your builder sees 
   custom post type and taxonomies, why doesn’t it work?
 * I need to have a custom post type to separate the blog from other sections
    There
   is no method to make it work?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ajax Load More – Infinite Scroll, Load More, & Lazy Load] Problem with custom post type category](https://wordpress.org/support/topic/problem-with-custom-post-type-category-2/)
 *  Thread Starter [Ddaro](https://wordpress.org/support/users/darney/)
 * (@darney)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/problem-with-custom-post-type-category-2/#post-12347465)
 * Still nothing.
 * I have a register post
 *     ```
        add_action('init', 'projekty_register_post_type'); 
           function projekty_register_post_type() {
           register_post_type('projekty', array(
   
   
           'labels' => array(
           'name' => 'Projekty',
           'singular_name' => 'Projekty',
           'add_new' => 'Add projekty',
           'edit_item' => 'Edit projekty',
           'new_item' => 'New projekty',
           'view_item' => 'View projekty',
           'search_items' => 'Search in projekty',
           'not_found' => 'Not found',
           'not_found_in_trash' => 'No info found in Trash'
           ),
           'public' => true,
           'supports' => array(     
           'title',
       	'author',
           'editor',
       	'comments',
           'thumbnail',
           'excerpt',
       	'custom-fields' )
   
          // 'taxonomies' => array('post_tag') // this is IMPORTANT
           ));
       	/* flush_rewrite_rules(); */
           }
   
       	register_taxonomy("projekty", array("projekty"), array("hierarchical" => false, "label" => "Tags projekty", "singular_label" => "Tags projekty", 'show_admin_column' => true, "rewrite" => true));
   
       add_action( 'init', 'projekty_kategorie', 0 );
   
       function projekty_kategorie() {
       	register_taxonomy( 'projekty_categories', 'projekty', 
       	array( 'hierarchical' => true, 
       	'label' => 'Categories projekty',
       	'show_ui' => true, 
       	'supports'=>'author',
   
       	'show_admin_column' => true  ) );
       }
       ```
   
 * When I use normal WordPress loop with pagination URL example:
    `name-site.com/
   projekty_categories/projcat1` everything display fine
 * only this code is corectly
    `echo do_shortcode('[ajax_load_more post_type="projekty"]');`
 * I dont know why I can’t use shortcode generated from shortcode builder
    category
   variant display
 * this combination should work but not work :/
    `echo do_shortcode('[ajax_load_more
   post_type="projekty" category="projkat1"]');`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Ajax add to cart for WooCommerce] After adding to the cart, the right frame is not shown](https://wordpress.org/support/topic/after-adding-to-the-cart-the-right-frame-is-not-shown/)
 *  Thread Starter [Ddaro](https://wordpress.org/support/users/darney/)
 * (@darney)
 * [7 years ago](https://wordpress.org/support/topic/after-adding-to-the-cart-the-right-frame-is-not-shown/#post-11479422)
 * Still I cant see right frame. Only I see top frame when I scroll down page.
    
   After clicking add to the cart I should see the right frame or any confirmation
   that the product has been added to the basket. Unfortunately, I do not see any
   confirmation.
 * the update only solved the problem of duplicate purchases on some browsers
 * How to resolve problem about showing right frame confirmation on right side? 
   Meybe I must enable this on store front?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Show only childs of custom category](https://wordpress.org/support/topic/show-only-childs-of-custom-category/)
 *  [Ddaro](https://wordpress.org/support/users/darney/)
 * (@darney)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/show-only-childs-of-custom-category/#post-4579763)
 * you must check in wp-admin what is a ID for PARENT category. In categories list
   click on it and check in URL id.
 * Display category child for Parent category example Parent have id 12
 *     ```
       <?php
       $categories = wp_list_categories('title_li=&child_of=12&show_count=1&echo=0&orderby=ID');
       $categories = preg_replace('/<\/a> \(([0-9]+)\)/', ' <span class="count">(\\1)</span></a>', $categories);
       ?>
       ```
   

Viewing 7 replies - 1 through 7 (of 7 total)