Clarion Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My Dashbord have problemsHello littleandrew,
First clear you browser cache and check OR If you are using the old version of WP Please try by updating it to the latest update WordPress version.Your Dashboard is disturbed because of the files of WordPress core is missing or incomplete So Try by updating version and after updating.
Thanks
Forum: Fixing WordPress
In reply to: using if else with wp_get_recent_postsHello liquidRock,
Please try using like:
if ( has_category(‘audioz’, $recent[“ID”] ) )
Thanks
Forum: Fixing WordPress
In reply to: Site address (URL) in general settings keeps changing to old urlHello force10x,
Can you please check whether siteurl and home entries in wp_options are changed again if they are changed please update it once Then Goto permalink setting update the permalink setting And then check the URL in general setting.If need any further please let us know.
Thanks
Forum: Fixing WordPress
In reply to: How To Remove Proudly Powered By WordPressHello david117,
If the its working fine on your computer and not on mobile Can please try by clearing the browser cache on your mobile may be its cache issue.
Thanks
Forum: Fixing WordPress
In reply to: Can't Customized themeHello npindale,
If you are using the pro version of theme then it is always better to customize your theme by creating its child theme because even in future you get update of your theme you customization will never loss.If you want some guidance how to create child theme please follow below link OR if you want any further support with your parent theme only please try to connect with Theme support team.
https://codex.ww.wp.xz.cn/Child_Themes
Thanks
Forum: Fixing WordPress
In reply to: Add "Last-Updated" column in / edit.php?post_type=pageHello osch_B,
IF you want add the “Last-Updated” column in / edit.php?post_type=page
please use the below plugin which also add the last modified column on post listing page and on single page edit also.https://ww.wp.xz.cn/plugins/last-modified-timestamp/
Thanks
Forum: Fixing WordPress
In reply to: How to edit/delete the email content sent by wordpress?Hello zulfipoy
If you want to customize and modify the comment notification you can try using the below “Custom Comment Notifications” plugin.
https://ww.wp.xz.cn/plugins/custom-comment-notifications/
Thanks
Forum: Fixing WordPress
In reply to: using if else with wp_get_recent_postsHello liquidRock,
If you want the current post in loop has category then please use “has_category( $category, $post );”.Please follow the below link you get idea how to use this:
https://codex.ww.wp.xz.cn/Function_Reference/has_category
Thanks
Forum: Fixing WordPress
In reply to: spam comments on single postWhich plugin are you using for remove spam comment?
Try below plugins once
https://ww.wp.xz.cn/plugins/anti-spam/
Forum: Fixing WordPress
In reply to: How to move variable product on bottom of shop pageHi,
Instead of shortcode you can query the product and then sort them in the loop.
Thanks
Forum: Fixing WordPress
In reply to: CategoriesYou can add category form permalink settings, find here
Forum: Fixing WordPress
In reply to: [WooCommerce] Show All Products of a Single Categoryyou can find here
https://docs.woothemes.com/document/woocommerce-shortcodes/#section-13
Forum: Fixing WordPress
In reply to: How to move variable product on bottom of shop pageHi,
You can Sort products on front-end from the options available in the admin.
Please check the below link.
https://www.sellwithwp.com/create-woocommerce-custom-product-sorting/
Thanks
Forum: Fixing WordPress
In reply to: Storefront theme problemHi,
Then I recommend you to open a support ticket at the theme support forum as the theme developer will be able to assist you.
Thanks
Forum: Fixing WordPress
In reply to: ErrorHi,
Can you please backup your file and put the following code in the file and try.
<?php /** * The template for displaying Search Results pages * * @package WordPress * @subpackage Twenty_Fourteen * @since Twenty Fourteen 1.0 */ get_header(); ?> <section id="primary" class="content-area"> <div id="content" class="site-content" role="main"> <?php if ( have_posts() ) : ?> <header class="page-header"> <h1 class="page-title"><?php printf( __( 'Search Results for: %s', 'twentyfourteen' ), get_search_query() ); ?></h1> </header><!-- .page-header --> <h2 class="pagetitle">Search Result for <?php /* Search Count */ $allsearch = new WP_Query("s=$s&showposts=-1"); $key = wp_specialchars($s, 1); $count = $allsearch->post_count; _e(''); _e('<span class="search-terms">'); echo $key; _e('</span>'); _e(' — '); echo $count . ' '; _e('articles'); wp_reset_query(); ?></h2> <?php // Start the Loop. while ( have_posts() ) : the_post(); /* * Include the post format-specific template for the content. If you want to * use this in a child theme, then include a file called called content-___.php * (where ___ is the post format) and that will be used instead. */ get_template_part( 'content', get_post_format() ); endwhile; // Previous/next post navigation. twentyfourteen_paging_nav(); else : // If no content, include the "No posts found" template. get_template_part( 'content', 'none' ); endif; ?> </div><!-- #content --> </section><!-- #primary --> <?php get_sidebar( 'content' ); get_sidebar(); get_footer();Thanks