Joms
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Modification in wp_create_user() methodForum: Fixing WordPress
In reply to: How come still no border on images?Because that is not the code we asked you to change. If you really prefer changing that though you could just make it like this:
.entry img { border: 1px solid #0000FF !important; }Forum: Fixing WordPress
In reply to: Huge Post SitemapHave you tried enabling MySQL standard mode in the plugin?
You can also trying increasing it in your wp-config.php by adding
define('WP_MEMORY_LIMIT', '96M');Forum: Fixing WordPress
In reply to: Hack by stupid personForum: Fixing WordPress
In reply to: How come still no border on images?http://www.2createawebsite.com/build/hex-color-chart-grid.html
Or use an image editing program.
Forum: Fixing WordPress
In reply to: How come still no border on images?Yes it’s the same, the code above was included on my reply but upon seeing alchymyth’s post above me I removed it.
Again Firebug can help you a lot. Good luck!
Forum: Everything else WordPress
In reply to: Why does everyone hate e-commerce on WP?Sorry if that came out wrong, I was just merely listing the possible reasons for flanderz’s question.
Forum: Fixing WordPress
In reply to: How come still no border on images?Line 86 of your style.css, change the border color or delete it entirely because it’s overriding your style.
I suggest you use the Firebug extension for Firefox to easily troubleshoot problems like this.
Forum: Fixing WordPress
In reply to: What are the basic steps to make a database app with wordpress?Depending on your needs you can try project management
plugins: http://wordpress.org/extend/plugins/tags/project-managementForum: Everything else WordPress
In reply to: Why does everyone hate e-commerce on WP?Mostly because of unfixed bugs and the lack of features, support and documentation (at least for non-commercial plugins).
Both WP E-Commerce and Cart66 have free and paid versions, so people can’t be blamed for thinking that the focus/support of the plugin developers is on the premium version.
Although I think WP E-Commerce is better than before since it now uses custom post types.
Forum: Fixing WordPress
In reply to: Posts opening on site URL outside blogCan you explain further what you meant by “site URL outside my blog”? Or better yet provide an example.
You can use is_home(), is_front_page() and is_single() functions.
Forum: Fixing WordPress
In reply to: Nominate PageYou can achieve this by using a rating plugin. Members can then upload images by creating posts, which can be rated by the plugin.
Forum: Fixing WordPress
In reply to: contact form 7 and captchaFirst determine if the spam really comes from the contact form with a CAPTCHA. If it does, try another CAPTCHA plugin like this reCAPTCHA extension.
If this is too complicated for you just install another contact form plugin like cforms II which already have some built-in anti-spam features.
Forum: Fixing WordPress
In reply to: Structure of Search got Problem in my site ! s2free.com ?You should add your site url to your form action.
Search for this in your theme or on your widgets:
<form method="get" action="" id="searchform">And replace it with:
<form method="get" action="http://s2free.com/" id="searchform">