johnwiggity
Forum Replies Created
-
Forum: Plugins
In reply to: [Search with Typesense] Custom Field in SchemaOk thanks a lot! I will ask my developer to see if we can make this work.
Forum: Plugins
In reply to: [Search with Typesense] Custom Field in SchemaOk thanks. Would any other file type be easier to work with? I’m trying to add my VTT caption files that are used for my videos in the search.
Forum: Plugins
In reply to: [Search with Typesense] Change Collection for WordPress FormsOk thanks. I was actually trying to use a Custom Collection that I created in Typesense.
Forum: Plugins
In reply to: [Payment Plugins for PayPal WooCommerce] Migrating SubscriptionsOk thanks. Yes I enabled reference transactions years ago.
Forum: Plugins
In reply to: [Search with Typesense] Filter by ACFOk thanks! So the code
if ( $name == ‘post’ ) { // change post to your schema name
I replace post with my Advanced Custom Field slug?
Forum: Plugins
In reply to: [Search with Typesense] Exclude CategoryOk thanks!
Forum: Plugins
In reply to: [Search with Typesense] Exclude CategoryOk thanks so much. The last thing I was wondering is if it’s possible to filter out any shortcodes that show up in the search results?
Forum: Plugins
In reply to: [Search with Typesense] Exclude CategoryI had one other quick question. With the sorting, is the Recent based on recently updated posts? Is there a way to change that by post date?
Forum: Plugins
In reply to: [Search with Typesense] Exclude CategoryOk thanks so much! The plugin works great.
Forum: Reviews
In reply to: [Header Footer Code Manager] Feature removed after updateI noticed that the after and before content location is now gone when using the Specific Categories.
Is there anyway to get this function back?
Thanks!
Forum: Plugins
In reply to: [Advanced Ads –?Ad Manager & AdSense] Woo SenseiI figured out a workaround. Thanks for a great plugin!
Forum: Hacks
In reply to: How to Link Display NameThat works perfect! Thanks a lot.
Forum: Hacks
In reply to: How to Link Display NameOk thanks but I’m not exactly sure how to implement that.
I have assigned images for each category with your plugin and it outputs to a page where each url links to the category archive page. I would like the image to link to the category archive page as well. I also found out how to exclude certain categories with this code.
<?php
$args = array(
‘orderby’ => ‘name’,
‘order’ => ‘ASC’,
‘exclude’ => ‘163,119,118,122,123,120,126,79,170,’);
$categories = get_categories($args);
foreach($categories as $category) {echo ‘<img src=”‘ . cfi_featured_image_url( array( ‘cat_id’ => $category->term_id, ‘size’ => thumbnail ) ) . ‘”>’;
echo ‘term_id ) . ‘” title=”‘ . sprintf( __( “View all posts in %s” ), $category->name ) . ‘” ‘ . ‘>’ . $category->name.’ ‘;}
?>That’s going to be really hard to do for what I have. Also is there any way to link the image to the category?
Thanks for the help!