JordanC26
Forum Replies Created
-
Hi,
As per the original question. Is e-commerce revenue tracking not included in the CE edition? I too hadn’t seen any mention of this before I set everything up. So it was a surprise.
What exactly do we need to pass to this hook? The term ID, slug, both, full array?
/** * Hide child taxonomy terms from defined parent ID. */ function hide_taxonomy_terms() { $test_array = [ 'term_id' => '47', ]; return $test_array; } add_filter('woof_sort_terms_before_out', __NAMESPACE__.'\\hide_taxonomy_terms' );
I know you can exclude categories via the Settings. I want to exclude by a hook.
Alternative:
I’ve seen you can modify which child terms do not appear with this hook:
woof_terms_where_hidden_childs
Is there a hook to hide PARENT terms too?
Forum: Plugins
In reply to: [WP ULike - All-in-One Engagement Toolkit] Sorting filter for likeYou’ll need to modify the query which is being used on your archive page, here is the docs:
https://github.com/Alimir/wp-ulike#how-to-sort-most-liked-posts
Good question, would like to know if this is possible too or upcoming maybe.
Forum: Fixing WordPress
In reply to: turning urls into imagesI am not 100% clear how you expect this to work at the moment, here is a link which maybe could start to help.
Forum: Plugins
In reply to: [WP Tab Widget] fatal errorThis is to do with your hosting PHP memory allocation. Ask your hosting provider to increase your PHP MEMORY.
Forum: Plugins
In reply to: [Relevanssi - A Better Search] Change post type on 'Did you mean'Hi, Anychance you could give me an example of this, trying to learn it at the same time too.
Forum: Plugins
In reply to: [WORDPRESS VIDEO GALLERY] Show X number of videos – shortcode editFantastic, works great!
Quite happy to say I’d go for the PRO version soon if this is the level of support already. ??
Forum: Plugins
In reply to: [PDF Thumbnails] Code ExampleI’m using the following on the page which should show the PDF thumbnail.
https://bit.ly/1vwydDlI can’t figure how to get the attachment ID for the attachment on this page. I manually put the ID for a moment and works.
Also, will this work if I have multiple PDF’s on the same page (which I intend to).if( have_rows('pdf_files') ): ?> <ul> <?php while( have_rows('pdf_files') ): the_row(); ?> <li><?php the_sub_field('case_study_pdf'); ?></li> <?php $id = 31510; ?> <a href="<?php echo wp_get_attachment_url($id); ?>"> <?php echo get_the_post_thumbnail($id); ?> </a> <?php endwhile; ?> </ul> <?php elseif( !empty($old_pdf1) ): the_field('old_pdf_file_1'); ?> <?php endif; ?>
I too would really need this plugin to work with ACF. Is this yet part of the plugin or going to be supported maybe?
Forum: Plugins
In reply to: [YARPP - Yet Another Related Posts Plugin] Show related pages based on tagsI could do with this too.
Forum: Plugins
In reply to: [Multiple Featured Images] added a param for custom classesI could really do with this too, mind sharing how you’re able to add in a custom class?