Clarion Technologies
Forum Replies Created
-
Forum: Localhost Installs
In reply to: how can i post my localhost websiteHi,
Post where?
If you want to upload it to a live server then please see below link which explains steps to Move a wordpress website from one location to another.
https://codex.ww.wp.xz.cn/Moving_WordPress
Thanks
Forum: Fixing WordPress
In reply to: Nested CommentsHi Maddie,
If the theme is a custom theme that you bought online then, I guess you need to open a ticket on that website or contact the theme developer for support as they can help you more efficiently.
Thanks
Forum: Plugins
In reply to: Allow registered users to blog from front-endHello angrywarrior,
If you want to allow the registered user to post blog from front end please use the below plugin which provides same functionality as per your requirement.
https://ww.wp.xz.cn/plugins/wp-user-frontend/
Thanks
Forum: Fixing WordPress
In reply to: wordpress installHi,
Can you please provide link to your blog?
Thanks
Forum: Fixing WordPress
In reply to: blog NameHi,
Can you please provide link to your blog?
Thanks
Forum: Fixing WordPress
In reply to: Transfere WordPress to a new VPS (BLANK)Hi,
Please turn on error reporting to see what exactly the error is.
Thanks
Forum: Fixing WordPress
In reply to: Questions about install, vs online, vs web host.Hi,
You can setup your current website on your windows machine and then build new theme and content. Once your work is completed you can upload it back to the server.
Thanks
Forum: Fixing WordPress
In reply to: How to keep menu visible on top of screen when scrolling?Your Welcome.. 🙂
Hello Yogesh Dalavi,
If the Editor is unable to edit the post published by admin Please use the below plugin which allows you give permissions to user role type to edit the other users post also.
https://ww.wp.xz.cn/plugins/user-role-editor/
Thanks
Forum: Networking WordPress
In reply to: Unable to access Network Admin dashboardHi,
Your htaccess and wp-config.php files seems to be fine.
I have just noticed that on some table your site URL contains www and in some it does not.
In one of the old multi-network site I had face similar issue because of the www parameter.
I would suggest you to make the following changes and see if it works. Please do take a database backup first.
In wp_site table set the domain value to http://www.calligrafee.com
And in wp_blog set domain for blogs with id 1 and 3 to http://www.calligrafee.com and http://www.calligrafee.com
Also comment out the following lines in the wp-config.php files as they are no longer needed.
define(‘WP_HOME’,’http://www.calligrafee.com’);
define(‘WP_SITEURL’,’http://www.calligrafee.com’);Please let me know if you problem is solved now.
Thanks
Forum: Themes and Templates
In reply to: Print button hover color – CSSHello shiumai,
Please add the below code of css in your theme style.css file it will keep your button background color as it is.
.print-button input[type="button"]:hover{ background-color: #0d0d0d!important; }Thanks
Forum: Themes and Templates
In reply to: Change image hover color – opacity CSSHello shiumai,
Please add the below code of css in your theme style.css file:
.genesis-nav-menu .sub-menu a:hover { background-color: #ddd; /*---- add the color code that you want----*/ } img:hover { opacity: 0.5; }Thanks
Forum: Fixing WordPress
In reply to: MySQL version, WP requirements and 500 errorGlad your problem is solved. 🙂
Forum: Themes and Templates
In reply to: Add SEARCH function on TOP navigation barHello shiumai,
In order to add the search bar next to navigation you need to add the below php function in your theme header.php file inside of div having class=”header-fill” as its php function you cant do anything by editing the css files.
<?php get_search_form( $echo ); ?>Thanks
Forum: Themes and Templates
In reply to: MakeTemplate WiderHello theviralballoon,
Please try by adding the below css code in your theme style.css file.
#main-wrapper{ width:1200px; } #content-main{ width:800px; }Thanks