Home Forums Pro Themes Realestate Base Pro how to deactivate links for rb features and rb services

Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #118849
    spazeinvader
    Participant

    How do you get the RB Services and the RB Features widgets to appear like the Demo Home Page, except for the links not to work? I want my home page to have graphics and format similar to these widgets, but I do not want to be able to click on the link for each item in the block.

    #118973
    wensolutions
    Keymaster

    Hello,

    Regarding your query related to the widgets, you can add widgets directly from the customize section following the path Admin Panel > Appearance > Customize > Widgets > Front Page Widgets Area and add the widgets available as per your requirement.

    You can refer to the documentation link given below:

    https://themepalace.com/instructions/themes/realestate-base-pro/#doc-home-page-sections-7

    https://themepalace.com/instructions/themes/realestate-base-pro/#doc-how-to-manage-theme-available-widgets-32

    To be more clear you can refer to the screen record given below,

    https://www.loom.com/share/dd6f0e297ffe4bc8873d0e5115bb4699

    Regarding your query about the link, you can add CSS to remove the link following the path Admin Panel > Appearance > Customize > Additional CSS

    #sidebar-front-page-widget-area .featured-page-widget.image-alignright img {
        pointer-events: none;
    }
    #sidebar-front-page-widget-area .featured-page-widget a.more-link {
        display: none;
    }

    For the service section, you can add below given CSS:

    .service-item-title a {
        pointer-events: none;
    }

    Hope this helps.

    If you have further queries, let us know.

    Thank you.

    #119034
    spazeinvader
    Participant

    Can you double check the code you gave me. When I try to implement the code, I get an error that says:
    “Expected a ‘FUNCTION’ or ‘IDENT’ after colon at line 8, col 24.”

    #119035
    spazeinvader
    Participant

    It’s the part of the code that says :

    Service section ko lagi:

    are you sure this is correct?

    #119041
    wensolutions
    Keymaster

    Hello,

    Sorry for the inconvenience, now you can go through the above given code.

    If you have further queries, let us know.

    Regards.

    #119085
    spazeinvader
    Participant

    When I apply that code, I am still able to click the service icons and it takes me to the page. I wanted the link to be deactivated because the pages are very thin.

    #119115
    wensolutions
    Keymaster

    Hello,

    Regarding your query about the link in the service section, you can add CSS to remove the link following the path Admin Panel > Appearance > Customize > Additional CSS

    .service-block-inner-content .know-more {
        display: none;
    }

    Hope this helps.

    Regards.

    #119147
    spazeinvader
    Participant

    That code still doesnt work.here is my site. I want the icons and images under “taking care of your business” to not have links.
    http://johnsroadbc.com/

    #119209
    wensolutions
    Keymaster

    Hello,

    Regarding your query about to remove the link in the service section, you can add CSS to remove the link following the path Admin Panel > Appearance > Customize > Additional CSS

    .service-block-inner {
        pointer-events: none;
    }

    Hope this helps.

    Regards.

Viewing 9 posts - 1 through 9 (of 9 total)
  • You must be logged in to reply to this topic.