Close

Profile: bsgcraft

Avatar

User posts

4 years ago

Yeah that is what I was afraid of.  Not sure how quickly they can update the plugin but I may have to look for alternatives.

4 years ago

I have recently purchased the social feed plugin and the documentation shows instructions on how to register a new client from the Instagram developer's portal, however, Instagram has disabled this feature and has moved to integration using facebook's developers API for this.  It appears the plugin connection is no longer up to date.  

The old URL shows Instagram will be disabling the API on March 31st 2020 and they are not allowing any further clients to be created at this time.  https://www.instagram.com/developer/

They point to using this API now.
https://developers.facebook.com/docs/instagram-basic-display-api

Do you have any further instructions on how the plugin settings need to be created to allow for this API update?

I am currently using Nop 3.9.

4 years ago

bump*

4 years ago

Ok just a follow up on this, I have disabled the "popup login" setting in the theme and it seems to work now with my changes done in the customercontroller.cs file.  Is there a way to make this work with the popup login option enabled?

4 years ago

When a customer logs into the website, they always get redirected to the home page. I am trying to modify this so that once they login, they are then redirected to the /customer/info page of their account.  I have read in some forms this was a theme issue not a nopcommerce issue but I am not sure how to fix this.

I tried all these calls in the customercontroller.cs file:

//   return RedirectToRoute("CustomerInfo", new { controller = "Customer", action = "Info" });
//   return Redirect("customer/info");
//   return RedirectToRoute("customerinfo", new { action = "Info" });
//   return Response.RedirectToRoute("CustomerInfo");

they all invoke info customer call and view
but in all efforts, the redirect to the home page gets invoked

I also have modified info.cshtml
@using (Html.BeginForm("Info","Customer",FormMethod.Post, new { data_ajax = "false" }))

But still no luck at all.  Any assistance would be appreciated.



4 years ago

I think it would be a big addition to be able to use this for NEWS items as well as BLOG items - or just create a new plugin which showcased NEWS items instead.

5 years ago

Yes I have and it is checked.  If you look in the developer tools the console shows only the URL of the home page as an image which does not make sense. I have never see that before.  Maybe you have some insight?

5 years ago

Our site at bsghandcraft.com is stating the site is not secure only on the home page.  For the life of me I cannot seem to figure out why that is.  Any way you can assist me with this?

6 years ago

I believe I have solved the issue. I needed to restart the application.

6 years ago

I am having an issue creating new widget zones for this plugin.  What I have done so far is added the widget zones in the supportedwidgetzones.xml file and now they show up in the dropdown within the plugin. I am able to assign a html widget to the zone I created. I then added @Html.Widget("custom-widget-zone") within a new shared view called _ColumnsTwoCA and I also created a new topic template to use this view.  I then added this new template to the topic template and mapped it so I can assign the topic page to this template.  However the content is not rendering where I place this code. I know I have everything set up because if I set the HTML Widget to main_column_after and then replace @Html.Widget("custom-widget-zone") to @Html.Widget("main_column_after") the content is displayed.  What am I missing?