bubazoo
Forum Replies Created
-
Forum: Plugins
In reply to: Twitter Tools 1.0 problemsfirst I tried changing
$output = '<div class="aktt_tweets">'."\n" .' <ul>'."\n"; if (count($tweets) > 0) { foreach ($tweets as $tweet) { $output .= ' <li>'.aktt_make_clickable(wp_specialchars($tweet->tw_text)).' <a href="https://twitter.com/'.$aktt->twitter_username.'/statuses/'.$tweet->tw_id.'">'.aktt_relativeTime($tweet->tw_created_at, 3).'</a></li>'."\n"; } } else { $output .= ' <li>'.__('No tweets available at the moment.', 'twitter-tools').'</li>'."\n"; } $output .= ' <li class="aktt_more_updates"><a href="https://twitter.com/'.$aktt->twitter_username.'">More updates...</a></li>'."\n" .'</ul>';
to
$output = "\n"; if (count($tweets) > 0) { foreach ($tweets as $tweet) { $output .= aktt_make_clickable(wp_specialchars($tweet->tw_text)).' <a href="https://twitter.com/'.$aktt->twitter_username.'/statuses/'.$tweet->tw_id.'">'.aktt_relativeTime($tweet->tw_created_at, 3).'</a>'."\n"; } } else { $output .= __('No tweets available at the moment.', 'twitter-tools'). "\n"; } $output .= ' <a href="https://twitter.com/'.$aktt->twitter_username.'">More updates...</a>'."\n";
to get the div, ul, li tags out of the plugin causing the problem,
but that ended up breaking the plugin, so I don’t know what else to try?and unfortunately I haven’t found another twitter plugin that replaces this yet that will work instead, except for twitt-twoo, which isn’t PHP 4 compatible.
Forum: Plugins
In reply to: Twitter Tools 1.0 problemserra, what I mean is, I tried changing
<ul class=”dbx-content”> </ ul >
to<div class=”dbx-content”> </div>
that didn’t work, its still pushing the twitter text too far over to the right insde dbx-content, in the sidebar.
its because there are ul li tags inside the ‘aktt_sidebar_tweets’ function, I know that much.
I tried removing the ul li tags from the aktt_sidebar_tweets function from within the plugin, and that broke the plugin for some reason, so I thought maybe I could put a CSS code in there to make it not push the text over to the right when it encounters a ul li tags, but I don’t know how to code that in CSS? Does anyone know how to do that?
Forum: Plugins
In reply to: Twitter Tools Breaks ThemeThere’s another Twitter plugin, but it only works in PHP5, so I’m currently on the lookout for another one at the moment.
Forum: Plugins
In reply to: Twitter Tools Breaks Themedon’t know, but having exact same problem. and alexking’s website has been down for many months, so we can’t get support either.
I’m thinking alot of it, has to do with some funky things in his code. Its displaying ul li ul li twice, which is probably whats breaking it.
Forum: Plugins
In reply to: RSS Feed into WP page or postI’ll do that HandySolo, thanks,
cuz that KQF 1.7.4 plugin didn’t have ANY documentation WHATSOEVER on how to customize the layout of it.Forum: Plugins
In reply to: RSS Feed into WP page or postthanks. I tried googling first before I asked, but wasn’t able to find much in the way of external RSS. I asked in the wordpress IRC channel, but they misunderstood me, and thought I was talking about wordpress’s RSS, so I didn’t get very far with them either.
so I thought I would try to ask here.
thanks
Forum: Everything else WordPress
In reply to: For those who need a “sticky” sort of messagepersonally, I think this should have been written into WordPress anyway.. like under the wite post page somewhere.
to sticky a post. like put it in the write post page, on the right side there. I don’t think that option would be asking too much at all.
but thats just my opinion.
Forum: Everything else WordPress
In reply to: For those who need a “sticky” sort of messageputting a <?php include …
into my template, breaks my template execution. I’ve tried that before, don’t work.
..and yes I put it outside the loop, just after the body tag to be exact, right after the header stuff.
besides, I didn’t create my template, someone else did, so I don’t have a clue how to style a .php file look like an entry up on top. I have no idea what styling he used for that.
I’m using the “simple green” template
Forum: Plugins
In reply to: Adhesive plug-in unavailablewhat was vkaryl’s suggestion??
not everybody has the entire forum memorized.. heh.
Forum: Plugins
In reply to: Adhesive Plugin Has Problems with WordPress 2.1or can someone suggest an alternative?
a linky to an alternative would be helpful ??
Forum: Plugins
In reply to: Issues with wp-contact-form and WordPress 2.1I’m having similar issues with WP 2.1 not rendering XHTML correctly, and I don’t have either of these plugins installed.
so I don’t think its the plugin itself thats the problem.
I ended up using WP-Grins instead, which seems to work well
Forum: Installing WordPress
In reply to: Errors with formatting.phpUpgrading to more-smilies 2.1 (latest version) fixes this problem in the posts
however, this error still exists in my AJAX Shoutbox from
https://pierre.sudarovich.free.fr/ah ha!
figured out the problem!
Pierre’s AJAX Shoutbox plugin,
https://pierre.sudarovich.free.fr/is conflicting with
More-Smilies 3.3 plugin
https://mattread.com/projects/wp-plugins/more-smilies/darn plugins already LOL
now I just have to figure out if there is another plugin LIKE more-smilies that won’t conflict with the shoutbox, hrm.
Forum: Everything else WordPress
In reply to: Change in schema for 2.1?ah ha!
figured out the problem!
Pierre’s AJAX Shoutbox plugin, is conflicting with More-Smilies 3.3 plugin
darn plugins already LOL
now I just have to figure out if there is another plugin LIKE more-smilies that won’t conflict with the shoutbox, hrm.