Clarion Technologies
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sydney] change call to action button from solid to trasnparentHello soni123,
Can you please share your website link.
Thanks
Forum: Fixing WordPress
In reply to: How to handle MySQL failuresHi,
yes you can add your custom messages to redirect to another page.
For steps and details please refer the below link.
https://yoast.com/custom-wordpress-database-error-pages/
Thanks
Forum: Fixing WordPress
In reply to: My site comment section disappeared?Hi,
Please disable all plugins and check by activating one by one to ensure that there is no plugin conflict with the comment form.
Thanks
Forum: Fixing WordPress
In reply to: wordpress installWelcome… 🙂
Forum: Fixing WordPress
In reply to: Feed to blogspot siteHi,
To list it on Blogger you will have to move it to blogspot from your domain.
I don’t think there is another solution. If it is there than your problem will be solved.
Thanks
Forum: Fixing WordPress
In reply to: Landing Page plugin that allows me to write on a background picture?Hi,
Yes there are plugins available and the first one below provides option is custom text.
Please see screenshots of each plugin and their features and see if they match your requirements.
https://ww.wp.xz.cn/plugins/landing-pages/screenshots/
https://ww.wp.xz.cn/plugins/ultimate-landing-page/screenshots/
https://ww.wp.xz.cn/plugins/ultimate-landing-page-and-coming-soon-page/screenshots/
Thanks
Forum: Fixing WordPress
In reply to: Hide div elements if conditions (browser width) are trueHi,
You can use jQuery for that.
<script type="text/javascript"> $(window).resize(function() { var windowWidth = $(window).width(); //retrieve current window width var windowHeight = $(window).height(); //retrieve current window height if (windowWidth < 960) { $("#div_id_here").hide(); } }); </script>Similarly you can use as many conditions you like.
Thanks
Forum: Fixing WordPress
In reply to: Feed to blogspot siteHi,
You can migrate your blog to blogger with all content.
Please see below links to migrate your blog to blogger.
http://www.mybloggertricks.com/2012/11/convert-wordpress-blog-to-blogger.html
http://google.about.com/od/googleblogger/a/How-To-Move-Your-Blog-From-Wordpress-To-Blogger.htm
Thanks
Forum: Fixing WordPress
In reply to: wordpress installHi,
If Update is available in WordPress then please update. Yes core files of WordPress are updated (Your theme files are not affected).
If you have done some changes in the core files of WordPress then that is consider as a bad practice and it will get overwritten when WordPress is updated.
Thanks
Forum: Fixing WordPress
In reply to: regex meta key for meta_queryHello Waqas,
So You need check first number of locations of user and then loop through these location and use the meta_query and add those location as meta_key.
Thanks
Forum: Themes and Templates
In reply to: get_template_directory_uriHello DanielKYantis,
Can you please try once by using below function to get template directory path
<?php echo get_template_directory(); ?>Thanks
Forum: Fixing WordPress
In reply to: regex meta key for meta_queryHello Waqas,
If want check for multiple meta_key and its value you have to write those all in meta query with meta_key as a string “location-1″ ,”location-2” etc. You are passing it an array which is not allowed by meta query.
Please let me know if need any further help.Thanks
Forum: Fixing WordPress
In reply to: New to WordPress – need helpHi,
You can install the following plugin and hide those tags from the plugin options.
https://ww.wp.xz.cn/plugins/removehide-author-date-category-like-entry-meta/
Thanks
Forum: Themes and Templates
In reply to: Use built-in categories for custom post typesHello piyush138,
If you are using the “Custom Post Type UI” for creating the custom post type then there is option available for assigning the categories as well as custom taxonomies.Please check the settings if you are using the same plugin
OR
IF have created custom post type using your custom code then please follow below link which will guide you through how we can assign category to post type.
https://codex.ww.wp.xz.cn/Function_Reference/register_taxonomyThanks
Forum: Fixing WordPress
In reply to: One custom menu link not workingHello crashprojects,
I have reviewed your website and tested the header menu and found that your site is working as single page site so when we click on menu link it
goes to respective section on the same page.Menu has applied Scroll JS so the when you click on menu blog it also searching for section on page it self not treating it as link.
If you are using purchased theme please check whether there is option available to exclude menu from scroll JS OR try to connect with theme support.Thanks