renato_s
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Thumbnail on mouseoverTry setting the image as a background for the hover property in css. If, say, “apple” is in a <p> tag, maybe you can set the image as background to p:hover. You would need a Class “apple” also.
Forum: Fixing WordPress
In reply to: Interrupted plugin updateThanks! That worked.
Forum: Fixing WordPress
In reply to: I want search bar to only show on main pageIf the search box is a widget, you must use a plugin such as widget logic. In the search widget option put
is_front_page(). Note that this only applies if you used a widget to insert the search box (Appearance > Widgets > drag the box to the sidebar).
http://ww.wp.xz.cn/extend/plugins/widget-logic/If the searchbox is hardcoded to your theme, you have to locate the code (most likely it’s in sidebar.php, judging by what you said) and:
Put
<?php if ( is_front_page() ) { ?>
before it starts……and
<?php } ?>
after it.Forum: Fixing WordPress
In reply to: I want search bar to only show on main pageIt depends on where is your searchbox (header, sidebar, etc.) in your theme.
Once you find the code, use conditional tags to show the search box only in the homepage:
<?php if ( is_front_page() ) { // Search box code } ?>Forum: Fixing WordPress
In reply to: Adding tags in batch to postsForum: Fixing WordPress
In reply to: How to access the source code of my blog siteOps! Didn’t see doodlebee’s message. It explains everything.
Forum: Fixing WordPress
In reply to: How to access the source code of my blog siteThe easiest way is to install a plugin to handle Adsense for you:
http://ww.wp.xz.cn/extend/plugins/advertising-manager/If it doesn’t solve your problem, you can try creating a page in WordPress dashboard and pasting the required text in it, just like a normal post or page.
Then, grab its url and paste it in the appropriate field.
To access the source of your site, edit your theme files. But I don’t think it will be necessary.
Forum: Fixing WordPress
In reply to: how to make posts go to their assigned categories???That’s the default WP behavior. All posts go to the home page, regardless of their categories. If you want to exclude categories from the home, please visit this link:
http://codex.ww.wp.xz.cn/Template_Tags/query_posts#Exclude_Categories_From_Your_Home_PageForum: Plugins
In reply to: [Plugin: Contact Form 7] Making required fields conditionalSince it is GPL I think it’s not inappropriate to share a torrent link (moderators, please delete this post if I’m wrong):
http://thepiratebay.org/torrent/5781606/Gravity_Forms_1.3.13.1The disclaimer says:
Copyright 2009 rocketgenius
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.Forum: Plugins
In reply to: Alternatives to cForms and Gravity FormsI think the duplicate issue is independent of the plugin you’re using. I have the same problem with the usual wordpress comment system. YOu can check this thread:
http://ww.wp.xz.cn/support/topic/how-to-disable-duplicate-comment-fileter?replies=3Forum: Plugins
In reply to: [Plugin: Contact Form 7] Making required fields conditionalhi, crashnet!
The plugin page says it’s GPL:1. Plugin Licensing
Gravity Forms PHP is licensed under the GNU general public license (http://www.gnu.org/licenses/gpl.html).
Forum: Themes and Templates
In reply to: How to add more header images to defaultThis link helped me out on the same subject:
http://www.wpbeginner.com/wp-themes/adding-additional-default-headers-to-the-wordpress-twenty-ten-theme/Forum: Fixing WordPress
In reply to: Auto updated to 3.0.1 (pt-br) and got alpha 3.1I had the same problem.
Forum: Fixing WordPress
In reply to: How to disable Duplicate Comment filterDoes anybody have any solution to this issue that doesn’t edit the core files?
Forum: Plugins
In reply to: [WP125] Conflict with next widgetThank you so much!
Problem solved.