Rajat Chodhary
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Blog page on a separate domainYes, It can be possible.
Best way is by using wordpress multisite. For that, you need to create a network.Other way around this problem, is by using URL Cloaking or Redirects [Ususally found in domains section]. You need to redirect https://www.mysite.com/blog to https://www.blogatmysite.com/
Forum: Installing WordPress
In reply to: Site not showing up on WordPress.com appI am extremely sorry. Please, do accept my apologies for representing you as SIR
Actually, I have degree Bachelor in Fashion, and Master Degree in Business Management. After working 3 years with few event management companies , I realized that both my degrees are of no use and I am in wrong business. With SWOT analysis, I came to know that I can create or manage beautiful code. WordPress was platform for my first fashion blog was back in 2007.Forum: Fixing WordPress
In reply to: Sidebar/Page layout on specific pages??Hello Hrohibil,
You can have as many widgets you want – either dynamic sidebar is at side or footer.I think that you want different sidebar for different page as well.
In that case, just for example, you want sidebar for blogtuts.php. First you need to widgetize your theme.<?php /** * Register our sidebars and widgetized areas. */ function my_widgets_init() { register_sidebar( array( 'name' => 'Blog and Tutorial Sidebar', 'id' => 'blogsntuts', 'before_widget' => '<div>', 'after_widget' => '</div>', 'before_title' => '<h2>', 'after_title' => '</h2>', ) ); } add_action( 'widgets_init', 'my_widgets_init' ); ?>
Then, you must have sidebar-blogtuts.php to represent that sidebar which contain call code.
<?php if ( is_active_sidebar( 'blogsntuts' ) ) : ?> <div id="idebar" role="complementary"> <?php dynamic_sidebar( 'blogsntuts' ); ?> </div><!-- #primary-sidebar --> <?php endif; ?>
Then, your blog-tuts template code will be.
<?php /** * Template Name: Blogs and Tutorials */ get_header(); ?> <div id="main"> some code here, and no sidebar <?php get_sidebar( 'blogtuts'); ?> </div> <?php get_footer();
Remember, https://codex.www.ads-software.com is a great place to start.
Thanks,
Forum: Fixing WordPress
In reply to: Sidebar/Page layout on specific pages??Hello @shravankumar,
It will load index page by default. You need to check page settings from Settings > Reading, and have to choose which static page you want as home page. You must have that page [if you want contact page as front page of your website – then, you must have that page created]For next time, create a new thread.
Thanks,Forum: Fixing WordPress
In reply to: Sidebar/Page layout on specific pages??When, you create new page designated to particular page. Then, you have to choose from Page Attributes to suit your needs
Forum: Fixing WordPress
In reply to: Site not loading at all (back end and front end)Hello,
Use filezilla along with your server credentials. Download that shortcode.php file and make proper amendments. and upload back to the same directory. Try to login in your wordpress dashboard or refresh website.Otherwise, I suggest you to switch to default wordpress theme. For that, you will have to download and update wp-config.php [Please, save a copy somewhere before editing], and copy-paste following line of code in wp-config. [I hope that you have Twenty Twelve in your themes]
if( ! defined('WP_DEFAULT_THEME')) define('WP_DEFAULT_THEME','twentytwelve'); /* That's all, stop editing! Happy blogging. */
Then, retry to login to your wordpress admin, and make change what you have done in your shortcode.php file and re-activate your theme.
Forum: Fixing WordPress
In reply to: Sidebar/Page layout on specific pages??Yes, you can have different views for different pages. Here is link for more details https://codex.www.ads-software.com/Page_Templates
How this works? You want full page without sidebar for blog and tutorial. Then, create a file blog-tuts.php in your theme/child theme directory.
<?php /** * Template Name: Blogs and Tutorials */ get_header(); ?> <div id="main"> some code here, and no sidebar </div> <?php get_footer();
This way, you can create different template for different pages. And, can create complex themes as well.
Forum: Fixing WordPress
In reply to: Syntax error on line 1 header.phpHello,
Use following steps.- Login to your dashboard, and select any default wordpress theme like twentyfourteen
- Delete your Orizon wordpress theme from themes,
- Upload new copy of Orizon wordpress theme, customize and activate
And, you are good to go.
Remember, you are playing with wordpres themes, not with wordpress content.Forum: Themes and Templates
In reply to: 5-6 Page Simple WebsiteYou can find 18 beautiful bootstrap wordpress theme featured on WPTavern.
Here’s the link, all are free, and paid are either pay by tweet or pay by fb post.https://wptavern.com/18-free-wordpress-themes-built-with-bootstrap
Thank you
Forum: Installing WordPress
In reply to: 4.0.1 Update, Logged into Site, Posts GoneHello,
No, plugins [WordPress Updated with 100 Plugins] are not supposed to cause such problem in Admin area, and Content is not supposed to vanish from dashboard.
Okay, Try to disable plugins.By the way, Congratulations for successful 3 years of blogging with WordPress
Please, let us know.
Forum: Installing WordPress
In reply to: Site not showing up on WordPress.com appHello sir,
Definitely this problem is caused by server, or involve human error. Because, your website is up and running now ??Your website got a landing page theme, with some newsletter signup. Screenshot to verify. Both link direct to same image.
https://postimg.org/image/vmraq6ipb/
https://s27.postimg.org/g19z686r7/vivalafashion.jpgThank you
Forum: Installing WordPress
In reply to: Site not showing up on WordPress.com appHello sir,
I never heard that mere WordPress app is causing problem. App is just a dashboard totally depends upon your device, not on server.I just checked status of your website. And, yes, it is down. I suggest you to check server status in your hosting panel. Or, raise a ticked / mail to your hosting company ask if there is problem.
Forum: Installing WordPress
In reply to: Theme won't load properly in ChromeHello sir,
I have tested your website with two different chrome version, and without going back. Just allowed homepage to load completely. Than, I have compared with two different version of Firefox (30/33). I found nothing uncommon and look mirror image to each other.
I have copied link for your observation as well [All I did is that I shrunk image a bit]
https://postimg.org/image/vs1rgh6eb/
https://s21.postimg.org/bkobo68x3/batamexpat_small.jpg
Both links above are same. Just for fail safe.Further guidelines and no tech talk, try using clearing your chrome browser cache, or use New Icognite Window [Use Ctrl+Shift+N] while your chrome is active.
Thank you
Forum: Installing WordPress
In reply to: 4.0.1 Update, Logged into Site, Posts GoneHello there,
First of all, you have a very nice theme.You said that, you tried to re-install 4.0.1 – Is it means that you have removed all your previous folders, and started all over again. If so, then, I guess that you have removed wp-content folder as well. In that case, and you didn’t have proper back-up of your website images etc will break.
When you update your wordpress installation. Sometimes, it happens that posts either become invisible or give some 404 error. After update you need to go to Settings > Permalinks, and click Save. Nothing else to do – It will flush rewrite rules and website start appearing again.
Please, let use know – how you did that. We are anxious to hear from you.
Thank you
Note: Take a proper backup before such big action.
Forum: Localhost Installs
In reply to: Issue importing theme unit test dataHello @aamer,
theme-unit-data-text.xml file is core of all theme testing. I have a repository on github.com. You need to download zip archive and have to follow HOW-TO complete description.
All you need to follow those steps, and your are good to go in no time.
Remember, you need a fresh installation for importing xml.