Im trying to add the widget but its not working. Does anyone use plugrush on wordpress. If so what plugins do I need. I got it to show on pages by adding [ And ] to end of html. How can i get it to show in sidebar?
plugrush.com on wordpress
Collapse
X
-
Tags: None
-
It''s easy. Just go to widgets in wordpress and use the Text widget. Drag it to the sidebar, and paste your plugrush code there.
DivaTraffic - Traffic for Models -
Comment
-
AFAIK, WP "sanitizes" code and kills iframe code by default. You can use iframes on post or pages as long as you use the html editor and save it (and never edit) the post, otherwise anything in an iframe will disappear. Not sure about widgets, but for what you say, it seems it's the case. While annoying, it's one of the best features of WPThis post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truthComment
-
Just add it straight in the file you want it to be. For example sidebar.php or single.php from your cpanel.
I do it like that and it works...Comment
-
Im using freehost at moment. I can get any wordpress plugins installed that i need. I got it showing in pages. Is there a plugin to turn page post into sidebar.
Where is this? WP "sanitizes" code and kills iframe code by default. So I can try and have host turn it off.Last edited by esham; 09-15-2011, 04:34 PM.Comment
-
Nope, you're doomed...Im using freehost at moment. I can get any wordpress plugins installed that i need. I got it showing in pages. Is there a plugin to turn page post into sidebar.
Where is this? AFAIK, WP "sanitizes" code and kills iframe code by default. So I can try and have host turn it off.Comment
-
-
Frustrated with implementing an iframe code on your site because it keeps disappearing when you save it? WordPress strips iframes because of security concerns, but you can still use an iframe on your WordPress site by entering the code in the HTML editor instead of the visual editor.

To add an iframe code, create a new post or page and click the tab for HTML edit. Paste your iframe code and click publish and you?re all set!
But, if you try to go back and edit that post or page in the Visual editor, you?ll find that editing the post will remove the iframe code. Argh! You?ll need to open it in the HTML editor, and only the HTML editor to keep the code intact.
WordPress decides which editor to use based on which editor you last used when saving a post or a page. It usually defaults to the Visual editor because that?s what most of us use when writing. To get it to open a post in the HTML editor, create a different post draft and save it with the HTML editor open.
Then, open that post or page with iframe code and it will open to the HTML editor, preventing your iframe code from being stripped. Make your edits, then update the post or page without switching over to the Visual editor. Your iframe code will stay intact!
Hope that helps, copied from here: http://savvyblogging.net/prevent-wor...r-iframe-code/
Self-Serve Traffic Network
Adult & Mainstream Traffic
Open for everybody that wants to sell or buy traffic +
RTB/DSP/XMLComment
-
try http://www.daikos.net/widgets/daikos-text-widget/ it allows code thats not normally allowed in a standard text widgetFree traffic and backlinks from one of the fastest growing adult pinsites on the net - SAUCY PICTURES!
Easily my best performing webcam sponsor - CLICK HERE!!Comment
-
IMHO... if it's not listed on wordpress.org then I wouldn't trust, nor use it.try http://www.daikos.net/widgets/daikos-text-widget/ it allows code thats not normally allowed in a standard text widgetComment
-
try http://www.daikos.net/widgets/daikos-text-widget/ it allows code thats not normally allowed in a standard text widget
Have you used this? Or has anyone used this.Comment
-
<iframe allowtransparency="1" frameborder="0" height="580" id="plwpl198854e710c2faff2e2.61439219" scrolling="no" src="http://widget.plugrush.com/smutties.com/dsw" width="182"></iframe>
heres the html
If i change <iframe allow to [iframe allow and </iframe> to [/iframe> it will show in posts but i need it on my sidebar- txt widgetComment
-
this should do it
Code:<?php class PlugRush_Widget extends WP_Widget { public function __construct() { $widgetname = apply_filters( 'plugrush_widget', 'PlugRush Widget' ); parent::__construct( 'unfiltered_text' , $widgetname , array( 'description' => 'Plug Rush Iframe Text Widget' ) , array( 'width' => 300, 'height' => 150 ) ); } public function widget( $args, $instance ) { echo $instance['text']; } public function update( $new_instance, $old_instance ) { return $new_instance; } public function form( $instance ) { $instance = wp_parse_args( (array) $instance, array( 'text' => '' ) ); $text = format_to_edit($instance['text']); ?> <textarea class="widefat" rows="7" cols="20" id="<?php echo $this->get_field_id( 'text' ); ?>" name="<?php echo $this->get_field_name( 'text' ); ?>"><?php echo $text; ?></textarea> <?php } } add_action( 'widgets_init', 'register_unfiltered_text_widget', 20 ); function register_unfiltered_text_widget() { register_widget( 'PlugRush_Widget' ); }Comment
-
Im using a freehost at moment. Where should i have him install this?Comment
-
Comment
-
-
didn't work for sidebar txt widgetComment
-
added php code before my iframe html didnt worktry http://www.daikos.net/widgets/daikos-text-widget/ it allows code thats not normally allowed in a standard text widgetComment
-
where do i put this? can someone tell me?
this should do it
Code:<?php class PlugRush_Widget extends WP_Widget { public function __construct() { $widgetname = apply_filters( 'plugrush_widget', 'PlugRush Widget' ); parent::__construct( 'unfiltered_text' , $widgetname , array( 'description' => 'Plug Rush Iframe Text Widget' ) , array( 'width' => 300, 'height' => 150 ) ); } public function widget( $args, $instance ) { echo $instance['text']; } public function update( $new_instance, $old_instance ) { return $new_instance; } public function form( $instance ) { $instance = wp_parse_args( (array) $instance, array( 'text' => '' ) ); $text = format_to_edit($instance['text']); ?> <textarea class="widefat" rows="7" cols="20" id="<?php echo $this->get_field_id( 'text' ); ?>" name="<?php echo $this->get_field_name( 'text' ); ?>"><?php echo $text; ?></textarea> <?php } } add_action( 'widgets_init', 'register_unfiltered_text_widget', 20 ); function register_unfiltered_text_widget() { register_widget( 'PlugRush_Widget' ); }Comment
-
WordPress sucks....
Use Drupal
SEO, Canonicals, Taxonomy, Links all suck on WordPress!
Use Drupal...ISeekGirls.com since 2005Comment
-
you're doing something wrong. I used the exact same code you posted and look at the result here, it works without an issue using the text widget<iframe allowtransparency="1" frameborder="0" height="580" id="plwpl198854e710c2faff2e2.61439219" scrolling="no" src="http://widget.plugrush.com/smutties.com/dsw" width="182"></iframe>
heres the html
If i change <iframe allow to [iframe allow and </iframe> to [/iframe> it will show in posts but i need it on my sidebar- txt widgetThis post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truthComment
-
I need to install a script or change a setting. Iframes is disabled i've read it everywhere. I copyied that code into txt widget.Comment
-
Man, I was the one that told you that at first, but seeing that none of the options work for you (and at least one should) the only explanations are: a) you're doing something wrong or b) your host sucks balls and has some kind of code protection. So, the only solutions I can see are:
a) really check twice what you're doing. I'd bet money the problem is in your side
or
b) ask your host what's going on and change host if needed
or
c) drop plugrush
there isn't really much options
This post is endorsed by CIA, KGB, MI6, the Mafia, Illuminati, Kim Jong Il, Worldwide Ninjas Association, Klingon Empire and lolcats. Don't mess around with it, just accept it and embrace the truthComment
-
wp-content/plugins/widgets do i just name it and put in folder? Do i need to install it somehow?Comment
-
Your free host is probably blocking iframes.Your Paysite Partner
Strength In Numbers!
StickyDollars | RadicalCash | KennysPennies | HomegrownCashComment
-
Comment
-
-
Comment
-
I don't know how he did it. How should he of done it? I will email him it. The placeing it in plugin directory was my idea. Id imagine he did it the correct way. I'm new to wordpress. What ever happend some of the other widgets now disapear even with a brand new subdomainComment
-





Comment