Clarion Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to remove "Continue Reading" button under postHi,
Can you post the content of footer.php file so we can tell you where you have to do the change.
You can find footer.php in the theme folder.
wp-content/themes/your-theme-name/footer.php
Thanks
Forum: Fixing WordPress
In reply to: How to remove "Continue Reading" button under postHi,
You can find footer.php in the theme folder.
wp-content/themes/your-theme-name/footer.php
Thanks
Forum: Fixing WordPress
In reply to: How to remove "Continue Reading" button under postHi,
Can you post your footer.php code here?
Thanks
Forum: Fixing WordPress
In reply to: How to remove "Continue Reading" button under postHi,
No. You will have make changes in the footer.php file. It will be a php code and in this case css is of no use. You will have to change the PHP code.
Css code can only style elements but cannot change the text.
Thanks
Forum: Fixing WordPress
In reply to: Link back to dashboard showing on pagesHi,
Can you please post a screenshot of it?
Thanks
Forum: Networking WordPress
In reply to: Changing a site URLHi,
You can directly change the URL in the database if you have access to the database.
https://codex.ww.wp.xz.cn/Changing_The_Site_URL#Changing_the_URL_directly_in_the_database
http://wordpress.shadowlantern.com/how-change-wordpress-url-phpmyadmin/
Thanks
Forum: Fixing WordPress
In reply to: How to remove "Continue Reading" button under postHi,
yes you can. The code is in footer.php
Thanks
Hi,
If the issue is related to woocommerce then please open a support ticket in the woocommerce plugin forum as the plugin author will be able to assist you more efficiently than anyone here.
https://ww.wp.xz.cn/support/plugin/woocommerce
Thanks
Forum: Fixing WordPress
In reply to: How to remove "Continue Reading" button under postHi,
Please add the following to your style.css file of the active theme.
.read-more{ display:none !important; }Thanks
Forum: Fixing WordPress
In reply to: DashboardForum: Fixing WordPress
In reply to: Cron ProblemsHello rpbpow,
The real cron job in cpanel runs as per schedule automatically but the
WP-CRON doesn’t runs automatically it run only when some visits the site.Thanks
Forum: Fixing WordPress
In reply to: Category WidgetHello sachinwebnexus,
WordPress default category widget doesn’t provide the functionality as per above requirement. If you need to widget as per requirement either write your own widget are search for any other plugin solution But I will suggest you to go with custom widget if your are coder.
Thanks
Forum: Fixing WordPress
In reply to: Test wp_nonce_fieldHello arustad,
The nonce field is used to validate that the contents of the form request came from the current site and not somewhere else.Like this you can check:
if ( ! isset( $_POST['name_of_nonce_field'] ) || ! wp_verify_nonce( $_POST['name_of_nonce_field'], 'name_of_my_action' ) ) { print 'Sorry, your nonce did not verify.'; exit; }Thanks
Forum: Fixing WordPress
In reply to: I cannot access my website neither the admin panelHi,
For this you do not have to access WordPress admin. You have log onto your server using Server CPanel and set those.
If you cannot access your server’s CPanel or have problem setting them please contact your hosting support team as they will be able to assist you efficiently than anyone here.
Thanks
Forum: Fixing WordPress
In reply to: error on databaseHi,
Please delete all database files and reinstall wordpress. This will fix your problem.
Thanks