Support Forum

For all questions related to themes and plugins!

Enter search keyword e.g. "footer color".

  • Registration is Required

    Registration is required to post questions to support forum. ThemeForest buyers also need to obtain Purchase code to be able to post on forum.

    Please read here how to obtain Purchase code.

#258
Robert Kavgić
Participant

Hello.

The best solution would be to create child theme of metropolis, and add custom jquery code to it ()

The code you should add is:

$("section.service-box-2 > div.read-more-btn, 
section.service-box-1 > div.content > div.read-more-btn").remove();

Another way is to modify shortcodes.php at line 831 and delete the following block of code:

<div class='read-more-btn'>
    <a href='{$service_link_to}'>{$read_more}</a>
    <span class='plus'>+</span>
 </div>

The upper code is for service-box-2, and the following is for service-box-1. Delete the following block of code at line 855:

<div class='read-more-btn'>
    <a href='{$service_link_to}'>{$read_more}</a>
    <span class='plus'>+</span>
</div>";

If you add display: none to the .read-more-btn class, you will remove all the read more buttons on you website. It is better just to remove them in service-box-1 and 2.

For all the future theme modifications, please hire a freelancer or someone who is able to solve your requests, as we only provide support for bugfixes and similar, not theme modifications.

Robert