i have tried and tried to add html codes in the blocks and i click save and nothing happens (firefox) i never had this problem before and i dont know what to do now..please help!!
i have tried and tried to add html codes in the blocks and i click save and nothing happens (firefox) i never had this problem before and i dont know what to do now..please help!! Damn i can't wait for Dolphin10 to be released, Its gonna be awesome :) |
did you click on html within the block then save? Make sure word wrap box is checked. And clear your cache What's that falling? its a bird, its a plane, oh wait its Facebook |
i have tried and tried to add html codes in the blocks and i click save and nothing happens (firefox) i never had this problem before and i dont know what to do now..please help!! Is this after you have updated your site? Happy Thanksgiving to all the members in America... lol ManOfTeal.COM a Proud UNA site, six years running strong! |
If its d 7.0.4 then I'm not sure what would cause this bug. I'm still on D7.0.3 I'm little hesitant to upgrade. I will wait to see.
Make sure the code you are entering is correct and don't have anything in it that would cause the Orca from not working What's that falling? its a bird, its a plane, oh wait its Facebook |
I have this same problem. I edit the html block, says it saved OK, previews on the "Page Blocks" page, clean cache or not, does not show up on the front end. When you go back to the admin "Page Block" page to look at the html block, it is empty Did you find a resolution?
This is driving me nuts |
Try Advance Add Block by Gorpus. This is free. This might work. or do this:
--> Edit inc\classes\BxDolPageViewAdmin.php
--> Look for this at about line 473:
if( $aItem['Func'] == 'Echo' ) { $aForm['inputs']['Content'] = array( 'type' => 'textarea', 'html' => false, 'attrs' => array ('id' => 'form_input_html'.$iBlockID), 'name' => 'Content', 'value' => $sBlockContent, 'caption' => $sHtmlContentC, 'required' => true, 'colspan' => true, );
--> Change to this:
if( $aItem['Func'] == 'Echo' ) { $aForm['inputs']['Content'] = array( 'type' => 'textarea', 'html' => false, //'attrs' => array ('id' => 'form_input_html'.$iBlockID), 'name' => 'Content', 'value' => $sBlockContent, 'caption' => $sHtmlContentC, 'required' => true, 'colspan' => false, ); Respectfully, Jeff |