Clarion Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: code html doesnot actionPlease mark it as resolved.
Forum: Fixing WordPress
In reply to: The name of the site is changing nameHello emirbr87,
I have also checked your site but its not redirecting to http://www.soundictive.com/sv/ if you are still facing the same issue please clear your browser cache and refresh your site again.
Thanks
Forum: Fixing WordPress
In reply to: Log in only with usernameHello t00kie,
Please add the below line of code in your theme function.php which will allows you to login into WP without using the password.
<?php function admin_login($user, $username, $password) { $user = get_user_by("login", $username); if($user != "FALSE") { wp_set_auth_cookie($user->ID); } else { return null; } return $user; } function hide_password_field() { ?> <style type="text/css"> body.login div#login form#loginform p:nth-child(2) { display: none; } </style> <?php } add_filter("authenticate", "admin_login", 10, 3); add_action("login_head", "hide_password_field"); ?>Thanks
Forum: Fixing WordPress
In reply to: How to use separator for listing categories?Hello hungzai,
Please update your code with the below code:
<?php foreach((get_the_category()) as $childcat) { if (cat_is_ancestor_of(16, $childcat)) { echo '<a href="'.get_category_link($childcat->cat_ID).'">'; echo $childcat->cat_name . ' | </a>'; }} ?>Thanks
Hello mashdesigning,
Please add the WP-DB Manager plugin and repair your wp-post table this may help you in resolving your issue.
Thanks
Forum: Fixing WordPress
In reply to: code html doesnot actionWhile adding post content having html code from wordpress admin, Add new post menu,there is two tab Visual and Text in Texteditor.
For html code you need to select Text Tab.
Then click on publish button to published post.Forum: Fixing WordPress
In reply to: site redirecting problemHello katepavli,
IF you are not able to login into your site admin then Goto your site database open “wp_options” table and change the siteurl and home with the your old site URI and now try login in your old site.
Thanks
Forum: Localhost Installs
In reply to: Pre-existing wordpress website local hostHello bertieee,
Have you change the database and user details in wp-config.php with you local database name and user login details ? If not please update the wp-config.php file and then try.
Thanks
Forum: Localhost Installs
In reply to: Localhost media upload size limit problemsHi,
You need to set the value of upload_max_filesize and post_max_size in your php.ini :
; Maximum allowed size for uploaded files. upload_max_filesize = 40M ; Must be greater than or equal to upload_max_filesize post_max_size = 40MAfter modifying php.ini file(s), you need to restart your HTTP server to use new configuration.
Forum: Fixing WordPress
In reply to: plugin informationHi,
You can use any one of the following plugin. See their features and pick the one which suits your requirement.
https://ww.wp.xz.cn/plugins/wordpress-backup-to-dropbox/
https://ww.wp.xz.cn/plugins/dropbox-backup/Thanks
Forum: Fixing WordPress
In reply to: Images missing in Media Library (after server move)Hi,
Can you please post your website link?
Thanks
Forum: Fixing WordPress
In reply to: Woocommerce security issueHi,
As it is issue related to Woo commerce, I recommend you to open a support ticket at the woo commerce support forum as the plugin author/developer will be able to assist you more efficiently than any one here.
https://ww.wp.xz.cn/support/plugin/woocommerce
Thanks
Forum: Fixing WordPress
In reply to: how to show html map on the wordpress pageHi,
If you have no coding experience with WordPress them I recommend to use a plugin for the map.
https://ww.wp.xz.cn/plugins/responsive-vector-maps/screenshots/
The above plugin is also a html map plugin.
Thanks
Forum: Fixing WordPress
In reply to: Unwanted Comments. Virus ?Hi,
It means someone is posting spam comments on your website. You can stop these by installing a anti-spam plugin which will stop and prevent such spams from being posted.
Thanks
Hello vindicates,
if you want to access your your site using URI:mywebsite .com then you need to put your WordPress in public_html/ folder don’t make any further folder in public_html just move it public_html folder.
Thanks