Clarion Technologies
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7] How to display submitted fields on the sucess pageHello Chris,
Please follow below thread we have posted the solution for the same query.
https://ww.wp.xz.cn/support/topic/populate-field-with-data-from-a-form-on-the-previos-page?replies=4
Thanks
Forum: Plugins
In reply to: Contact FormHello onewebx,
If you want to try any other form please try using the Gravity forms plugin.
Thanks
Forum: Themes and Templates
In reply to: removing theme footer credentialsHello soni123,
If you want modify the credits section in footer first create child theme and copy paste the footer.php file from parent theme to child and do your modification.Please follow the below link which will guide you to create the child theme.
https://codex.ww.wp.xz.cn/Child_Themes
Thanks
Forum: Themes and Templates
In reply to: [Zerif Lite] Latest news section mixed together in desktop viewHello landvanm,
I have checked your site ad found that you have added the width: 100px !important; for class = “slide” please remove this css that you have added it will resolve your problem.
Below CSS is applying to slide div remove:width: 100px !important;.slide { list-style: outside none none; margin: 0 !important; width: 100px !important; }Thanks
Forum: Themes and Templates
In reply to: Static page doesn't workHello coaster23,
Can you please share your website link.
Thanks
Forum: Fixing WordPress
In reply to: How to activate Read More option in PostsHi,
Please see the following links for customizing read more option.
https://codex.ww.wp.xz.cn/Customizing_the_Read_More
http://www.wikihow.com/Add-Read-More-to-Wordpress
Thanks
Hi,
sub-domain do take some time to work after creation.
Try to clear browser cache or open the website in a new browser.If still the problem persists then please contact your hosting support.
Thanks
Forum: Installing WordPress
In reply to: problems with quickinstallHi,
Are you sure the domain name is correct?
The domain is not owned by anyone and is available for purchase.
See below link.
http://www.whois.com/whois/birkenwald.net
Thanks
Forum: Plugins
In reply to: CPT ACF and Notification FilteringHello emanweb,
Yes you can the action ‘save_post’. save_post is an action triggered whenever a post or page is created or updated. Write you notification code function and apply the ‘save_post’ action for your reference please follow the below link:
https://codex.ww.wp.xz.cn/Plugin_API/Action_Reference/save_postThanks
Forum: Networking WordPress
In reply to: How to disable plugin only at one siteHello akhasanov,
If you don’t want to activate the plugin for network just make plugin ‘network deactivate’ first and activate it on every site individually.
Thanks
Forum: Fixing WordPress
In reply to: Image file size suddenly changed to 0 KBHi,
Following can be some of the reasons for this situation.
1) The file was corrupted during transfer. This can be caused by connectivity issues between your computer and your server. You can check this by using traceroute for the domain through the command line.
2) Full disk space on the server. If the disk space is full on the server, it will cause issues similar to this with your upload.
3) Charset issues. Your Grid charset is UTF-8. Occasionally, if you upload a file that isn’t in this charset, you may encounter issues.
4) Please check server error logs for more details.
If still it doesn’t help then please contact your hosting provider.
Thanks
Forum: Fixing WordPress
In reply to: Uncaught ReferenceError and Uncaught TypeError – Google MapHi,
You forgot to include jquery.min file. Include the following file just before the map file.
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script>Means it will become as below.
<?php if ( !is_page_template( 'page-contact.php' ) ) { if ( $map_id == 1 ) { ?> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.0/jquery.min.js"></script> <script type="text/javascript" src="//maps.google.com/maps/api/js?sensor=false"></script> <?php } } ?>Please let me know if it works for you.
Thanks
Hi,
It means one of your plugin is using an old function which is now depreciated by wordpress and a new function is used instead of Old.
Try updating all your plugins. Please do take backup of source code and database before backup.
For more information you can refer the following link.
https://codex.ww.wp.xz.cn/Template:Pluggable_Deprecated
Thanks
Forum: Themes and Templates
In reply to: Website turned into boldHello amjad81,
Your site content looking bold because of the in CSS file body has applied with font-family:opendyslexic !important in cloudflare.css
please check and remove those line if not required.Thanks
Forum: Fixing WordPress
In reply to: Cannot login – cookies blocked HELPHi,
Please see the below link which might help you.
http://emlev.com/blog/how-to-fix-error-cookies-are-blocked-due-to-unexpected-output/
Thanks