Deepak Rajpal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Additional domain info being added to permalinksHi camasurich,
Could you please try checking following:
- Switch to default permalink once and see if it resolves (then you can try revert to expected one)
- Check if any URL hard coded in wp-config.php on WordPress root folder
- Deactivate plugins once by one to identify if any plugin is causing the issue.
https://ww.wp.xz.cn/plugins/health-check/ – This plugin helps in troubleshooting and allows you to have a clean WordPress session, where all plugins are disabled, and a default theme is used, but only for your user until you disable it or log out.
Forum: Hacks
In reply to: Fetch Feed – unable to change feed cache time from default 12 hoursHi stylishjm,
I got it. It should work well if you use this code to replace with your fetch_feed.
For example replace your
$rss = fetch_feed( 'http://www.grimeforum.com/forum/external.php?type=RSS2&forumids=2&lastpost=1' );with following
function return_7200( $seconds ) { return 1800; } add_filter( 'wp_feed_cache_transient_lifetime' , 'return_7200' ); $rss = fetch_feed( 'http://www.grimeforum.com/forum/external.php?type=RSS2&forumids=2&lastpost=1' ); remove_filter( 'wp_feed_cache_transient_lifetime' , 'return_7200' );Forum: Themes and Templates
In reply to: How to add a custom field to menu or menu widget in adminNo reply yet :O
I want to avoid plugin for this, otherwise my option is to make use of following:
http://ww.wp.xz.cn/plugins/advanced-menu-widget/screenshots/
Where, i can add my own containers id and classes to each menu widgets.
Solution:
It looks like wpui_dir() is not doing the right thing in “wp-ui.php” on line 122. Even it is able to include the desired file without using this function.So just replace line:
require_once( wpui_dir( 'admin/wpUI-options.php' ));
to
require_once( 'admin/wpUI-options.php' );It should work fine. Please mention if doing something wrong.
Hope this will work for you as well. All the best 🙂
Forum: Fixing WordPress
In reply to: RegistrationHi John,
If you check compatibility of pie register here:
http://ww.wp.xz.cn/extend/plugins/pie-register/
It is broken with the latest version (WP 3.5.1 & pie 1.2.91).You can please try one of above two plugins. I think both plugins support extra fields saved in database.
Forum: Fixing WordPress
In reply to: 128M memory host or help with memory problem?If you can extend memory limit, here are some options:
1. If you have access to your PHP.ini file, change the line in PHP.ini
If your line shows 32M try 64M. If your line shows 64M try 128M.memory_limit = 64M ;Maximum amount of memory a script may consume (32MB)2. If you don’t have access to PHP.ini try adding this to an .htaccess file:
php_value memory_limit 64M3. Try adding this line to your wp-config.php file:
Increasing memory allocated to PHPdefine('WP_MEMORY_LIMIT', '64M');If you don’t have access to those files, please contact your host
Helpful link: http://ww.wp.xz.cn/support/topic/253495#post-1017842
Forum: Fixing WordPress
In reply to: Unwanted New User RegistrationIf you don’t want to allow users registration on your blog, here is settings:
Go to Dashboard > Settings > General > Membership (Anyone can register)
You can un-check if want to disable registration.
Forum: Fixing WordPress
In reply to: RegistrationBetter to use plugins to extend registration (extra fields) such as:
1) http://ww.wp.xz.cn/extend/plugins/cimy-user-extra-fields/screenshots/
2) http://ww.wp.xz.cn/extend/plugins/register-plus-redux/screenshots/Forum: Fixing WordPress
In reply to: Comments on my blog postCurrent versions of WordPress come with plugin ‘Akismet‘ installed by default. Activate and configure it. It will give a high protection from odd comments and keeps you spam-free.
Forum: Themes and Templates
In reply to: [Spun] Count down WidgetsAre you using any countdown plugin or this functionality is incorporated with theme?
Forum: Fixing WordPress
In reply to: How to list my latest posts on a seperate HTML site?PHP 5 has the require/include function for remote files disabled by default:
helpful links:
1) http://stackoverflow.com/questions/7037051/php-require-once-connect-to-other-website
2) http://blog.everymanhosting.com/php-coding/warning-include-functioninclude-url-file-access-is-disabled-in-the-server-configuration/Forum: Fixing WordPress
In reply to: Custom Taxonomy Trouble – Only displays one post at a timeyes, argument is on right place!!
Forum: Themes and Templates
In reply to: Saved Custom Themeyou don’t have to reset anything
Install theme as usual in following two ways:
1) Copy custom-theme folder into another domains “Themes” folder
2) Log in to the WordPress Administration Panels.
3) Select the Appearance panel, then Themes.
4) You custom-theme should be visible here, Activate it.Or
1) Compress your custom theme into zip.
2) Log in to the WordPress Administration Panels.
3) Select the Appearance panel, then Themes.
4) Use the Upload link in the top sub-menu to upload a zipped copy of your custom theme.
5) Activate it.I hope you have save your custom-theme with your custom-name (editing Theme name in style.css) to avoid conflict with default theme names.
Thanks
Forum: Fixing WordPress
In reply to: Adding Approval Screen1) http://ww.wp.xz.cn/extend/plugins/terms-of-use-2/
above plugin allow you to accept terms “Before accessing specified pages in the back- or front-end” (mentioned on plugin page)
Two more plugin may be helpful here:
2) http://ww.wp.xz.cn/extend/plugins/itro-popup/
3) http://ww.wp.xz.cn/extend/plugins/member-terms-conditions/
Forum: Fixing WordPress
In reply to: How to list my latest posts on a seperate HTML site?You need to include WordPress’s wp-load.php once in a PHP file, then you can access any WordPress function on that page.
Examples:
1) http://blog.syedgakbar.com/2012/07/15/display-recent-posts-outside-the-wordpress/
2) http://chinmoy29.wordpress.com/2010/08/04/display-latest-post-on-static-php-page/