1

I could use some hints to get rid of the SAVED content in the coupon Plugin -

Thanks in advance!

O.

1 Answers1

1

In the file widget/templates/List-Layout-1.html file you will see the following code:

<div class="col-xs-6 pull-left text-center primaryBackgroundTheme">
  <a class="whiteTheme stretch" ng- 
    click="WidgetHome.showSavedItems()">Saved</a>
</div>

You can just update it to the following:

<div class="col-xs-6 pull-left text-center primaryBackgroundTheme"> 
</div>

The widget has 4 layouts, so depending on the layout that you want to use, you need to make sure to update the appropriate template.

attila226
  • 315
  • 1
  • 13
  • Awesome, it seems to hide it, but now it leave a white field, any suggestions how to hide that, so it fits´ ? Please check some examples -> https://imgur.com/a/VxsSl3c Thank you attila! O. – Oscar Pedersen May 15 '18 at 12:34
  • @OscarPedersen For that you'd need to change the column sizes. For example you may see "col-xs-3" for all 4 columns in your example. You need to increase the number of the other columns that you want to "col-xs-4", while changing the column that you want to hide to "hidden-xs". – attila226 May 16 '18 at 14:17
  • It works with perfection! - Thank you very much @attila226 – Oscar Pedersen May 16 '18 at 21:06
  • @OscarPedersen Glad to hear it! If you're happy with the solution an upvote is appreciated. – attila226 May 21 '18 at 20:41