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

Reply To: Show ACF value on Seach result?

#20455
Ernest MarcinkoErnest Marcinko
Keymaster

Hi!

I think that’s doable. Just wrap the price value within a span element (or anything you need) with a class in the advanced title field, so it’s easily targetable, something like:

<span class='my_price_val'>{your_price_field_here}</span>

Then CSS with media queries:

/* Desktop default*/
.asp_r  span.my_price_val {
    display: block;
}

/* Devices below 720px */
@media screen and (max-width: 720px) {
    .asp_r  span.my_price_val {
        display: inline-block;
    }
}

This is how I would do it.