mdcoops
Forum Replies Created
-
No green active button, and I would like to receive updates.
I had already done the remove key steps as I read that in support forums. Maybe you could somehow provide some feedback to the user that “your license has been activated” or something.
Although it appears that it’s not activated — it must be as I have things working.
https://www.electronics-inc.com/ (2 of the four bottom boxes)
No nothing, button just stays active
Downloaded and replaced with 2.8.2
I get to the Activate License button, but it doesn’t workDavid,
I’ve purchased, but can’t activate the license key
Get error message: Error: Options page swift_control_license not found in the options whitelist.
I deactivated and deleted the free version first.
I also deactivated wordfence security thinking that might be blocking. That didn’t work either.Ah, something so simple! I fixed that and it works. Thanks!!!
Hi David,
https://www.electronics-inc.com/video-test/
ThanksThis is a youtube video. I’m using this code (identifiers starred out):
[wp-video-popup video=”https://www.youtube.com/watch?v= pkAMTotpZko”]- This reply was modified 4 years, 8 months ago by mdcoops.
Ah, I see that the meta_key parameter breaks the relevanssi_do_query completely. I’ll add the filter and see what that does.
Thanks for your help.When I change that to relevanssi_do_query ($wp_query) I get no results.
Hi Mikko,
Finally go the pagination working.$args = array( 'post_type' => 'documents', 'posts_per_page' => 30, 'meta_key' => 'anc', 'orderby' => 'meta_value_num', 'order' => 'DESC', 'paged' => $paged, 'meta_query' => array( array( 'key' => 'author', 'value' => 'kirk', 'compare' => 'LIKE' ), ), ); $wp_query = new WP_Query( $args ); $wp_query->query_vars['s']; if ( function_exists( 'relevanssi_do_query' ) ) { relevanssi_do_query( $query ); }
Problem with number of hits displayed at the top of the page. On the regular relevant search page I use:
<?php echo 'Search results = ' . $wp_query->found_posts . ''; ?>
which works fine.
With this direct query, Search results always = 1, even though there are many hits.
ThanksRenamed and added
$wp_query->query_vars['posts_per_page'] = 30;
—$args = array( 'post_type' => 'documents', 'meta_query' => array( array( 'key' => 'author', 'value' => 'kirk', 'compare' => 'LIKE' ), ), ); $wp_query = new WP_Query( $args ); $wp_query->query_vars['s']; $wp_query->query_vars['posts_per_page'] = 30; if ( function_exists( 'relevanssi_do_query' ) ) { relevanssi_do_query( $query ); } if ($wp_query->have_posts()) { $count = 0;
—
some data is appearing (there should be around 75 results) but only 10 results appear. Woo pagination isn’t working — appears, but doesn’t change the list of posts displayed.I also have something wrong with my templates, as the results are not styled and the post-meta isn’t displaying as it should.
Here’s the page I’m working on:
https://dev.shotpeener.com/kirk-articles/Here’s the results as done with a relevanssi search form (and searching all fields):
https://dev.shotpeener.com/?s=kirk&post_type=documents&submit=SearchLet me know if I need to buy a premium version.