Clarion Technologies
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Previous and next posts to be from the same categoryHello Laura Barron,
Please replace your Next and Previous function with below or Pass 3rd parameter as ‘TRUE’ in your existing function which is used for same category.
<?php previous_post_link('%link', 'Previous', TRUE); ?> <?php next_post_link( '%link', 'Next', TRUE ); ?>Thanks
Forum: Hacks
In reply to: wp_redirect not workingHi,
Please use below code:
add_action( ‘template_redirect’, ‘redirect_visitors’, 10 );
function redirect_visitors() {
if ( ! is_user_logged_in() && (is_front_page() || is_home()) ) {
wp_redirect( ‘http://www.tz-jelenje.dreamhosters.com/readme.html’, 301 );
exit; } }Forum: Fixing WordPress
In reply to: allow admin to registrer new users on frontendIf you logged in the form wont show because form will show non register user only . If you want to add new user you can do it from dashboard user
Dashboard –> User-> New user
Forum: Fixing WordPress
In reply to: Plugin for daily tasks (checklist that resets daily)?Try below one of plugin
https://ww.wp.xz.cn/plugins/tags/todo-listForum: Fixing WordPress
In reply to: I have lost all my work on my website/* Turns WordPress debugging on */ define('WP_DEBUG', TRUE); if ( defined('WP_DEBUG') && TRUE === WP_DEBUG ) { /* Tells WordPress to log everything to the /wp-content/debug.log file */ define('WP_DEBUG_LOG', TRUE); /* Doesn't force the PHP 'display_errors' variable to be on */ define('WP_DEBUG_DISPLAY', FALSE); /* Hides errors from being displayed on-screen */ @ini_set('display_errors', 0); }Forum: Fixing WordPress
In reply to: Problems with wordpress installationsHi,
What error are you getting when you try to install a new theme or update WordPress.
Thanks
Hi,
Can you please post the code of your file.
Thanks
Forum: Fixing WordPress
In reply to: Cannot decrease margin size – please helpHi,
Add the following Css code to your style file.
.home .document-main .wpb_single_image .vc_figure {
margin-bottom: -110px !important;
}Thanks
Forum: Fixing WordPress
In reply to: Cannot get in to WP-AdminCan you check your server’s error logs? A blank white screen usually indicates a fatal PHP error (possibly related to a plugin or theme you’re using on that site).
Add `error_reporting(E_ALL); ini_set(‘display_errors’, 1);
define( ‘WP_DEBUG’, true);` in config.php
IF not work try below
1) Rename plugin folder and check or deactivate all plugin active one by one.
2)If above is not works . Check any space is there end of function.php file
3)If above is not works active default theme
Forum: Fixing WordPress
In reply to: Tabs not showing after UpdateHi,
You have 2 errors in your website. The errors are as follows:
1) Error: Syntax error, unrecognized expression: a[href=#top]…value:null},fa.error=function(a){throw new Error(“Syntax error, unrecognized exp…
2) “NetworkError: 500 Internal Server Error – http://letstalksolar.ie/wp-admin/admin-ajax.php”
admin-ajax.php
Internal Server Error [500].You will have to solve these 2 errors to get the tab working. The first one is most important as its related to jQuery which is stopping the tabs from appearing.
For more information regarding the errors open your browser console while page load.
Thanks
Forum: Fixing WordPress
In reply to: How to Remove Post and Sidebar from pages,Hi,
You will have to set your homepage from the admin settings so that post and sidebar will be removed.
Please see below link for steps and details.
https://codex.ww.wp.xz.cn/Creating_a_Static_Front_Page
And to remove from other pages remove it from the widget section.
Thanks
Forum: Fixing WordPress
In reply to: Products and pricing change in PaypalProvide your site url, you are using any plugin for that , Please provide more details of your error
Forum: Fixing WordPress
In reply to: How to update wordpressForum: Fixing WordPress
In reply to: Unable to add photos to posts since updateEnable debug in wp-config.php file and check
define( ‘WP_DEBUG’, true );
Forum: Fixing WordPress
In reply to: How to hide post from the first page on my site ?Go over to the Settings > Reading Settings dashboard page. Locate the first option, “Front Page Displays,” then select “A Static Page (Choose Below)”. For “Front Page”, choose the “Home” page you just created. For “Posts Page”, choose the “Post” or “Blog” page you created