Active
Project:
Embed widgets
Version:
6.x-1.0-rc1
Component:
User interface
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
2 Mar 2010 at 19:08 UTC
Updated:
3 Nov 2012 at 05:51 UTC
Jump to comment: Most recent file
Comments
Comment #1
ecpl commentedComment #2
ecpl commentedComment #3
ecpl commentedOk. I know why.... some tags appear because the module devel theme is active else it's ok
Comment #4
Yadavan-1 commentedHi,
I have created a sample view and added display block. In Embedded widget i added new source and created widget but here is not displaying my widget at live preview and other websites also...
Any body help me how to show my widget at live preview.
Thanks
Comment #5
DrupalShark commentedI am having the same problem, In Embedded widget i added new source and created widget but it is not displaying my widget at live preview and other websites when i paste the embed code it spits out. I attached screen shots, did anyone ever get this figured out and can help me with this. Thanks in advance.
Comment #6
bcobin commentedSame problem here. Did anyone ever figure this out? Setting back to active insofar as it doesn't seem to be fixed for DrupalShark nor me - thanks!
Comment #7
joberg commentedsubscribing
Comment #8
joberg commentedOk found the problem,
It has to do with the Tabs module. This module adds the class "drupal-tabs js-hide" and js-hide has "display: none". So you have 2 options (I tried both and they work on Drupal 6.22)
1.- Go to tabs.module and around line 57:
Remove js-hide from this code:
$element['#attributes']['class'] = (isset($element['#attributes']['class']) ? $element['#attributes']['class'] .' ' : '') .'drupal-tabs js-hide'. (isset($element['#tabs_navigation']) && $element['#tabs_navigation'] ? ' tabs-navigation' : '');2.- Override the css style
.cron-check-processed div.js-hide{display: block !important;}. This is the option I left because it affects only the widget tabsBy the way I had to use 2 patches and this workaround to make this plugin work...
Feel free to close this issue If this solution works for you
Regards,
James
Comment #9
sv2109 commentedIn my case the module does not display anything on loсalhost but on a normal website (like mysite.com) everything is working fine
Comment #10
lury commentedIMHO its better to remove dependency to tabs module - in code theres an "if" in case tabs is missing and widget is displayed correctly.
Comment #11
Edward.H commented#8, remove "js-hide" works like a charm for me ,thanks