Skip to content

update For latest Version #35

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: 4-50-develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Nop.Plugin.Widgets.SwiperSlider.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
<Copyright>Copyright © code is life</Copyright>
<Company>code is life</Company>
<Authors>code is life team</Authors>
Expand Down
4 changes: 2 additions & 2 deletions SwiperSliderPluginProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ public async Task<IList<string>> GetWidgetZonesAsync()
return await Task.FromResult(new List<string> { PublicWidgetZones.HomepageTop, PublicWidgetZones.ProductDetailsTop });
}

public string GetWidgetViewComponentName(string widgetZone)
public string GetWidgetViewComponent(string widgetZone)
{
return "SwiperSlider";
return typeof(SwiperSliderViewComponent);
}

public Task ManageSiteMapAsync(SiteMapNode rootNode)
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"FriendlyName": "Swiper Slider",
"SystemName": "Nop.Plugin.Widgets.SwiperSlider",
"Version": "4.50.1",
"SupportedVersions": [ "4.50" ],
"SupportedVersions": [ "4.70" ],
"Author": "code is life team",
"DisplayOrder": 1,
"FileName": "Nop.Plugin.Widgets.SwiperSlider.dll",
Expand Down