Clarion Technologies
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Calling pagination code in index.phpHello amirkianizadeh,
Please put your pagination code after the loop ends this will helps you.
Thanks
Forum: Themes and Templates
In reply to: categories, sub categories and data of main categoryHello coolfire525,
Do you want to show posts which are assigned to main category and sub-category on click of them right ?
Thanks
Forum: Fixing WordPress
In reply to: Very Slow Website – What now?Below good plugin increase your site performance
https://ww.wp.xz.cn/plugins/w3-total-cache/Forum: Fixing WordPress
In reply to: Retrieve WordPress passwordHi,
Please see the below link which provides steps for resetting password.
https://codex.ww.wp.xz.cn/Resetting_Your_Password
Thanks
Forum: Themes and Templates
In reply to: How to add CSS to affect a single pageHello artofit,
Its better add/include the external style-sheet in header.php file and for showing it to specific page like you have mentioned that you want apply it to single page only so use the below php condition
<?php if(is_single()){ ?> //Include your style-sheet here <?php } ?>Thanks
Forum: Themes and Templates
In reply to: Theme Tructor – Unwanted info on every page! help pleaseGo to Appearance->widgets and disable the widgets that you don’t need.
Forum: Fixing WordPress
In reply to: How change the Title My Blog on wordpressYou can use All in One Seo pack plugin.Using this plugin you can change a title of each a pages as per your like.
Please refer below link:
https://ww.wp.xz.cn/plugins/all-in-one-seo-packForum: Plugins
In reply to: [Relevanssi - A Better Search] URL rewriting?Hello Paulh267,
I think Relevanssi – A Better Search already provide you the advance search option to search by post_type and category can you please check the plugin setting once.
Thanks
Forum: Plugins
In reply to: [Zendesk Chat] Zopim widget doesn't appear on visitors with Chrome browserHello djbac,
Can you please give your website link.
Thanks
Forum: Networking WordPress
In reply to: Migrating from dev to production change site URL = problemHi Steve,
You will have check the site URL and path in the following database tables.
There are 3 tables wp_site, wp_sitemeta and wp_blog.
In wp_site, wp_sitemeta and wp_blog tables check the values of “siteurl”,”domain” and “path”.
Please let me know if this solves your problem.
Thanks
Forum: Plugins
In reply to: Get Form Values post them in Wp Admin PanelHello aleykey,
Is the submitted form data is saved in database ? If Yes We can list down the message list in admin by creating the sub menu and using add_menu_page
will allow you add page where you can fetch the records from database.Please follow below link to create menu page:https://developer.ww.wp.xz.cn/reference/functions/add_menu_page/
Thanks
Forum: Fixing WordPress
In reply to: How to center a menu using CSS and changing the menu opacityadd it to your css file
.menu-bar {
float: right;
width: 80%;
opacity: 0.5;
}Hi,
You just need to worry about the files and database of the website that you want to move to new hosting. Multisite website will cause no problem as both website has different source code and database.
Thanks
Forum: Fixing WordPress
In reply to: Problem databaseThis is because either your entered database name is incorrect or you didn’t create a database of that name.
Please create a new database which you are going to use for new wordpress installation.Forum: Fixing WordPress
In reply to: Website looks different on other BrowsersHi,
Sometimes fonts and font-size do vary on different browser as each browser has its own set of rules to render the webpage.
Example: Some google fonts does not work on safari.
Also the problem can exists if your theme does not have reset.css. See below link.
http://stackoverflow.com/questions/4698564/fonts-looks-different-in-firefox-and-chrome
Thanks