mewrd
Forum Replies Created
-
Forum: Plugins
In reply to: [Relevanssi - A Better Search] display only productsthank you last question ??
is it possible to customize the search resaults output ?
in the serch input itself?like this?
https://prnt.sc/m4su04
and in the search-page-resaults?like this?
https://prnt.sc/m4svhdForum: Plugins
In reply to: [Relevanssi - A Better Search] display only productsthank you ?? but sit still a bit buggy
please see these 2 images
https://prnt.sc/m41pp6
https://prnt.sc/m41qw2-leads to 404why does this happen?
- This reply was modified 6 years, 2 months ago by mewrd.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] display only productsthank you ?? here is the URL OF THE WEBSITE https://bconnect.03.goomla.co.il/
and a search term in my language “?????” it means “about us”
- This reply was modified 6 years, 2 months ago by mewrd.
Forum: Plugins
In reply to: [WP Accessibility] the plugin only works in the home page?I have a child theme , and this is the code that calls the script in function.php.
I have tried to delete this code , and what happened is that , WP Accessibility stopped working also in the home page , can you see somthing in the code that can cause this…<?php /** Custom Functions */ /* Add class to wpcf7 form */ add_filter( 'wpcf7_form_class_attr', 'prefix_form_class_attr' ); function prefix_form_class_attr( $class ) { $class .= ' prefix-wpcf7-form'; return $class; } function wptuts_scripts_basic() { wp_register_script( 'custom-news', get_template_directory_uri() . '/js/custom_news.js' ); wp_enqueue_script( 'custom-news' ); } add_action( 'wp_enqueue_scripts', 'wptuts_scripts_basic' ); function show_scroll_news_shortcode($atts) { $arr = array( 'title' => 'News', ); $a = shortcode_atts($arr,$atts); $title = $a['title']; $html = '<h4 class="sidebar-widget-title ui--widget-title">'; $html .= '<span>' . $title . '</span>'; $html .= '</h4>'; $html .= '<div class="scroll_news_container">'; global $post; $posts = new WP_Query(); $posts->query('post_type=scroll_news&showposts=-1'); if($posts->found_posts > 0) { $html .= '<div id="scroll_news"><ul>'; while ($posts->have_posts()) { $posts->the_post(); $title = get_the_title($post->ID); $custom_link = get_field("custom_link"); $new_window = get_field("new_window"); if ($new_window) { $html .= '<li class="single_new"><a target="_blank" href="' . $custom_link . '">' . $title . '</a></li>'; } else { $html .= '<li class="single_new"><a href="' . $custom_link . '">' . $title . '</a></li>'; } } $html .= '</ul></div>'; wp_reset_postdata(); } $html .= '</div>'; $html .= '<input type="button" id="scroll-pause" class="playing" />'; return $html; } add_shortcode("scroll_news","show_scroll_news_shortcode"); // Register Custom Post Type function scroll_news() { $labels = array( 'name' => _x( 'Scroll News', 'Post Type General Name', 'scroll_news' ), 'singular_name' => _x( 'Scroll New', 'Post Type Singular Name', 'scroll_news' ), 'menu_name' => __( 'Scroll News', 'scroll_news' ), 'parent_item_colon' => __( 'Parent Item:', 'scroll_news' ), 'all_items' => __( 'All Items', 'scroll_news' ), 'view_item' => __( 'View Item', 'scroll_news' ), 'add_new_item' => __( 'Add New Item', 'scroll_news' ), 'add_new' => __( 'Add New', 'scroll_news' ), 'edit_item' => __( 'Edit Item', 'scroll_news' ), 'update_item' => __( 'Update Item', 'scroll_news' ), 'search_items' => __( 'Search Item', 'scroll_news' ), 'not_found' => __( 'Not found', 'scroll_news' ), 'not_found_in_trash' => __( 'Not found in Trash', 'scroll_news' ), ); $args = array( 'labels' => $labels, 'supports' => array( 'title', ), 'hierarchical' => false, 'public' => true, 'show_ui' => true, 'show_in_menu' => true, 'show_in_nav_menus' => true, 'show_in_admin_bar' => true, 'menu_position' => 5, 'can_export' => false, 'has_archive' => false, 'exclude_from_search' => true, 'publicly_queryable' => true, 'capability_type' => 'page', ); register_post_type( 'scroll_news', $args ); } // Hook into the 'init' action add_action( 'init', 'scroll_news', 0 ); ?>
Forum: Plugins
In reply to: [WP Accessibility] the plugin only works in the home page?Hi Joe , since I only have access to the admin panel , I cant see the script itself , but its a theme script not a plugin script , so I have tried to use the wordpress -dequeue_script() function in function.php , but it didnt solve the problem…with home page vs inner pages.
do you have any idea what else can be wrong?
Forum: Plugins
In reply to: [Custom Post Type UI] another solution for visual composer integrationthank you, I hope it will help
Forum: Plugins
In reply to: [Custom Post Type UI] Custom Post type to Visual Composerthank you again Michael:)
Forum: Plugins
In reply to: [Custom Post Type UI] Custom Post type to Visual Composerthank you very much!…:) I have started yesterday to find a solution by reading that exact thread, but I didnt know that all it takes is to add these 2 lines of code.well I have just added ,and I still cant see the post type I have created in the visual composer gird:(
perfect !!! thank you very much:)
Hi Sean ,thank you , its a UI issue, a lot of the users dont understand that you have to click on the download link in the purchase-confirmation page in order to download it.(perhaps you will change it too in your next version?)
the text is simple : “click on the link in order to download it “
I have attached a link to the image
https://i61.tinypic.com/2wobxg3.pngthank you ??
thank you again:)you are very kind ,I see now what you mean about category description that works like pages.so I understand now that I have to take a new approach to this problem.
what is this function–>vtde_short_term_description(), do?Hi Shea thank you for your reply , well in the website I am working on ,there are 50 categories + sub categories each has a a very long description text,so in the archive page I display all the titles of the categories + their description ,so it makes more sense to show title + a few words of each description and a “read more” link ,to the full content of that category .
actually there is a read more link in your plugin , but it doesnt work ,it does nothing, I am trying to understand why?and how to make it work.
can you help ?
thank you:)
thank you very much:)))))))))))
Forum: Plugins
In reply to: [WCP Contact Form] override admin style?Excellent:)) this—-> border-size : 0 0 1px
what helped :)))
still strange, though that adding -!important- to my css style cant override the plugin style.
but thank you very much all is good now:)))