• Resolved Rik0399

    (@rik0399)


    Like this and thank you

    Would like to have option to remove user ‘profile’ and ‘link’ from form

    Ability to change text, perhaps all text loaded into a text file for ease of change.

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter Rik0399

    (@rik0399)

    Hi,

    Until there is a way around this, I’m trying to hide author image and link on results and form but can’t get this css to work?

    .idea-author-profile-image, li .idea-item-meta, li .idea-author-container, li .idea-author-container, li .admin-star-outer, li .ideapush-icon-Star, li .idea-author {
    ?display: none !important;
    }

    Any ideas please? ??

    Plugin Author Northern Beaches Websites

    (@northernbeacheswebsites)

    Hi @rik0399,

    Thanks for your message. We do have some developer hooks for changing the profile and link on the form. Please see the “ideaPush Support” tab in the plugin settings and the question “I am a developer, do you provide any filters?”. This enables you to modify the link and image. But if you just want to hide it, it might be easier via CSS:

    .user-profile-image-container, .user-profile-edit, .link-separator, .ideapush-logout-link {
        display: none !important;   
    }

    You can change the text in the form by going to the “Idea Form” tab, and then click the edit icon next to “Default” (or your form setting) and this will enable you rename things in the form.

    You can also change text using a filter like:

    add_filter( 'gettext', 'change_text_idea_push', 20, 3 );
    
    function change_text_idea_push( $translated_text, $text, $domain ) {
    
    if ( is_singular() ) {
    
    switch ( $translated_text ) {
    
    case 'Create Board' :
    
    $translated_text = __( 'Something else', 'ideapush' );
    
    break;
    
    case 'Most Votes' :
    
    $translated_text = __( 'Something else', 'ideapush' );
    
    break;
    
    case 'Top Ideas' :
    
    $translated_text = __( 'Something else', 'ideapush' );
    
    break;
    
    case 'Most Ideas' :
    
    $translated_text = __( 'Something else', 'ideapush' );
    
    break;
    
    case 'Edit' :
    
    $translated_text = __( 'HELP', 'ideapush' );
    
    break;
    
    case 'ago' :
    
    $translated_text = __( 'SOMETHING', 'ideapush' );
    
    break;
    
    case '%s months' :
    
    $translated_text = __( 'SOMETHING', 'ideapush' );
    
    break;
    
    case '%s month' :
    
    $translated_text = __( 'SOMETHING', 'ideapush' );
    
    break;
    
    case 'Leaderboard' :
    
    $translated_text = __( 'SOMETHING', 'ideapush' );
    
    break;
    
    case 'You have ' :
    
    $translated_text = __( 'SOMETHING', 'ideapush' );
    
    break;
    
    case ' vote left' :
    
    $translated_text = __( 'SOMETHING', 'ideapush' );
    
    break;
    
    case ' votes left' :
    
    $translated_text = __( 'SOMETHING', 'ideapush' );
    
    break;
    
    }
    
    }
    
    return $translated_text;
    
    }

    You didn’t mention which text you wanted to edit, so I am just telling you both options, so you explore both options and see what works for you and your circumstance. Thanks,

    Thread Starter Rik0399

    (@rik0399)

    Hi,

    That was very helpful, thank you ??

    I did try adding to the css but it didn’t remove the User Link, Image, Profile etc using the theme customiser :

    .user-profile-image-container, .user-profile-edit, .link-separator, .ideapush-logout-link { display: none !important; }

    Also, tried this :

    .user-profile-container, .admin-star-outer, .idea-author-container, .user-profile-image-container, .user-profile-edit, .link-separator, .ideapush-logout-link {

    display: none !important;

    pointer-events: none !important;

    }

    Also, would like to :

    Change this text > ‘Get your idea to 20 to be reviewed’.

    Move the Search Box to the next line.

    Can the plugin also pick up the theme colours as the form layout is White which is difficult to read on a dark background?

    I would like to buy the Pro version as this will be a permanent addition to the site.

    • This reply was modified 1 year, 1 month ago by Rik0399.
    • This reply was modified 1 year, 1 month ago by Rik0399.
    Thread Starter Rik0399

    (@rik0399)

    Hi,

    When an idea is submitted, it comes back as :

    Idea submitted succesfully

    Where can this be changed, please? ??

    Plugin Author Northern Beaches Websites

    (@northernbeacheswebsites)

    Hi @rik0399, where exactly are you inserting the CSS code?

    Could you also provide a link to your board page as this might help explain why the CSS isn’t working.

    On other points:

    Also, would like to :

    Change this text > ‘Get your idea to 20 to be reviewed’. Please use the filter function I mentioned before and for the case, you would make this: Get your idea to %d to be reviewed

    Move the Search Box to the next line. Use CSS. I can’t see your board, so you will need to work this out using CSS. As part of the pro version I allow for some custom CSS to help get things working to your preference/theme.

    Can the plugin also pick up the theme colours as the form layout is White which is difficult to read on a dark background? I am not sure, it just depends on the specific site environment and theme. You can always change the form colours using CSS.

    I would like to buy the Pro version as this will be a permanent addition to the site. Ok fantastic. If you get the pro version, feel free to send me an email and I can provide more specific instructions for your site.

    When an idea is submitted, it comes back as :

    Idea submitted succesfully Please use the filter function I mentioned before. This time the case would be: Idea submitted successfully

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Settings’ is closed to new replies.