bezbeli
Forum Replies Created
-
Forum: Plugins
In reply to: [Booster for WooCommerce] Subscription key problemyes you’re right, it went to spam. Got it, everything is working now. Thank you!
Forum: Plugins
In reply to: [Booster for WooCommerce] Subscription key problemok, can you please tell me how can I access those replied tickets?
Forum: Plugins
In reply to: [Booster for WooCommerce] Subscription key problemHi RonyP, I’ve just sent you an email via contact form on the website.
best,
eForum: Plugins
In reply to: [Portfolio Slideshow] [Plugin: Portfolio Slideshow] Best slideshow plugin yetI totally agree with fatdiver, thanx ??
Hi, I have the same problem.
Im using this code to put widget in and it worked before the last update<?php the_widget('Taxonomy_Drill_Down_Widget', array( 'title' => '', 'mode' => 'dropdowns', 'taxonomies' => array( 'tax1', 'tax2', 'tax3', 'tax4') // list of taxonomy names )); ?>
I disabled all other plugins but that did not help.
Also, is it possible to have one of taxonomies “excluded” from drilldown so you always have all the terms from that taxonomy in dropdown?
Thanx for the great plugin.
Forum: Fixing WordPress
In reply to: Sort posts by number of matched termsAlmost there, this is the code suggested by Bainternet on https://wordpress.stackexchange.com/
$results = array(); $searched_tags = $_GET['my_tax']; //name of the custom taxonomy $searched_tags = explode("+", $searched_tags); while (have_posts()){ $the_post(); $result['r'] = '<div class="post"> <div class="title"><h2><a href="'.get_permalink($post->ID).'" title="'.get_the_title($post->ID).'">'.get_the_title($post->ID).'</a></h2></div> <div class="excerpt">'.get_the_excerpt().'</div> </div>'; //get current posts terms of the taxonomy $current_post_terms = wp_get_object_terms( $post->ID, 'my_tax', array('orderby' => 'name', 'order' => 'ASC', 'fields' => 'names')); $matchs = 0; //check and count matchs foreach ($current_post_terms as $t){ if (in_array($t,$searched_tags){ $matchs = $matchs + 1; } } $result['m'] = $matchs; //save results to array $results[] = $result; } //then sort array by matchs count //quick sorting function function cmp($a, $b) { if ($a['m'] == $b['m']) { return 0; } return ($a['m'] > $b['m']) ? -1 : 1; } //the actuall array sort uasort($results, 'cmp'); foreach ($results as $result){ echo $result['r']; }
I’m not php coder, so though it looks logical, something is not right,
please help
Forum: Fixing WordPress
In reply to: Searching with multiple tags using checkboxesThis should be turned to plugin definitely ?? thank you very much Tykho. Is it possible to have posts sorted by closest match below the actual results, or if there is no perfect match?
Thanx a lot!!!
Forum: Plugins
In reply to: Is it possible to translate results from wp-weather?Thank you very much
BTW great plug-in ?? is there a way to insert widget in custom sidebar, short-code doesn’t work?