keoshi
Forum Replies Created
-
Forum: Plugins
In reply to: [Jetpack Search] Customize results pages with hooksHey there,
Could you clarify if you’re using the Jetpack Instant Search (meaning you instantly get search results in a modal window as soon as you start typing) or the legacy inline search (which loads results on a new page?).
When using the inline search you could in theory customize your results in the “search.php” template of your theme, but Jetpack Inline Search is now deprecated and we recommend using the newer Jetpack Instant Search.
With that in mind and regarding SKU, we’ve had at least one request for that before so the team might add that feature soon. We’re tracking this here if you’re interested in following progress: https://github.com/Automattic/jetpack/issues/32723
As for the shortcode, Jetpack Search indexes content from your site as it exists in the posts, meaning it captures everything as you edit it, and does not expand shortcodes. I’m going to report that to the team and get their thoughts on the possibility of getting the full content.
Finally, you could take a look at styling your search results differently if you’re interested in showcasing your products. We have included a “Product” style that is ideal for online stores: https://jetpack.com/support/search/customizing-jetpack-search/#styling-result-format
Thank you,
FilipeForum: Plugins
In reply to: [Facebook Page Publish] [Plugin: Facebook Page Publish] Unable to publishMust have been something wrong on Facebook’s side, they’re always changing stuff up.
Forum: Plugins
In reply to: [Facebook Page Publish] [Plugin: Facebook Page Publish] Unable to publishSame here:
While publishing “Bauhaus Archiv” to Facebook, an error occured:
Facebook returned an unexpected error: An unexpected error has occurred. Please retry your request later.
Try to resolve this issue, update the plugin or inform the author about the problem.
[Error occured at line 347]How did you use messy on only one section? Thanks
Hey,
It seems that Jeremie’s link is working now — I’ve noticed he’s using messy permalinks for the calendar section, maybe that’s the problem?
Forum: Fixing WordPress
In reply to: Adding category link in Blix’s top navigation*bump*
Forum: Fixing WordPress
In reply to: Adding category link in Blix’s top navigationOK, thanks! So now I have:
<li<?php
$post = $wp_query->post;
if ( in_category('2') ) {
echo " class=\"selected\"";
} else {
echo " class=\"deselected\"";
}
?>><a href="https://www.example.com/category/forum/">fórum</a></li>But still no luck…
Maybe the problem is in$post = $wp_query->post;
I really can’t figure this one out… =\Forum: Fixing WordPress
In reply to: Adding category link in Blix’s top navigationI want to a have a nav link that is ‘selected’ (read:
class="selected"
) when I’m on that category.And I’ve read that the in_category template tag is also usable outside of the_loop
Forum: Fixing WordPress
In reply to: show number of posts?https://codex.www.ads-software.com/Template_Tags/list_cats
There’s another topic on this here: https://www.ads-software.com/support/topic/33224?replies=6
??