Pipeliners
Forum Replies Created
-
Forum: Reviews
In reply to: [WP Better Attachments] Thank you…Hello maximinime, could you please give a help on flexi pages widget support forum regarding the issue of the first clickable dropdown item? I read a reply from you 3 years ago solving this problem, tried but couldn´t do it, cuz code has changed since then. Could you please give a help? Thanks
Forum: Plugins
In reply to: [Multi-column Tag Map] Child_of TaxonomyI can see that if we edit the “mctagmap_functions.php” and add parent=ID I can achieve it. But what must we edit in that file to make it possible to insert it via shortcode and choose the desired tag_ID to be possible to make several different Indexes?
if($taxonomy){ $tags = get_terms($taxonomy, 'order=ASC&<strong>parent=ID</strong>&hide_empty='.$show_empty.'');Forum: Plugins
In reply to: [Multi-column Tag Map] Is there any possibility to hide all sub-categories?I need do it with taxonomies it does not work… Anyone knows how?
$tags = get_terms( $taxonomy, 'order=ASC&parent=0&hide_empty='.$show_empty.'');Thanks
Forum: Plugins
In reply to: [WooCommerce] Link Back to Parent Category – WoocommerceTried this one with no success:
In function.php
function the_parent_link() { global $post; if ( !$post->post_parent ) return;
echo ‘post_parent) ) . ‘”>’ . apply_filters( ‘the_title’, get_the_title($post->post_parent) ) . ”; } ?>
In the php text widget: <?php the_parent_link(); ?>