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 through 15 (of 19 total)
  • Author
    Posts
  • in reply to: Price filters – Range Slider – Not working as expected #57370
    milena_u6jmmilena_u6jm
    Participant

    Thanks Ernest!

    milena_u6jmmilena_u6jm
    Participant

    Results are pouring in as expected, thank you.

    Got one (hopefully) last bug….
    There are some artists that are showing up in the artist filter list even though they now have no artworks. The ASP setting seems fine to hide artists with no posts, but its still not working as expected…. If you load the page and select Paul Davies, he’s got no works, but still show up in the filter list.

    Any ideas to make him disappear?

    Thanks Ernest!!!

    • This reply was modified 1 month, 1 week ago by milena_u6jmmilena_u6jm.
    in reply to: Selected items on initial load, large loader #57199
    milena_u6jmmilena_u6jm
    Participant

    You cannot access this content.

    in reply to: Selected items on initial load, large loader #57179
    milena_u6jmmilena_u6jm
    Participant

    You cannot access this content.

    in reply to: Selected items on initial load, large loader #57163
    milena_u6jmmilena_u6jm
    Participant
    in reply to: Selected items on initial load, large loader #57158
    milena_u6jmmilena_u6jm
    Participant

    Hey Ernest!

    Thanks for that info.

    We are trying to work with the “Latest Results” option. However, after adding some new media that is defintely “newer” as far as the uploaded date goes, we noticed that the index wasnt showing these items first. I confirmed that the item is in the index if I search for its title. And then I changed the option to “Random Results” and saved, but I still get the same results as before, so something is a bit buggy..

    Have we got a setting wrong in there somewhere that I should check?

    Please let me know.

    in reply to: Setting up pre-filters for an index #57093
    milena_u6jmmilena_u6jm
    Participant

    Do you think this might work for our needs?

    /**
     * Limit ASP index to attachments that meet availability criteria.
     */
    
    // 1. Block indexing on initial save if criteria not met
    add_filter(
    	'asp_index_on_save_stop',
    	function ( $stop, $post_id, $_post, $update ) {
            if ( get_post_type( $post_id ) !== 'attachment' ) {
                return $stop;
            }
    
            $available  = get_post_meta( $post_id, 'available', true );
            $web_status = get_post_meta( $post_id, 'web_status', true );
    
            if ( $available != 1 || ! in_array( $web_status, [ 'Available', 'Under Consideration' ], true ) ) {
                return true; // stop indexing
            }
    
            return $stop;
        },
        10,
        4
    );
    
    // 2. When either relevant meta key is updated, check if the item
    //    now meets full criteria and re-index (or remove) accordingly.
    //    Uses ASP's IndexTable API directly 
    add_action(
    	'updated_post_meta',
    	function ( $meta_id, $post_id, $meta_key ) {
            if ( ! in_array( $meta_key, [ 'available', 'web_status' ], true ) ) {
                return;
            }
            if ( get_post_type( $post_id ) !== 'attachment' ) {
                return;
            }
    
            $available  = get_post_meta( $post_id, 'available', true );
            $web_status = get_post_meta( $post_id, 'web_status', true );
    
            $index_table = \WPDRMS\ASP\Hooks\Actions\IndexTable::getInstance();
    
            if ( $available == 1 && in_array( $web_status, [ 'Available', 'Under Consideration' ], true ) ) {
                // Criteria met — add/update in index
                $index_table->update( $post_id, null, true );
            } else {
                // Criteria no longer met — remove from index
                $index_table->delete( $post_id );
            }
        },
        10,
        3
    );
    • This reply was modified 2 months, 3 weeks ago by milena_u6jmmilena_u6jm.
    in reply to: Price Filter #57064
    milena_u6jmmilena_u6jm
    Participant

    You cannot access this content.

    in reply to: Setting up pre-filters for an index #57057
    milena_u6jmmilena_u6jm
    Participant

    Hey Ernest,

    So an update on this one, generally, this is working as expected for existing media items, so thanks!!

    I have modified this to also add a second acf field that also has to be there else no index. What I have noticed though, was some new media items were showing in the index when they didnt have those flags selected. I will add, we add these media items via the rest API, I wondering if there’s some funny timing things happening? I think with the rest scripts, the initial item is added, then we do a second pass to add the acf values, not sure if relevant, but thought I would add that detail. Let me know what you think.

    add_filter(
    	'asp/index/database/get_posts_to_index/query/add_where',
    	function ( $add_where ) {
    		global $wpdb;
    		return $add_where . " AND ( 
    		 ( post.post_type='attachment' AND EXISTS(
    		   SELECT 1 FROM $wpdb->postmeta pm1 
    		   WHERE pm1.post_id=post.ID 
    		   AND pm1.meta_key='available' 
    		   AND pm1.meta_value=1
    		 ) AND EXISTS(
    		   SELECT 1 FROM $wpdb->postmeta pm2 
    		   WHERE pm2.post_id=post.ID 
    		   AND pm2.meta_key='web_status' 
    		   AND pm2.meta_value IN ('Available', 'Under Consideration')
    		 ))
    		 OR post.post_type <> 'attachment'
    		)";
    	}
    );
    in reply to: Price Filter #57049
    milena_u6jmmilena_u6jm
    Participant

    You cannot access this content.

    in reply to: Setting up pre-filters for an index #56914
    milena_u6jmmilena_u6jm
    Participant

    Thanks Ernest, that worked a treat!

    Appreciate the effort.

    in reply to: Setting up pre-filters for an index #56761
    milena_u6jmmilena_u6jm
    Participant

    OK, can you please let me know, really need to get this one completed ASAP. Thanks Ernest.

    in reply to: Setting up pre-filters for an index #56716
    milena_u6jmmilena_u6jm
    Participant

    Great, that solved the WebP part, thanks!

    But still hitting limits….

    Upon more investigation, I believe the issue is the asp_index_ignore is just too large as is hitting the max packet limit of 16mb. I have contacted the host, but they wont increase this over 16mb, which seems to be a standard security level. We are indexing 5500 items. Does that sound right to you?

    Is there another way to pre-filter the index that doesnt include the creation of the ignore list?

    in reply to: Setting up pre-filters for an index #56706
    milena_u6jmmilena_u6jm
    Participant

    Ahhhh, think I found something…

    Would it have to do with the fact most of my media library is WebP images?? How can I add these as an allowed mime type?

    I ran a report off the index and noticed the 25 are all jpgs, no one WebP was in there. Then I checked my available works list, only 25 are JPG, the rest are WebP.

    WebP is an accepted WordPress MIME type, but I’m guessing we need to get a code tweak to get it into ASP?

    Let me know, thanks Ernest!

    • This reply was modified 4 months, 4 weeks ago by milena_u6jmmilena_u6jm.
    in reply to: Setting up pre-filters for an index #56700
    milena_u6jmmilena_u6jm
    Participant

    Yeah, does seem to be kinda working, but not all the way we would like!

    I’ve just re-added the user details from the private part of this post, the custom code is in a snippet called “ASP – Pre index filter to only grab available works”

    Thanks Ernest!

Viewing 15 posts - 1 through 15 (of 19 total)