luckdragon
Forum Replies Created
-
Forum: Plugins
In reply to: Widget Logic If user doesn't have an Avatarit’s not that there’s a problem, it’s that there are many different ways to add avatars to WP, so I was trying to determine which way you were using so that I might be able to help you as efficiently as possible (i.e. the more information you give, the easier it makes it on others)
are you trying to show the widget depending on whether or not the “reader” has an avatar?
Forum: Hacks
In reply to: an issue with a wordpress plugin calling external shortcodesI misspelled it in my code, that might be why you’re getting the fatal error, I had mommbly_rating_addRating rather than mombly_rating_addRating
but at least you got something figured out on it.
Forum: Hacks
In reply to: an issue with a wordpress plugin calling external shortcodesinstead of:
<strong>Overall</strong>: [Rating:<?php echo $overall_value_formatted ?>/5]you can try doing something like:
<?php $line = '<strong>Overall</strong>: [Rating:'.$overall_value_formatted.'/5]'; $line = mommbly_rating_addRating($line); echo $line; ?>Forum: Hacks
In reply to: an issue with a wordpress plugin calling external shortcodestry reading the other thread you opened on this.. I answered it there
Forum: Fixing WordPress
In reply to: Fatal Error, can't access wp-admin anymore!unfortunately you’d have to find that out from your hosting company.
Forum: Plugins
In reply to: Widget Logic If user doesn't have an Avatarwell, first off, how/what are you using to add avatars to your WP?
Forum: Plugins
In reply to: using sweet captcha in template filewhat is the code echoing? also, do_shortcode does an echo of it’s own, so you are basically saying “echo echo”;
Forum: Fixing WordPress
In reply to: Won't upload images anymoreare you sure you haven’t gone over the quota of your hosting account? that would stop files from being uploaded also.
Forum: Fixing WordPress
In reply to: Why is my database growing so much?there are a lot of plugins that I’ve found that will create database tables, or “options” that when deactivated, will not remove them.
Forum: Fixing WordPress
In reply to: do_shortcode prints the shortcodealso, asg, this forum is hard enough to get around in, creating multiple topics for the same problem doesn’t make it any easier
Forum: Fixing WordPress
In reply to: do_shortcode prints the shortcodeactually alchymyth, in this situation, that IS a shortcode that the guy has defined. quoting his readme: “The format to add a rating is simply just [Rating:3.5/5]”
what asgsoft neglected to mention is that he’s trying to use the shortcode of one plugin in the output of another plugin. the easiest way to do that is to call the function that the “shortcode” is supposed to call.
In This instance.. he should create the output as he is, then, before he echos it, call: $output = mombly_rating_addRating($output);
then echo it.
Forum: Fixing WordPress
In reply to: Fatal Error, can't access wp-admin anymore!sounds like you need to manually delete the nextgen-gallery plugin
Forum: Fixing WordPress
In reply to: insering database into a sitehttp://www.darrenhoyt.com/2009/12/22/creating-custom-wordpress-widgets/
that was one of the better demos I found on creating a custom widget
Forum: Hacks
In reply to: an issue with a wordpress plugin calling external shortcodesdid you ever try calling the function that the shortcode calls rather than calling the shortcode itself?
Forum: Hacks
In reply to: an issue with a wordpress plugin calling external shortcodeshopefully that will help you 🙂