Viewing 15 replies - 1 through 15 (of 15 total)
  • The Blank Business Name is within a CSS span. So you can just put a display:none; on the span in your CSS.

    How exactly to do it? What is a custom code?

    Its simple to remove “Blank Business Name” text. But how to remove text “on” default displaying before “Blank Business Name”?

    • This reply was modified 7 years, 11 months ago by 77simba123.

    Its simple to remove “Blank Business Name” text. But how to remove text “on” default displaying before “Blank Business Name”?

    Thread Starter Barbra Wolfe

    (@barbra-wolfe)

    @77simba123 Re: Its simple to remove “Blank Business Name” text

    How do you do it? I see no settings referring to this.

    You can go about this a couple of ways. The easiest way is to fix this via CSS:

    span.wpcr3_item_name a {display: none;}
    span.wpcr3_item_name:after {content: “Name of Business”;}

    The name of the business will no longer be linked, but at least you have the dumb Blank Business Name gone.

    Cheers!

    Let me add a bit more to my last statement:

    You can go about this a couple of ways. The easiest way is to fix this via CSS:

    span.wpcr3_item_name a {display: none;}
    span.wpcr3_item_name:after {content: “Name of Business”;}

    The name of the business will no longer be linked, but at least you have the dumb Blank Business Name gone.

    *************

    The two lines of CSS code need to be added to your theme’s style sheet. It will have a name something like styles.css.

    Secondly, you cannot do these changes just in the plugin’s settings. There’s no way to do it the easy way.

    Thirdly, where I put “Name of Business,” you need to keep the quotation marks and place your own business name within the quotes.

    Cheers!

    I agree with the above answer.

    I read in another thread that they were suggesting to edit the core plugin files but you shouldn’t. If you do then it will get overwritten on the next update. You can easily do it this way stated above.

    Just added this extra CSS to my child theme and it did not work

    Do a hard refresh. Crtl-Shift-R. It’s probably using the old CSS file in cache

    Hi thanks, that worked mostly ??

    The “on” is still there: https://tonygilbertcars.co.uk/test/

    Can you give an further advise on that please?

    cheers

    I had the same problem. I noticed that if you scroll down on the Review Page in Edit mode, you’ll see a place to add the business name. If you add it, and don’t add the code to remove the business name, it will show up properly, like “Apr 14, 2016 by Sharayah Colter on ABC Company”

    ok here is the CSS to remove “on blank business name”
    you’re welcome ??

    .wpcr3_review_author span.wpcr3_caps:before {
    content: “by “;
    text-transform: lowercase;
    color: #747474 !important;
    font-size: 0.8em;
    font-style: italic;
    }
    .wpcr3_review_author {
    color: #fff !important;
    font-size: 0px !important;
    }
    .wpcr3_review_author span.wpcr3_caps {
    color: #000 !important;
    font-size: 12px;
    }
    .wpcr3_review_author span.wpcr3_item_name {
    display: none;
    }

    Thread Starter Barbra Wolfe

    (@barbra-wolfe)

    Thanks @cke11y, it worked! You rock!

    • This reply was modified 7 years, 2 months ago by Barbra Wolfe.

    The code is OK….BUT I’d rather have the “Blank Business Name” changed to my “Company Name” and linking back to the Reviews and Ratings page, I’m using the short code to display the ratings in the sidebar or the footer. This makes more sense than to delete it all together. Hope someone has a CSS script for this. THANKS

Viewing 15 replies - 1 through 15 (of 15 total)
  • The topic ‘Blank Business Name – different issue’ is closed to new replies.