alvarokid
Forum Replies Created
-
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search showing zero resultsI understood what you meant, but searching without relevanssi is fetching posts, so even Marketify or Search & Filter should be setting
paged
orposts_per_age
correctly. May be the problem is how Relevanssi is parsing the array into results there or maybe an exception that terminates the function before letting the result page render results. But it seems either Search & Results or Marketify theme (both searches works ok alone and together) are not understanding what Relevanssi is returning.Is there any way to debug this? Let me know.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search showing zero resultsSorry but I didn’t get it. Could you please me suggest me the changes I should do and in which files to try?
I can also give you credentials if needed.
Thank you.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Search showing zero resultsSo var_dump( $posts ); in the Relevanssi code returns nothing?
Nothing.
Does this show you a list of results?
add_filter( ‘relevanssi_hits_filter’, ‘rlv_check_hits’ );
function rlv_check_hits( $results ) {
var_dump( $results[0] );
exit();
}Yes, I get this:
array(52) { [0]=> int(553332) [1]=> int(571966) [2]=> int(373469) [3]=> int(568277) [4]=> int(575758) [5]=> int(425304) [6]=> int(395367) [7]=> int(147481) [8]=> int(118902) [9]=> int(7500) [10]=> int(251647) [11]=> int(286966) [12]=> int(288141) [13]=> int(371739) [14]=> int(412428) [15]=> int(519516) [16]=> int(635830) [17]=> int(599421) [18]=> int(493536) [19]=> int(445000) [20]=> int(387703) [21]=> int(361103) [22]=> int(213415) [23]=> int(373487) [24]=> int(373650) [25]=> int(135108) [26]=> int(617543) [27]=> int(383720) [28]=> int(372488) [29]=> int(564108) [30]=> int(567456) [31]=> int(165924) [32]=> int(17192) [33]=> int(48910) [34]=> int(98721) [35]=> int(119780) [36]=> int(147429) [37]=> int(147451) [38]=> int(165736) [39]=> int(165863) [40]=> int(166003) [41]=> int(545823) [42]=> int(200833) [43]=> int(212403) [44]=> int(304710) [45]=> int(304739) [46]=> int(304744) [47]=> int(396646) [48]=> int(405348) [49]=> int(434736) [50]=> int(519486) [51]=> int(50070) }
Have you tried removing Search & Filter from the equation?
Yes, and it doesn’t work either with native theme search.
I get “No Downloads found”.
Any ideas on how to find a solution for this?
Thank you.
Forum: Plugins
In reply to: [Awesome Support - WordPress HelpDesk & Support Plugin] Database ArchitectureThank you for your reply.
And what about premium plans? I read some gives you the ability to store it in AWS or VPS?
I’m looking for any alternative but store it in wordpress wp_posts. Would like to hear all choices so we can decide to purchase your product.
Thank you.
I ran the upgrade with the Developer’s Toolbox and in the chrome debug console in “network” it is pointing to admin-ajax.php as the source of the problem with status “500”, it says something like initiator “load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,utils&ver=4.8.2:4”
Please, help.
Just in case you didn’t see my tickets, this is what I get when I run “Start upgrade”:
An error has happened while performing a request, the server has responded with response code 500
Look forward to your help.
Forum: Plugins
In reply to: [ByREV WP-PICShield] Need this plugin to be compatible with with php 5.6Hi, see this article, it explains how to fix it.
Hope it helps.
Forum: Plugins
In reply to: [EDD Sale Price] Not compatible with EDD All Access extensionHi Jeroen,
Did you find the root of this issue? I would like to keep using EDD Sale Price within the membership program. But I will have to disable it since users are complaining.
I would appreciate (a lot) if you can point me in the right direction of how to solve it.
I’m willing to donate to the cause, just tell me how ??
Please, keep me posted.
Forum: Plugins
In reply to: [Collapse-O-Matic] Default content is expandedHi,
Shortcode is placed after <fieldset> form start.
Actually I do it through add_action before and after the form without shortcode.
This is the code:
function collapse_before ( ) { echo '<p class="collapseomatic colomat-visited" id="some_id" rel="button-highlander" title="Create my account">Create my account</p>'; echo '<div id="target-some_id" class="collapseomatic_content ">'; } function collapse_after ( ) { echo '</div>'; } add_action( 'edd_register_fields_before', 'collapse_before' ); add_action( 'edd_register_fields_after', 'collapse_after' );
Hi Matt, any suggestion for my question?
Thank you.
Sure, it is https://www.hooksounds.com.
Forum: Plugins
In reply to: [WordPress Infinite Scroll by Auto Load Next Post] MyThemeShopHi Sebastien,
I wonder it this issue has been resolved. I subscribed to be aware of the premium version since I wanted to implement it in the attachment page too. To be easier for my users to browse between photos of a gallery.
I would appreciate any hint to make it work on my site. I noted the navigation code is in the content-partial, just in case.
I can provide you credentials if you want to take a look too.
Thank you!
Forum: Plugins
In reply to: [WordPress Infinite Scroll by Auto Load Next Post] MyThemeShopAssets are loading now, I had a typo in my functions.php.
You can now see the Uncaught TypeError I mentioned before there in the browser console.
auto-load-next-post.min.js:1 Uncaught TypeError: jQuery(…).scrollSpy is not a function
So, even with all assets loaded, plugin doesn’t work, I’m the developer ??
I guess with the javascript error there and all files and frontend rendered you could be guessing what’s going on.
Forum: Plugins
In reply to: [WordPress Infinite Scroll by Auto Load Next Post] MyThemeShopSorry, just understood what you meant and yes, I did declare support.
—
[/wp-content/themes]# egrep -R add_theme_support * | grep auto-load
mts_newspaper-child/funtions.php:add_theme_support(‘auto-load-next-post’);
—Forum: Plugins
In reply to: [WordPress Infinite Scroll by Auto Load Next Post] MyThemeShopThat’s weird, I deactivated and re-activated and assets don’t appear now. I’m to understand why, may be I could include the assets manually in my header.php. Any other ideas why assets aren’t loading?
I didn’t declare support anywhere but here, should I?
Thank you so far for your advices.