This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Forum Replies Created

Viewing 15 posts - 1,186 through 1,200 (of 18,418 total)
  • Author
    Posts
  • in reply to: Elementor Search Results Page #53472
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Search not working with loop grid for post type #53471
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Disable Search Bar & Category Filtering Issue #53467
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    Well, this is a tough one. If you have not too many pages, and they don’t change very ofthen, then excluding the remainder manually by ID is the best bet.

    However if the pages change ofthen and there is a lot of them, then perhaps consider creating a taxonomy and put the excluded pages there and exclude that.

    If none of that works, then still you have exclusions by custom fields.

    I would not use any type of inclusion rule here, because for the items to be included they all have to match the criteria – that also applies for all post types, including the products.

    in reply to: Elementor Search Results Page #53465
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Thanks Matt!

    The CSS class was not added to the grid, so it was not in effect. I have added it for you, now the results apply correctly.

    in reply to: Disable Search Bar & Category Filtering Issue #53461
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Problem with the Back End of the plugin #53457
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: No search results in secondary language using Polylang #53455
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Tags filter issue #53454
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    It is most likely showing items whihc may not be tagged yet. Make sure to turn off this option, that should resolve the problem.

    in reply to: Elementor Search Results Page #53453
    Ernest MarcinkoErnest Marcinko
    Keymaster

    You cannot access this content.

    in reply to: Elementor Search Results Page #53449
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Great! I’m happy to hear that!

    When doing a search, is your plugin searching for the entire page including those related articles? If yes, how can we prevent this as the search results page titles are going to be very confusing.
    It only searches the selected fields – post titles, content, excerpts. If the related items are not part of the post content, then those are not searched. The only possible reason is if the related content is stored within the post content – aka you have to add it in the page builder/editor to ever single post, and is not part of a common template of some sort.
    There is nothing much to do about it unfortunately. If it’s stored in the post content field, the plugin only sees that as part of the post content.

    It is however much more likely that the keyword logic is not set correctly or allows loose matches. First, I would try a more strict keyword logic to see how that changes everything. In most cases that does the trick nicely.

    in reply to: Elementor Search Results Page #53447
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi Matt,

    I will update that asap, thanks for noticing.

    Here is a full video tutorial on how to set it up step-by-step: https://www.youtube.com/watch?v=RTbxpM1af4c

    in reply to: Ajax Search No Longer Retreiving Data #53446
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Sure! I have added it through the snippets plugin since it was installed.

    I have only tested on the back-end that’s why I didn’t notice, the search is working there. So the issue seems to be a custom field filter, which is set on the front-end by a custom script you have. It adjusts the field with that hash value, which I assume no longer matches the database, but I don’t know what that is.
    From what I can see that custom field _leafbridge_product_single_meta_retailer_id does not exist anymore, so that explains the problem.

    in reply to: General Question #53442
    Ernest MarcinkoErnest Marcinko
    Keymaster

    No big deal, but I did want to mention that while updating today ASP disabled itself? Strange behavior I thought you may want to know about.
    That may have been the wordpress core updater, the plugin can’t really do that. The update process in wordpress is usually upload -> disable -> replace -> re-enable. If there was like a page reload or just a tiny server hickup for a millisecond, that could explain the plugin staying disabled after update.
    It should not re-appear again though.

    in reply to: Ajax Search No Longer Retreiving Data #53441
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    Thanks for the details!

    I have added the following custom code to fetch the images for you:

    add_filter('asp_results', function($results){
    	foreach ($results as &$r) {
    		if ( $r->post_type !== 'product' ) continue;
    		$schema = get_post_meta($r->id, 'lb_product_schema', true);
    		$data = json_decode($schema, true);
    		$r->image = isset($data['image'][0]) ? $data['image'][0] : $r->image;
    	}
    	return $results;
    });

    There is however one issue unrelated to the plugin. The images source domain have a same-origin policy, so even though they are linked to be displayed, the source domain is prohibiting to display them from anywhere else.

    You may want to look at issue. It’s usually an option somewhere in the image domain CDN or on the apache/ngingx mod_rewrite rules.

    The code above should work just fine, however I can’t guarantee anything as this is a customization.

Viewing 15 posts - 1,186 through 1,200 (of 18,418 total)