Close

Profile: Boyko

Avatar

User posts

10 years ago

[email protected] wrote:

Alternatively you can put this script into a file on the server and simply import it.
This way you only need to make sure the file is uploaded on the server after an upgrade (or update) to the site.

Boyko - Can you elaborate on this.  Obviously I understand putting the script in a file, but what method specifically do you mean when you say to "simply import it."  Are you implying this can be done thru HTML widgets, via altering the CSHTML file, or thru other means.  

Again, my goal here is to allow our customers to maintain these scripts themselves without us needing to get involved.  That was the whole benefit of using HTML Widgets in the first place.

Thanks!


Hi [email protected],

My idea was to have the script into a separate file but obviously you don't want this.
The HTML widgets are designed to insert HTML and that is why they are using the Html Editor.
The Html Editor does not allow you to put script in it and it is escaped.
Why don't you try to put the scripts in the Google Analytics plugin? It allows you to place javascript, so it looks like a good place to put your remarketing script.

Thanks

Buy 1 click
10 years ago

gnikspam wrote:
Not change and add a module that would allow without ordering an inquiry to the owner of the store. Many do not want to issue an order through the basket.


Hi gnikspam,

So you are suggesting some new feature. Please add your idea in our UserVoice portal.

Thanks

Buy 1 click
10 years ago

gnikspam wrote:
hi

is it possible to make the module order in 1 click. That is what would popup and you had to type the name and phone number.


Hi gnikspam,

I am not sure I understand what exactly you want us to change.
Are you talking about the Ajax Cart plugin or the Quick View plugin (these plugins have popups)?

Thanks

10 years ago

vaheyev wrote:
Hello there, this issue is getting very serious!! I have simulated the issue in my local environment and it happened again. I have installed the new version of nope 3.40 as a new installation in my local PC and installed the theme but still I am having the following!!

Server Error in '/' Application.


Hi vaheyev,

We will reply to you in our ticketing system as we want your site credentials to remain private.

Thanks

10 years ago

jburke wrote:
I just finished upgrading our site to 3.40. When downloading Smart theme, there is a zero byte (empty) upgrade script for upgrading to 3.4. After upgrading my product ribbons nor ajax filters seem to function.


Hi jburke,

This time our upgrade script is empty. We have left it for consistency only as almost every upgrade you need to run it (no matter if it is empty or not).
Are you upgrading from 3.3 to 3.4?
You need to uninstall and then install the Ajax Filters plugin as described in the upgrade steps.
I don't see any reason why the Ribbons are not working. Please let us know what exactly is not working with the Ribbons?

Thanks

t.ent wrote:
How is the specification filter getting the list of specifications to display?
Is it using standard nop service methods or custom logic in the compiled plugin code?


Hi t.ent,

We use our own custom logic to build the list of specifications.

Thanks

10 years ago

deselt wrote:
thank you for the quick fix. you guys are the best.
all the paging issues are fixed.

just quick note: when you unzipping your theme file. Avast antivirus declaring your SevenSpikes.Nop.Plugins.AjaxCart.dll file as the thread Win32:Evo-gen


Hi deselt,

I don't know why the antivirus says so but we can guarantee that our plugins are not a threat for your computer. I guess this is because we do obfuscate the plugins and that might be the reason it thinks it is a threat but who knows how this anti-virus program works exaclty.

Thanks

10 years ago

jburke wrote:
http://imgur.com/tMdEYSu

I still have this problem...any solution or ideas why this is happening? I'm running nop 3.2, Smart theme, 3.21 plugins. Any help would be greatly appreciated.


HI jburke,

By looking at your screenshot I can see that you probably have - 1 picture uploaded (the green one) + text added "New" + some css styles added in the css boxes for the Ribbon.
I don't know what you need but you can either remove the picture or remove the text and the styles. This way either only the picture will be shown or the text with the styling (blue circle).

Thanks

10 years ago

sdvariations wrote:
Hi, I would like to add in my smart theme the lavella header. I would like to have both the banner and the 2 side banner, how do I accomplish that?  I have the ultimate theme bundle.

Is it possible to pay someone?

Thank you!


Hi sdvariations,

The mark-up of the Lavella theme is this:

      
 <div class="home-page-top-banner-wrapper">
            <div class="slider-left">
                @Html.Widget("home_page_main_slider")
            </div>
            <div class="banners-right">
                <div>@Html.Widget("home_page_right_banner_1")</div>
                <div>@Html.Widget("home_page_right_banner_2")</div>
            </div>
        </div>


You can create similar structure and put some images in these widget zones.
Just make sure you have these new widget zones added in the SupportedWidgetZones.xml file in the Anywhere Sliders plugin folder.
Then you have to style it properly via CSS or copy the styles from Lavella theme.

Thanks

10 years ago

[email protected] wrote:
Our customer is trying to add a Google remarking script to their site via the HTML Widgets plugin. We tell them they can add scripts via the HTML Widget -> Tools -> Source Code <> option.  They are using the body_end_html_tag_before zone.  

...

https://support.google.com/tagassistant/answer/2978937?ref_topic=2947092#cdata_comments

Id really like to avoid having to add this to any CSHTML files since a) this puts scripting back in our court as opposed to letting our customers maintain this info themselves, and b) this complicates upgrades.

FWIW we are seeing similar issues on other 3rd-party scripts as well.  Any thoughts on how to handle this?


Hi [email protected],

Everything added into the editor is escaped. That is why you can't add scripts into it.
It is a good idea to use CDATA to add script into the Html editor as otherwise it will not allow you to do so but anything outside the CDATA will be escaped.
Alternatively you can put this script into a file on the server and simply import it.
This way you only need to make sure the file is uploaded on the server after an upgrade (or update) to the site.

Hope this helps!