Srikant Aggarwal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Alter the wording of email contentYeah, I checked on google but didn’t get any appropriate solution. Could you help me??
Forum: Fixing WordPress
In reply to: Alter the wording of email contentThank you jaycbrf for informing me about the plugin. It could really help. But is any method available so I could done it in the custom way rather than using any plugin??
Forum: Fixing WordPress
In reply to: Create a tickercould you help me regarding making the animation effect of a ticker which will move from right to left & it could be paused on mouse hover? And also, Ticker data doesn’t need to persist so once shown and moved out of view it can be discarded.
Forum: Fixing WordPress
In reply to: Create a tickerCould I send you this file if you want to? Please provide your email?
Forum: Fixing WordPress
In reply to: Create a tickerFor eg, we click the particular event, so in this following code I used:-
$.ocNotify.info(‘List filtered by ‘+filter_value+’.’);
and in the octnotify.js file:-info : function(msg,params){ return this.add(msg,'info',params); }, add:function(msg,type,setting){ var params = {}; if(typeof msg==="object"){ params = msg; }else{ switch(typeof type){ case 'object' : params = $.extend(type,{msg:msg}); break; case 'function': params = {msg:msg,callback:type}; break; default: switch(typeof setting){ case 'object' : params = $.extend(setting,{msg:msg,type:type}); break; case 'function' : params = {msg:msg,type:type,callback:setting}; break; default: params = {msg:msg,type:type}; } } } return this.create(params); },And in the create object :-
one variable i.e var $domItem = this._domConstruct(itemId,msgStr) ; from this list is filtered.- This reply was modified 6 years, 10 months ago by Steven Stern (sterndata).
Forum: Fixing WordPress
In reply to: Create a tickerThe Flash messages functionality comes from the custom jquery plugin i.e. ocNotify.js.
Forum: Fixing WordPress
In reply to: Create a tickerI want to create a ticker for flash messages. For eg. You have changed the status of a particular field than a flash message will appear in footer i.e. “Your status has been changed”. It’s basically animated from RIght to the left direction.
FOllowing goals I need to be fulfilled.
1. The flash message moves from right to left in the footer.
2. It can be paused on a mouse hover.
3. Ticker data doesn’t need to persist so once shown and moved out of view it can be discarded.Thanks in advance