I want to know if somebody know if it possible to create a dynamical dashboard. By dynamical, I want to say, a dashboard that displays the different widgets depending on the results that have changed from the previous execution .
For example, if the lines of source code comments have greatly diminished , it result appears first in the dashboard. The user can see the detail in first.
Thank you If you know help because I don't find an issue at it problem.
Thank you
No, widgets are not positioned dynamically.
Related
I want to create a new text field right under the SKU text field in the Product Information > General tab and populate it with the product's attribute set value. What I want can be seen in the picture below.
Unfortunately, for the past 4 hours I have been trying to locate the file that includes the code which produces the specific layout but so far I had no luck. I 'd be really grateful if anyone could give me a heads up.
Thank you for your time!
Enable backend path hints to find out which file it is. You can do it this way.
http://www.classyllama.com/development/magento-development/enable-templateblock-hints-in-admin-panel
Please note this is basically hacking. A better way to do it would be to follow something like this
http://www.marketingadept.com/blog/2014/01/magento-developers-add-a-custom-field-to-the-category-admin-page/
It's up to you, speed or do it the right way. Goodluck
I need a bit help about as follow:
Into the "profile" page is present the cover image. This is visible only into the "profile" page. What I'm trying to do is to insert the cover image into ALL other pages too (home, friends, members, ext...). Into "template.html.php" file I found the reference to the module, that is: {module name='profile.logo'}
By following the path, I also found the two files: "logo.html.php" and "logo.class.php".
I've been able to edit the cover's position and size too, but any way after many attemps I haven't been able to make the cover visible on ALL other pages.
Can someone of you guys help me please?
Thank you very much!
How about making a block and placing it in position 9 or 7?
Another way might be editing template.html.php and removing the conditional to always display profile.logo regardless of controller
Ps im at my phone its 1:40am and i cant see the code right now
I’m scratching my head over this one as I can’t quite figure out what’s going on.
The Specifications tab is supposed to show all the attributes for these two products, but there’s nothing shown here:
http://www.centurioncctv.com/index.php/outlet/recordersoutlet/hd16p.html
http://www.centurioncctv.com/index.php/outlet/recordersoutlet/hd08p.html
These two products are in the Digital Recorders Attribute set, just like the rest of these DVRs on other pages...
All of these DVRs show Specifications (Additional Data) correctly.... but why only on the two pages above nothing would show...?
Please share some ideas with me…
I’ve tried recreating the product (not duplicating), but the result is the same.
Does anyone know where to start? I know that it has something to do with view.phtml… or something. Or is it that perhaps the folder in which the attributes are stored have wrong permission?
Does anyone know where to look for permission status for certain products’ attributes??
I also added “Downloads” and they are also not shown…
Anyone? Please help?
Thank you!!
The additional attributes are actually rendered if you look at the generated page source. There seems to be a <div> nesting error in the description content, so the javascript selector to show the attributes doesn't work correctly.
I suggest cleaning up the HTML for the description, and the other tab should start working again.
Does anyone know where I could find a FREE module that displays articles along with images on multiple columns like here http://raxo.org/demo.html ?
I've been on this for a few days now, I just know there is something out there..
Thanks!
Try Gavick News Show Pro. http://tools.gavick.com/newshowpro.html
Eventually, back then, I edited the template myself. Couldn't find a module that did exactly what I wanted.
Hi I wish to set the Column values for my grid using setColumns(). Now I don't know how to use the said function.
Can someone help me with this?
Thanks
-Jason
I already know how to use columnChooser. But what I want to happen is to set the grid depends on per users preference. I mean, per customer has its own default columns to be displayed that is saved in the database.
So now, once the page load per customer, the columns for that customer will be the one to be shown on the screen. So I need something that can do this when the page loads. And so far the only option is setColumn (even setcolumn is not the best option).
Do you have anything to offer?
Please help.
Thanks
The setColumn method is old and is not more supported started with jqGrid 4.0.0. You can include grid.setcolumns.js from the plugins directory to use setColumn, but I don't recommend you to use it.
You should use more powerful columnChooser method instead. I recommend you to look at the following answer which describes how to use columnChooser.