Skip to content

Commit

Permalink
fix: homepage not working (#38755)
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitwaghchaure authored Dec 14, 2023
1 parent e7e23fb commit d6201ce
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
8 changes: 0 additions & 8 deletions erpnext/portal/doctype/homepage/homepage.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,6 @@
// For license information, please see license.txt

frappe.ui.form.on('Homepage', {
setup: function(frm) {
frm.fields_dict["products"].grid.get_field("item").get_query = function() {
return {
filters: {'published': 1}
}
}
},

refresh: function(frm) {
frm.add_custom_button(__('Set Meta Tags'), () => {
frappe.utils.set_meta_tag('home');
Expand Down
20 changes: 20 additions & 0 deletions erpnext/templates/pages/home.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,26 @@ <h3 class="d-block d-sm-none">{{ homepage.description }}</h3>
{{ render_homepage_section(homepage.hero_section_doc) }}
{% endif %}

{% if homepage.products %}
<section class="container section-products my-5">
<h3>{{ _('Products') }}</h3>

<div class="row">
{% for item in homepage.products %}
<div class="col-md-4 mb-4">
<div class="card h-100 justify-content-between">
<img class="card-img-top website-image-extra-large" src="{{ item.image }}" loading="lazy" alt="{{ item.item_name }}"></img>
<div class="card-body flex-grow-0">
<h5 class="card-title">{{ item.item_name }}</h5>
<a href="{{ item.route }}" class="card-link">{{ _('More details') }}</a>
</div>
</div>
</div>
{% endfor %}
</div>
</section>
{% endif %}

{% if blogs %}
<section class="container my-5">
<h3>{{ _('Publications') }}</h3>
Expand Down

0 comments on commit d6201ce

Please sign in to comment.