Clarion Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: On media page there are too many images per page and page freezesGo to PHPMyAdmin, open user_meta table and search for meta key “upload_per_page”. change value to respective user.
Forum: Fixing WordPress
In reply to: Single post not displaying by monthnumHello babum7,
Can you please check whether the single post that you are checking is of same month because the code that you have written is perfect can you please try it by removing those monthnum and year parameter and check are getting any result or not.
Thanks
Forum: Fixing WordPress
In reply to: You do not have permission to preview drafts!Hello JungleRebel,
Can you please try by removing all cookies from the cache, restart the pc and log in again and try this will help you.
Thanks
Forum: Fixing WordPress
In reply to: Pagination issue on homepageHello jais-p,
Please try using the below updated code this will help you:if ( get_query_var('paged') ) { $paged = get_query_var('paged'); } elseif ( get_query_var('page') ) { $paged = get_query_var('page'); } else { $paged = 1; } $args = array('paged' => $paged ); query_posts($args); ?> <!-- the loop --> <?php if ( have_posts() ) : ?> <?php /* Start the Loop */ ?> <?php while ( have_posts() ) : the_post(); ?> <?php /* * Include the Post-Format-specific template for the content. * If you want to override this in a child theme, then include a file * called content-___.php (where ___ is the Post Format name) and that will be used instead. */ get_template_part( 'template-parts/content', get_post_format() ); ?> <?php endwhile; ?> <?php mdlwp_posts_navigation(); ?> <?php else : ?> <?php get_template_part( 'template-parts/content', 'none' ); ?> <?php endif; ?>Thanks
Forum: Fixing WordPress
In reply to: Can I specify a font for English and another font for Chinese?Hello cindyho,
If you are using the multi-site multilingual then by using the If condition after checking the site language like below:
<? if(get_language_code()=='EN'){?> <style> //Add your font code here </style> <?php } ?> for Chinese : <? if(get_language_code()=='CN'){?> <style> //Add your font code here </style> <?php } ?>Thanks
Forum: Fixing WordPress
In reply to: How to Fix Broken Links from Old SiteHello pranaman,
This plugin will check your posts, comments and other content for broken links and missing images, and notify you if any are found.Please try using below plugin:
https://ww.wp.xz.cn/plugins/broken-link-checker/
Thanks
Forum: Fixing WordPress
In reply to: Member registration using FacebookHi,
You can use the following facebook plugin that allows users to register account using facebook.
https://ww.wp.xz.cn/plugins/nextend-facebook-connect/
Thanks
Forum: Fixing WordPress
In reply to: 'LEAVE A REPLY' Ghost – Turned Off, But Comes Back!Hi,
You can install the following plugin to disable it.
https://ww.wp.xz.cn/plugins/disable-comments/
Thanks
Forum: Fixing WordPress
In reply to: How to remove "Continue Reading" button under postHi,
Replace your function with the following.
/** * Footer credits */ function oblique_footer_credits() { echo "© 2016 Graphica"; echo '<span class="sep"> | </span>'; echo "By Graphica"; } add_action( 'oblique_footer', 'oblique_footer_credits' );Thanks
Forum: Themes and Templates
In reply to: How to remove widgetHello dangioffre,
You can remove widget form wp-admin just goto Appearance Menu -> Widgets
on RHS you will get the widget area where all widgets are place inside that the widgets are added you can directly delete or Drag it to inactive widgets section on LHS bottom.Thanks
Forum: Fixing WordPress
In reply to: Facebook / WordPress Login MergeHello OscarGuy,
In WordPress we can use the Login with Facebook account in WordPress site for that their are many plugin available.Below is the reference plugin which allow to login with your social accounts.Please try using this.
https://ww.wp.xz.cn/plugins/oa-social-login/
Thanks
Forum: Fixing WordPress
In reply to: Template Dropdown In Page Editor: Child ThemeHello mrcangrejero,
Please add the below code in your child theme function.php file which will helps you to remove parent theme templates in your child theme.
add_filter( 'theme_page_templates', 'my_remove_page_template' ); function my_remove_page_template( $pages_templates ) { unset( $pages_templates['your-template-name.php'] ); return $pages_templates; }Thanks
Forum: Fixing WordPress
In reply to: Link back to dashboard showing on pagesYour Welcome.. 🙂
Forum: Fixing WordPress
In reply to: How to remove "Continue Reading" button under postHi,
In the same folder where footer.php file is present you will find a file named as “functions.php”.
Open that file in a text editor and search for “oblique_footer” function.
In this function you will have to change the text.
Thanks
Forum: Fixing WordPress
In reply to: Link back to dashboard showing on pagesHi,
Please check your widget section in admin. This code must be pasted in one of your widget and is displayed on the sidebar.
Also check your sidebar.php file.
Thanks