Hazel Z.
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Need a poke in the correct directionTry reverse engineering. Choose an existing theme (lots of free themes out there) and tinker with it. That’s how I started with WordPress. ??
Forum: Plugins
In reply to: [More Fields] More Fields (2.1) incompatible with WP 3.3I am using the More Fields plugin too in most of my sites. I have upgraded to WordPress 3.1.1 and I do not seem to have the issues discussed on this thread. Everything works fine on my sites…
Except for one site wherein I cannot get the get_post_meta($post->ID, $key, true); function to work in functions.php with More fields. More info about this issue: https://www.ads-software.com/support/topic/more-fields-plugin-get_post_meta-function-not-working-in-functionsphp?replies=1
Forum: Fixing WordPress
In reply to: Need Assistance! Help is appreciated…I have tested it in all major browsers (IE9, Chrome, Firefox, Safari, Opera) and different desktop computers. Looks fine on my end.
Forum: Fixing WordPress
In reply to: Need Assistance! Help is appreciated…Hi! Thank you for the response. He said he is using Chrome.
Forum: Plugins
In reply to: WP Responder messes up Post Editor on DashboardUpdate: It appears the problem only happens when there is no newsletter or autoresponder created yet. Once you create a newsletter, the CSS falls back into place.
Forum: Plugins
In reply to: WP eStore Shortcode Help (PHP required)Found the solution. Here it is:
<?php $productkey = get_post_meta($post->ID, 'wp-product-id', true); ?> <?php echo get_button_code_for_product($productkey); ?>
Forum: Fixing WordPress
In reply to: All Posts are shown even when querying only a certain post taxonomyThank you so much! That worked! Do you happen to know what should be the right code if I want to call up pages in a certain page taxonomy? I originally wanted this to be a page taxonomy but instead of the pages, the posts show up so I decided to make it a post taxonomy instead. Thanks. ??
Forum: Fixing WordPress
In reply to: How to let my site visitors plot their location in a Google Map?Well… I did the search already. Most of the plugins are not doing the functionality that I want.
I’d appreciate it if you can recommend a specific plugin. Thanks.
Forum: Fixing WordPress
In reply to: How to allow HTML tags in commentsI’m using WordPress 2.7. Is there a workaround so I can use HTML in comments?
Forum: Fixing WordPress
In reply to: endless redirect loop when trying to access admin systemThis is really weird. I was editing one of my posts when suddenly, I could no longer access my site (Redirect Loop problem). After restarting my computer same thing happened. I could no longer access the admin panel either. What I did is delete the Redirection Plugin using my ftp access. It worked.
What do you think happened?
Forum: Fixing WordPress
In reply to: Show Logged-In Usernameshi. i discovered this code. you might want to try it if you are still looking for the answer.
<?php if (is_user_logged_in()){
global $current_user;
get_currentuserinfo();
echo (‘Welcome back, ‘ . $current_user->display_name . “\n”);
}
else {
echo “Welcome, Guest”;
};
?>!Forum: Fixing WordPress
In reply to: Cforms II problemhi lamisto. what’s your exact concern? i’m using WP 2.7 too. cform II works except the captcha. it’s not showing.
Forum: Plugins
In reply to: Cannot turn off YARPP for Feedsi resolved it. just uncheck all the options under YARPP for feeds then uncheck “Display related posts in feeds?”. that should do it.
Forum: Plugins
In reply to: Problem with Headspace2 plug-inyes that’s right and place it before the </body> tag.
Forum: Plugins
In reply to: Please Help: Is the recaptcha issue not resolved yet?solution: i set the CAPTCHA setting in Register Plus to “none”. Since I have the reCAPTCHA plugin installed, it automatically adds the recaptcha to my forms. hope this helps.