Sushil Kumar
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Error When Installing WP Via FTPHi breebrudnicki,
Please check your php version is support wordpress version your are installing.
Can you share the link of your site.- This reply was modified 8 years, 11 months ago by James Huff.
- This reply was modified 8 years, 11 months ago by Sushil Kumar.
Forum: Everything else WordPress
In reply to: How do I re-direct users after loginHi inolaservices,
I would suggest you to use any of the following plugins :
https://ww.wp.xz.cn/plugins/redirect-after-login/
https://ww.wp.xz.cn/plugins/peters-login-redirect/Forum: Fixing WordPress
In reply to: Custom Image Size, i'm doing it wrongHi Deexgnome,
I would like to let you know that you will need to just add only one line with unique thumnail-size name (like : sidebar-thumb,homepage-thumb,singlepost-thumb) for one thumbnail size and it may be more if you require more thumbnail size.
add_image_size( ‘sidebar-thumb’, 120, 120, true ); // Hard Crop Mode
add_image_size( ‘homepage-thumb’, 220, 180 ); // Soft Crop Mode
add_image_size( ‘singlepost-thumb’, 590, 9999 ); // Unlimited Height Modeyou will need to pass your thumbnail size name to post thumnail function to get the image your size.
the_post_thumbnail( ‘your-specified-image-size’ );
Forum: Fixing WordPress
In reply to: Cannot open event link in Ajax Calendar Plug inHi pollyi,
If you supply the URL to your site I will look into this.
Thanks
SushilForum: Fixing WordPress
In reply to: wordpress ERRORHi angie_s i would suggest you to go into dasboard and deactivate current theme and then activate current theme again might help you.
Sometimes this type of erros comes due to file permission.
Forum: Fixing WordPress
In reply to: posts with status other than 'published' not showing in backendPlease confirm that ‘post_type’ => ‘my-custom-post-type’ given in the code(‘my-custom-post-type’) is same as when you see all custom posts in backend please check post_type in URL (/edit.php?post_type=my-custom-post-type) both must be same.
I need to review your backend or files to resolve this issue.
Do you have staging server where i can review this??
Forum: Fixing WordPress
In reply to: posts with status other than 'published' not showing in backendAs given ‘my-custom-post-type’ in the given code is the custom post type which you will need to pass as post_type, this post type will shows in backend for that you must create custom post type for the backend please review this link (http://codex.ww.wp.xz.cn/Function_Reference/register_post_type)
$post = array(
‘post_title’ => $title,
‘post_content’ => ‘ ‘,
‘post_status’ => ‘Draft’,
‘post_type’ => ‘my-custom-post-type’,
‘tax_input’ => array($branch, $ort)
);
There are some plugins are available for creating custom post type : (https://ww.wp.xz.cn/plugins/custom-post-type-ui/)The given code is fine and you just need to create custom post type in backend these posts will automatically in shows after that.
Forum: Fixing WordPress
In reply to: posts with status other than 'published' not showing in backendHi,
Can you share your form code, also share code which are showing custom
posts in backend.Forum: Fixing WordPress
In reply to: Site doesn't appear in google searchHi Andrew,
This problem is arise when search engine visibility is disable from Settings > Reading -> Search Engine Visibility or wrong cpde in robot.txt file.
Now ,Your site is is appearing in google search
Forum: Everything else WordPress
In reply to: Odd links at footer of page.To remove this line from footer please read the following instructions :
Search for this string ‘bdd1b7801d9329b2f9d7313381627c70c1’ in your files
if found then remove the div id=’bdd1b7801d9329b2f9d7313381627c70c1′ or
add the following line in style.css file.
{#bdd1b7801d9329b2f9d7313381627c70c1 : display:none !important;}Hope this helps.
Sushil