Ashish Kumar (Ashfame)
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Website Log in and WP Log inYes, its possible. You can email me if you are looking for a paid option – [solictication deleted please refrain]
Forum: Fixing WordPress
In reply to: Including Bbpress into WPDon’t ditch bbPress because you want to run it in WordPress.
Try deep integration till bbPress is released as a WordPress plugin.
Here is my bbPress resource page which has the link of how to deep integrate it with WordPress. Its pretty easy.
[link moderated]Forum: Installing WordPress
In reply to: solution for not receiving emails – is it safe?Why not use the wp_mail() function instead?
Forum: Requests and Feedback
In reply to: Usability Bug – Batch-Upgrade Plugins Feature in WP 2.9+1
It took me a google search to find it.
Forum: Fixing WordPress
In reply to: Unable to switch off post revisions@michaelh
I don’t use any attachments, no uploads via WordPress. I don’t even delete posts. Just write posts in WLW and then make a final review in WP WYSIWYG editor and publish.I need to make changes to a few posts which creates revisions for it and which adds up.
Adding the line after DB_COLLATE doesn’t work for me!
Forum: Fixing WordPress
In reply to: Unable to switch off post revisions@renfrompenn @michaelh
Adding the line after DB_COLLATE line works? It didn’t for me.P.S. – With only 180posts, my Post ID is 600+
Although I do keep on deleting the revisions but I want to get rid of the feature instead.Forum: Fixing WordPress
In reply to: adding javascript into an individual pageInstead of rand() function, use mt_rand() as it executes 4 time faster than rand() function.
Forum: Fixing WordPress
In reply to: adding javascript into an individual pageshare the URL
Forum: Fixing WordPress
In reply to: adding javascript into an individual pageor you can do it in php : https://www.pearsonified.com/2006/10/simple_random_header_images_for_your_blog.php
if you want that on a single page, you can use
if ( is_page(page_id=4) ) { /*Stuff */ }
Forum: Fixing WordPress
In reply to: Is anyone hacking our blogs …need adviceThey should not be changed automatically. You can change the permalinks under Settings > Permalink
Forum: Fixing WordPress
In reply to: adding javascript into an individual pagetry this
FirstPart = '<img src="<?php get_bloginfo('template_url'); ?>/top'; LastPart = '.gif" />';
Forum: Fixing WordPress
In reply to: Upload pixMake sure file permissions for the upload folder are correct. Try looking in Codex :
Some plugins require the /wp-content/ folder be made writeable, but in such cases they will let you know during installation. In some cases, this may require assigning 755 permissions or higher (e.g. 777 on some hosts). The same is true for /wp-content/cache/ and maybe /wp-content/uploads/
Forum: Fixing WordPress
In reply to: adding javascript into an individual pageIt should be
LastPart = '.gif" />';
Forum: Fixing WordPress
In reply to: Accessing wp-adminAre you using any security feature of a plugin which only allow certain IP address/addresses to access wp-admin?
Forum: Fixing WordPress
In reply to: How to display the number of posts from a single category?<?php $fb = new WP_Query(); $fb->query('category_name=football&showposts=5'); while($fb->have_posts()) : $fb->the_post(); ?> <!-- LOOP CONTENT HERE --> <?php endwhile; ?>