Clarion Technologies
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [WooCommerce] Sorting productYour Welcome.. 🙂
Forum: Fixing WordPress
In reply to: How to add Yoast SEO score columnAsk here, one author will help you
https://ww.wp.xz.cn/support/plugin/wordpress-seoForum: Fixing WordPress
In reply to: how to change appearance of websiteHi,
Add this to your stylesheet and see if it works.
.panel-last-child .textwidget{ margin: 0 auto; width: 39%; }Thanks
Forum: Fixing WordPress
In reply to: Can't see media after updating wordpressForum: Fixing WordPress
In reply to: Wp show hide how to customizeAsk here you will get better solution
Forum: Fixing WordPress
In reply to: [WooCommerce] Sorting productHi,
As it is a plugin related question you should open a ticket in the plugin support forum. Their the plugin author will be to assist you more efficiently than anyone here.
https://ww.wp.xz.cn/support/plugin/woocommerce
Thanks
Forum: Fixing WordPress
In reply to: Custom Post Type TaxonomyHi,
Try the following code and see if it works for you.
$args = array('post_type' => 'custom_post_type', 'tax_query' => array( array( 'taxonomy' => 'custom_taxonomy', 'field' => 'slug', 'terms' => $custom_term->slug, ), ), ); $loop = new WP_Query($args); if($loop->have_posts()) { echo '<h2>'.$custom_term->name.'</h2>'; while($loop->have_posts()) : $loop->the_post(); echo '<a href="'.get_permalink().'">'.get_the_title().'</a>'; endwhile; }Thanks
Forum: Fixing WordPress
In reply to: Hide div elements if conditions (browser width) are trueHi,
You can add this code in any of the JS file of the child theme.
Thanks
Forum: Fixing WordPress
In reply to: Unwanted categories in menuHi,
As the theme used in your website is “Parabola” please open a ticket in the theme support forum as the theme developer will be assist you more quickly and efficiently than anyone here.
https://ww.wp.xz.cn/support/theme/parabola
Thanks
Forum: Fixing WordPress
In reply to: Does posts_per_page limit/abandon the query?Hello trial3rror,
Yes “posts_per_page” is the right parameter to limit/abandon the query.It gives you only 5 post according to your criteria when you pass value as 5 to it.
Thanks
Try on any RSS feeds plugin or rss widget plugin or write custom code for that
Forum: Fixing WordPress
In reply to: Mistakenly activated a new theme version for my company's websiteForum: Localhost Installs
In reply to: Eternal error 500Forum: Themes and Templates
In reply to: Apply function to specific page templateHello ClintonLee83,
Is you page template “landing-page.php” in your theme folder ? If not use like
Page template in subdirectory
If the page template is located in a subdirectory of the theme
e.g.:is_page_template( ‘templates/about.php’ );
Thanks
Forum: Fixing WordPress
In reply to: How to handle MySQL failuresHi,
Did that solution worked for you?
Thanks