Close

Profile: anton_ivanov

Avatar

User posts

6 years ago

Hello,

The home page featured categories are hidden by design in the Pavilion theme. You can show them on your store by writing the following css code in the Custom Head Styles setting in Administration -> Nop-Templates -> Themes -> Pavilion -> Settings:

.home-page-category-grid {
    display:block;
}


Note: Since the home page feature categories aren't a part of the team by design you might need to write some additional styling to make them look good.

Hope that helps!

Hello,

Sorry, I failed to specify in my last post but I was talking about already created apps.
As for new apps - I tried to authenticate a new Facebook app with the Social Feed plugin on Thursday but I wasn't able to get posts to show on the public store. That's all the information I can give you at the moment.
It is currently the Easter holidays in Bulgaria and our support resources are limited. I will be able to test this again on the first working day after the holidays - 10.04.2018. I will post here again once I have more information on how to proceed with this situation.

Hello,

It seems that if you want to access information from a facebook page (one of the functionalities of the Social Feed plugin) you will need to have your app reviewed and approved.
No mention of apps that gather your own posts, however. So it seems that, atleast for now, if you want to use the Social Feed plugin to display your own publications in Facebook you won't have any problems. However, if you are displaying posts from groups or pages you will need to get your app approved.

Note: This may affect people displaying posts from Instagram as well since they use the same API.

Hello,

Thank you for reporting this!

It seems that for now, Facebook does not grant access to their users data, for new apps. This means that if you want to make a new Facebook social feed you will not be able to authorize.
Unfortunately, we cannot do anything about it since that is completely Facebook's decision. We will wait and see how they proceed in the future since this limitation is just temporary until they figure out how to handle their data leak.

6 years ago

Hello,

You can exclude the discounted products from your ribbon by creating the following conditions in the conditions tab of your ribbon:

Condition Type: Product
Condition Property: Discount Ammount or Discount Percentage
Operator: Equal To
Value: 0

Note: If your discounted products are discounted by using the Special Price you will need to create a condition like:

Condition Type: Product
Condition Property: Has Special Price
Operator: Equal To
Value: False

Note: Do not forget to clean your application cache after you adjust the settings.

Hope that helps!

6 years ago

Hello,

Unfortunately, that cannot be done. The Text Field is used to display a small text (sometimes with the help of product tokens) to notify your clients what that ribbon is. It is not made to show HTML content.

6 years ago

Hello,

In both cases, you will need to use the %Order.ProductsReviews% token. It displays all of the products from the order with links where your clients can leave reviews.

Unfortunately, it is not possible to show the link to leave a review of only one product.

Hope that helps!

6 years ago

Hello,

Unfortunately, this cannot be done from the administration of the plugin. You will need to change the code of the Social Feed plugin in order to achieve that.

You need to change the date format seperately for each social network. Please follow the examples below:

Facebook

1. Edit the ~/Plugins/SevenSpikes.Nop.Plugins.SocialFeed/Views/SocialFeedPublic/Shared/_Facebook.cshtml
2. On line 35 you will find the following code:
    

<span class="post-date">@feed.CreatedDate.Value.ToString("dd/MM/yyyy")</span>

3. Change the "dd/MM/yyyy" string that is passed to the ToString() function to "MM/dd/yyyy"

Google+

1. Edit the ~/Plugins/SevenSpikes.Nop.Plugins.SocialFeed/Views/SocialFeedPublic/Shared/_GooglePlus.cshtml
2. On line 33 you will find the following code:
    
<span class="post-date">@feed.PublishedDate.Value.ToString("dd/MM/yyyy")</span>

3. Change the "dd/MM/yyyy" string that is passed to the ToString() function to "MM/dd/yyyy"

Twitter

1. Edit the ~/Plugins/SevenSpikes.Nop.Plugins.SocialFeed/Views/SocialFeedPublic/Shared/_Twitter.cshtml
2. On line 32 you will find the following code:
    
<span class="post-date">@twitterStatus.CreatedAt.Value.ToString("dd/MM/yyyy")</span>

3. Change the "dd/MM/yyyy" string that is passed to the ToString() function to "MM/dd/yyyy"


Hope that helps!

6 years ago

Hello,

You will need to add a class name in the Theme Class Name setting in the administration of your slider.
After that you can use the Custom Head Styles setting in Administration -> Nop-Templates -> Pavilion -> Settings to write your custom CSS for that class.

Hope that helps!

6 years ago

Hello,

There is no way to disable the category item count. However, you can hide it with CSS.
You can do that by putting the following code in the Custom Head Styles setting in Administration -> Nop-Templates -> Themes -> Uptown -> Settings:

.home-page-category-grid .category-item-count {
    display: none!important;
}

Hope that helps!