Ddaro
Forum Replies Created
-
Forum: Plugins
In reply to: [Smart Slider 3] SmartSlider3 is not dispplaying after WordPress updateUnfortunately, 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
In reply to: [Smart Slider 3] SmartSlider3 is not dispplaying after WordPress updateI 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
In reply to: [Smart Slider 3] SmartSlider3 is not dispplaying after WordPress updateI 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?
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?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 fineonly 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 displaythis combination should work but not work :/
echo do_shortcode('[ajax_load_more post_type="projekty" category="projkat1"]');
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
In reply to: Show only childs of custom categoryyou 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); ?>