• Resolved fager

    (@fager)


    Hi,
    currently tags are shown below each article. I’ve found the setting to change their colour but it seems the cannot get disabled / hidden. Is there any workaround?

    Thanks in advance
    Fabian

Viewing 3 replies - 1 through 3 (of 3 total)
  • Theme Author nobita

    (@nobita)

    Hi @fager

    How to hide tags from each post (Using PHP filter)

    Open Raindrops / functions.php

    Add one line of code.

    example

    functions.php

    
    <?php
    /**
     *
     *
     * @package Raindrops
     * @since Raindrops 0.1
     */
    if ( ! defined( 'ABSPATH' ) ) {
        exit;
    }
    do_action( 'raindrops_before' );
    
    add_filter('the_tags', '__return_empty_string');// ADD THIS LINE
    /**
     * move from hooks.php
     * and change from load_textdomain(   ) to load_theme_text_domain(   )
     *
     *
     * @since 0.988
     *
     * You can override parent themes language file from child theme.
     */ 
    

    If you can’t use PHP, try writing here.
    Consider other methods.

    Thank you.

    Theme Author nobita

    (@nobita)

    Hi

    Now Raindrops 1.536 live.

    Add Category,Tag hide switch.

    Please try

    https://www.tenman.info/wp3/manualraindrops/files/category-hide-menu.png

    Thread Starter fager

    (@fager)

    Hi nobita,

    perfect, it worked.
    Thank you for your quick support.

    Regards
    Fabian

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Disable / Hide Tags’ is closed to new replies.