Hax
Forum Replies Created
-
Forum: Plugins
In reply to: 3.0 how to send an email verification for registration?mmmmmmm are you talking about registration to your blog trough the admin area. it already does it by default. it send the user the password to the registrar email to confirm that it is a valid email. and it should sent and email to set on setting > general > email address
Not sure exactly what functionally do you want.
Forum: Plugins
In reply to: [Plugin: Advertising Manager] Ads don’t appear on category viewwell I am not sure but, on your pages your are displaying the full content and on your categories your are just showing your except the excerpt by default strips html tags which could be your problem. so move your ad tag further down your content or don;t add the tags into your content but to the theme.
hope this helps.
Forum: Plugins
In reply to: [Plugin: Collapsing Archives] CSS styles not workingwell without really having a link to your site and looking at your code it looks like a javascript issue where the js is not loading or you have css overwritting css or the plugin styles are not loading.
Without having access to your html is hard to tell.
Forum: Plugins
In reply to: Requiring post approval?well I don’t really know the detail of your plugin but if your using
wp_insert_post()function set the status to “pending”<?php wp_insert_post( array( 'post_status' => 'pending') ); ?>or if you are creating users set the user role to “Contributor” this role should allow the user to create new posts but not to publish them
I don’t know what plugin your using but posts that are not set to publish should not be showing on your search page.
hope this helps
Forum: Plugins
In reply to: [Plugin: The Events Calendar] Call for sidebar calendar?this should be it
<?php get_calendar() ?>Forum: Plugins
In reply to: Show comments on home page postswhat do you mean by showing comments on each of the post, do you mean comment count? if you want to show the comment count you can use this code on your theme
<?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?>or are you looking for something different?
Forum: Plugins
In reply to: Media Upload APII was able to make it work and there is really no API that I could find, I had to go trough the whole
wp-admin/includes/media.phpfile to get it to work as apljdi suggested.The link that craig552uk provided is great if you using the media upload for menu pages, but I wanted to use it on a widget. so is a bit more complicated because I need to modify the content passed by javascript and pass an extra parameter so that I did affect the default functionality of the media upload.
here are some additional hook that may be helpful for some people
add_filter( 'media_upload_tabs', 'media_upload_tabs'); //hide media tabs add_filter( 'media_send_to_editor', 'media_send_to_editor' ); //to modified the string send by javascript add_filter( 'media_upload_form_url', 'media_upload_form_url' ); //used to send new parameterThank you for all your help.
Forum: Plugins
In reply to: [Plugin: Twitter Widget] slooooooooooooowThanks
I actually just wrote a new plug in base on seaofclouds twitter feed. http://tweet.seaofclouds.com/ is unobtrusive and lets the page load and then waits for twitter to respond and display the tweets.
Seaofclouds twitter feed is a great jquery plugin by the way.
Forum: Fixing WordPress
In reply to: Using an image on the comment submit buttonin your styles.css add the following style to remove the border
input.csub { border:none 0px}or if you want to use an alternative to use the image as button try using a regular type=”submit” with the classs csub and the style(css):
input.csub { background:#FFF url(URLTOYOURIMAGE) no-repeat 50% 50%; border:none 0px }I didn’t actully test it but it should work
Forum: Fixing WordPress
In reply to: theme challengeit is possible but what you need is a custom theme created. they can run custom queries against your Mysql database of by a combination of functions.
Or other options is to look for a plugin that will allow you to do it, I really don’t know any.
Forum: Fixing WordPress
In reply to: WordPress Database Erroryes it looks like that there is a problem with the plugin “wp-postratings” try to contact the developer and see if they can fix it.
for the moment I recommend removing the plugin or see if you can find a similar plugin that you can use
or you have to open the plugin file and replace the code :
add_action('loop_start', 'get_comment_authors_ratings'); function get_comment_authors_ratings() { global $wpdb, $post, $comment_authors_ratings; $comment_authors_ratings = array(); if($post->ID) { $comment_authors_ratings_results = $wpdb->get_results("SELECT rating_username, rating_rating, rating_ip FROM $wpdb->ratings WHERE rating_postid = ".$post->ID); } if($comment_authors_ratings_results) { foreach($comment_authors_ratings_results as $comment_authors_ratings_result) { $comment_author = stripslashes($comment_authors_ratings_result->rating_username); $comment_authors_ratings[$comment_author] = $comment_authors_ratings_result->rating_rating; $comment_authors_ratings[$comment_authors_ratings_result->rating_ip] = $comment_authors_ratings_result->rating_rating; } } }with
add_action('loop_start', 'get_comment_authors_ratings'); function get_comment_authors_ratings() { global $wpdb, $post, $comment_authors_ratings; if(!is_feed() && !is_admin()) { $comment_authors_ratings = array(); if($post->ID) { $comment_authors_ratings_results = $wpdb->get_results("SELECT rating_username, rating_rating, rating_ip FROM $wpdb->ratings WHERE rating_postid = ".$post->ID); } if($comment_authors_ratings_results) { foreach($comment_authors_ratings_results as $comment_authors_ratings_result) { $comment_author = stripslashes($comment_authors_ratings_result->rating_username); $comment_authors_ratings[$comment_author] = $comment_authors_ratings_result->rating_rating; $comment_authors_ratings[$comment_authors_ratings_result->rating_ip] = $comment_authors_ratings_result->rating_rating; } } } }Forum: Fixing WordPress
In reply to: excerpts not being used by wordpress for my blogswhen you do site:www,crystalsoil.com what you see in the results page is the page description and not the post excerpt.
the excerpt is use to give a small description of the post when you are looking at a category, tag etc page. if you want to change the description of your pages for google (improve SEO) use try using a SEO plugin
here is one.
http://wordpress.org/extend/plugins/all-in-one-seo-pack/or can you tell me what are you trying to do with the excerpt?
and if it is a theme problem the developer of someone that knows php should be able to help you.one way to check if your theme is using the excerpt is goto /wp-content/themes/YOUR-THEME/archive.php and searh the file for the “the_excertp” function.
Forum: Fixing WordPress
In reply to: excerpts not being used by wordpress for my blogsPlugins: I not sure what you mean by Google indexing but for experience you have to disable all and test one by one.
Is your theme using the “the_excerpt()” function because if is not it may be the themes that you are trying to use that are not set up to use the excerpt.
How much php do you know?
Forum: Themes and Templates
In reply to: Link every picture on homepage to its postpageyes, is posibble;
do you know html or PHP? if you don’t you need somebody that knows.
and they need to modify your template and you use the “the_permalink()” function to link to the post. and since is your home page the file that needs to be modify is the index.php inside your theme folder.Forum: Fixing WordPress
In reply to: help blank screen when trying to log into website as adminTo be able to help you we need a bit more information:
was it working fine? Did you install any new plug-ins? Changed your settings? Changed your user?