vipul Jariwala
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: I can't publish my postwhich commercial theme are you using for your site?
they may provide the support ticket and forum also. There may be other users who may face same problem. So go to forum of theme provider and check ticket or you may need help of any expert.
Thanks
Forum: Installing WordPress
In reply to: Linking blog to websiteFrom wordpress.rog –> you will get wordpress software package for installation on your site while, you have to buy domain name.
from wordpress.com -> wordpress installed & you can create your site and you don’t need to buy the domain name. You can use either free theme or paid theme.
Forum: Fixing WordPress
In reply to: back up to dropboxall files are important as per server settings and most files & folders are wordpress related only.
Forum: Fixing WordPress
In reply to: Images link to localhostHi halty, if you get database sql and processing find & replace the older path to new path, In this case the widgets and other serialize data store will damage and you may lost such data. Please take cart of it. It’s mostly in widget section.
Forum: Fixing WordPress
In reply to: Images link to localhostYou can do one thing,
Get the complete data export from old source and import in new working place.
I may work for you.
Thanks
Hi, I think you may using windows server that’s why the problem may be. It’s working of for all others
Forum: Plugins
In reply to: [WP Export] WP Export – no admin pageMay I have screen image if you got any error or some thing or only blank page?
Forum: Plugins
In reply to: [WP Export] [Plugin: WP Export] Error on Line 60 of wp_export.phpHi Im also using apache on windows and it working fine.
Forum: Fixing WordPress
In reply to: Custom Post type setup problemthe problem solved. One of theme developer One of theme developer company help to solve it.
Forum: Fixing WordPress
In reply to: Custom Post type setup problemHi,
Have got any solution please.
Thanks
Forum: Fixing WordPress
In reply to: Custom Post type setup problemHi there,
The problem is not solved. while I set premalink. I try to make blog section with custom post type.
Check at for your reference :
https://wpwebs.com/wpwebs/wp-admin
Id: admin
Pw: 12345Code is in functions.php file , you can edit form theme editor section at very bottom part.
Please help me.
ThanksForum: Fixing WordPress
In reply to: Custom Post type setup problemHi there,
I solve it.
My final code is:
add_action(‘init’, ‘my_custom_init’);
function my_custom_init()
{
$labels = array(
‘name’ => _x(‘Blog’, ‘post type general name’),
‘singular_name’ => _x(‘Book’, ‘post type singular name’),
‘add_new’ => _x(‘Add New’, ‘book’),
‘add_new_item’ => __(‘Add New Book’),
‘edit_item’ => __(‘Edit Book’),
‘new_item’ => __(‘New Book’),
‘view_item’ => __(‘View Book’),
‘search_items’ => __(‘Search Blog’),
‘not_found’ => __(‘No Blog found’),
‘not_found_in_trash’ => __(‘No Blog found in Trash’),
‘parent_item_colon’ => ”
);
$args = array(
‘labels’ => $labels,
‘public’ => true,
‘publicly_queryable’ => true,
‘show_ui’ => true,
‘query_var’ => true,
‘rewrite’ => true,
‘capability_type’ => ‘post’,
‘hierarchical’ => false,
‘menu_position’ => null,
‘supports’ => array(‘title’,’editor’,’author’,’thumbnail’,’excerpt’,’comments’)
);
register_post_type(‘blog’,$args);
}The problem is solved and the issue was super cache plugin. Because of super cache .htaccess rule, it was problem.
Thanks
Forum: Fixing WordPress
In reply to: Custom Post type setup problemif I set permalink enable, the view post page of front page takes me to 404 instead of detail page.