Clarion Technologies
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Unable to access Network Admin dashboardHi,
If you have done wp-config changes and all site url changes in database and still the network admin is not working then it is very hard to tell why it is not working without having a look at the website.
The last thing I would recommend is check your rewrite base in .htacess file and path in wp-config.php and ww_site table. in both places the path must be same.
And yes previously I had forgot to mention there is also two more table ww_sitemeta and ww_blog. In ww_sitemeta table also check the value of “siteurl” and in ww_blog check the values of “domain” and “path”.
Please let me know if it works for your now.
Thanks
Forum: Fixing WordPress
In reply to: How to post on Facebook several timesUse below plugin, it will post in your facebook page, If you want post again . Just click edit post and click on update button, this post again will post on your facebook
https://ww.wp.xz.cn/plugins/social-networks-auto-poster-facebook-twitter-g/screenshots/
Forum: Fixing WordPress
In reply to: Can someone tell me what is wrong with this code?Hi,
There is nothing wrong with your code. The only difference is that braces (parenthesis) opening are not added for foreach, inner if and the else syntax.
PHP compiler can execute this code without any problem. But if you want the code with all the parenthesis and well formated , please see below is the formatted code.
<?php if (post_is_in_descendant_category(17)) { foreach((get_the_category()) as $childcat) { if (cat_is_ancestor_of(17, $childcat)){ echo $childcat->cat_name; } } } else{ echo "-"; } ?>Thanks
Forum: Fixing WordPress
In reply to: Sub Menus no longer show up since latest updateIts not related wordpress issue, you missed to add drop-down css code in css file
Add this code in your style.css file
.menu-item-has-children:hover .sub-menu{ display:block; }Hi,
It seems that you previous WordPress installation had other language packs which are not available in your current WordPress installation which is causing the issue.
Thanks
Forum: Fixing WordPress
In reply to: How to keep menu visible on top of screen when scrolling?Hi,
Add the following in your style sheet.
.site-header.fixed {
position: fixed !important;
}Thanks
Please check if you have installed any security plugin. or try deactivating plugins and activate them one by one.
Please take database backup first.Forum: Localhost Installs
In reply to: connecting to db on local machine failing.Hello justjoe300,
Yes, It may be the case that your database name is like ‘username_ugbc’
so first please check your database name and add appropriate name of database in wp-config.php file.Thanks
Forum: Fixing WordPress
In reply to: Updating a PDF fileHi,
If you don’t want to link the PDF to a post then it doesn’t matter. It can still be present in the media folder.
Also if you don’t to link the PDF then Why you want to update it?
Thanks
Forum: Fixing WordPress
In reply to: Not able to see the menu in my website backendHello jitendersingh811,
[ Redacted ]Hello brendanalbert,
Can you please first check whether the Email module is enabled on server or try sending the test mail outside the contact form.If the Email sent successfully please check your mail box mail is their or not if not the contact with server support to enable Email module.
Let me know if need any further details form my side
Thanks
Forum: Fixing WordPress
In reply to: Updating a PDF fileHi,
You will have to delete the previous PDF file and upload a new file and then attach to the post.
Thanks
Forum: Plugins
In reply to: Plugin to Print Individual Pic on Multiple Pic Post?Hello maxcady,
Please try using below plugin this will definitely help you:
https://ww.wp.xz.cn/plugins/print-o-matic/
Thanks
Forum: Plugins
In reply to: WooCommerce Remote Automatic Java Product EntryHello cloakingocean,
For achieving this functionality you need to create web service which will takes posted product data from Java application and after getting the result data need to add in to WordPress by using the custom code of posting the the product.
Thanks
Hello Elvis1973,
It is related to the configuration of your plugin. Try to find a setting that stops .JS and/or PHP caching.
Thanks