Clarion Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: posts not showing up on home pageWhich code your using to display list from category , If possible can paste here piece of code , we will check
Forum: Fixing WordPress
In reply to: Best Simple Spam BlockerTry this plugin https://ww.wp.xz.cn/plugins/zero-spam/screenshots/
For remove website field:
Put the following in your functions.php at the end of file function alter_comment_form_fields($fields){ $fields['url'] = ''; //removes website field return $fields; } add_filter('comment_form_default_fields','alter_comment_form_fields');Forum: Fixing WordPress
In reply to: Add Navigation bar to Landing PageYou would simply visit the Appearance -> Menus panel in your site admin, copy name and paste it in below
<?php wp_nav_menu( array( 'theme_location' => 'name of your menu' ) ); ?>or
<?php wp_nav_menu( array( 'menu' => 'name of your menu' ) ); ?>Forum: Fixing WordPress
In reply to: post_links not showing upTry below code
<?php // Previous/next post navigation. the_post_navigation(array( 'next_text' => 'Next', 'prev_text' => 'Previous', )); ?>or
<?php previous_post_link(); ?> <?php next_post_link(); ?>Forum: Fixing WordPress
In reply to: unknown sitemap attempting to serve links to Google botsHere here clearly explained about Crawl errors, Check it below link once
https://moz.com/blog/how-to-fix-crawl-errors-in-google-webmaster-tools
Forum: Fixing WordPress
In reply to: Update to WP 4.5.2 error 'not establish a secure connection'Download the new version, unzip it on your computer and navigate to wp-includes directory.
You will find update.php file there.
Upload that to the wp-includes directory on your server. It will replace the existing update.php on the server.I am assuming that you are running the latest version of WordPress on your server
Forum: Fixing WordPress
In reply to: Site loads Blank PageGetting “Error establishing a database connection” Check your wp-comfig.php file once
Forum: Fixing WordPress
In reply to: Google search boxAdd below code in your css file
#cse-search-box input[type="text"] { height: 39px; margin-bottom: 9px; max-width: 96%; }Forum: Networking WordPress
In reply to: same url, but 2 different homepagesHi,
Please see if below plugin can help.
https://ww.wp.xz.cn/plugins/peters-login-redirect/
If you want to do it with some custom code then please refer the below links.
stackoverflow.com/questions/20039607/different-wordpress-front-page-for-logged-out-and-logged-in-users
Thanks
you can try below one also
https://ww.wp.xz.cn/plugins/cm-download-manager/screenshots/
Forum: Themes and Templates
In reply to: [Customizr] Customizr: Problem with Featured pagesHello janmattys,
I have reviewed your website and found that the issue is due the margin of span which is CSS related so Need to make a change in your theme css file but first it will be better check whether in theme option setting is their option for adding custom css because if write in style.css directly it will get removed in future after the theme update.
IF their is no option for adding the custom css in theme please installed and activate below plugin and put below css code in plugin setting option.
https://ww.wp.xz.cn/plugins/simple-custom-css/body [class*="span"] { margin-left: 25px; }Thanks
Forum: Fixing WordPress
In reply to: Request Entity Too LargeHi,
try making the following changes and see if it solves your problem.
-in php.ini (inside /etc/php.ini)
max_input_time = 24000
max_execution_time = 24000
upload_max_filesize = 12000M
post_max_size = 24000M
memory_limit = 12000M-in nginx.conf(inside /opt/nginx/conf)
client_max_body_size 24000M
More information on below link.
Thanks
Forum: Fixing WordPress
In reply to: Forgot PasswordHi,
This password in email is of the forum that you have posted this question. Password of your website is different.
To reset the password of your website follow the steps given in the following link.
https://codex.ww.wp.xz.cn/Resetting_Your_Password
Thanks
Forum: Themes and Templates
In reply to: Where to post ad code from AdsenseHello jcosborne23,
In your theme their will be header.php file post ad code from Adsense in that file inside the body tag.
Thanks
Forum: Fixing WordPress
In reply to: Home page error.Hi,
If the theme is custom theme then you should open a ticket at the website from where you had downloaded/purchased this themes as the theme owner will be able to assist you more quickly and solve your problem.
Thanks